From: Dave Barach Date: Sat, 15 Jul 2017 12:56:22 +0000 (-0400) Subject: Adjust replication context to match vnet_buffer(b) X-Git-Tag: v17.10-rc1~340 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=365a2b851024080c2f8f59bce2b61f243a85c254;p=vpp.git Adjust replication context to match vnet_buffer(b) Fixes a coverity warning, albeit not a serious issue. Change-Id: I0fa28342ac4b222c1ba7f7f2befde455fd42d682 Signed-off-by: Dave Barach --- diff --git a/src/vnet/replication.h b/src/vnet/replication.h index ce4b3ff11d0..42ec69a43ff 100644 --- a/src/vnet/replication.h +++ b/src/vnet/replication.h @@ -27,8 +27,8 @@ typedef struct { /* The entire vnet buffer header restored for each replica */ - u8 vnet_buffer[32]; /* 16B aligned to allow vector unit copy */ - u8 reserved[32]; /* space for future expansion of vnet buffer header */ + u8 vnet_buffer[40]; /* 16B aligned to allow vector unit copy */ + u8 reserved[24]; /* space for future expansion of vnet buffer header */ /* feature state used during this replication */ u64 feature_replicas; /* feature's id for its set of replicas */