X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fipsec%2Fesp_decrypt.c;h=366894805381ce86f9c3f7b5e39884f26f78fee0;hb=7a6f5a4fee17bd34f70f9eb25a094764be39d81b;hp=f29dacb3dc77ae6c316fa1ab84d860586616b37d;hpb=39d0285fca412ea2921fe1ae98a231894cd193cf;p=vpp.git diff --git a/src/vnet/ipsec/esp_decrypt.c b/src/vnet/ipsec/esp_decrypt.c index f29dacb3dc7..36689480538 100644 --- a/src/vnet/ipsec/esp_decrypt.c +++ b/src/vnet/ipsec/esp_decrypt.c @@ -98,6 +98,7 @@ format_esp_decrypt_trace (u8 * s, va_list * args) typedef struct { + vlib_buffer_t *lb; union { struct @@ -111,15 +112,15 @@ typedef struct }; u32 seq; + u32 free_buffer_index; i16 current_data; i16 current_length; u16 hdr_sz; - vlib_buffer_t *lb; - u32 free_buffer_index; u8 icv_removed; + u8 __unused; } esp_decrypt_packet_data_t; -STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 5 * sizeof (u64)); +STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 4 * sizeof (u64)); #define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2)