diff options
author | Florin Coras <fcoras@cisco.com> | 2021-11-10 07:39:51 -0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-11-10 15:33:02 +0000 |
commit | 904638f4625c82d166d67870f9cf8088dd29a8b2 (patch) | |
tree | 0fbacfb47ccdcca5179ed1cdc91da08c2bd40cc3 /src/vnet/tcp | |
parent | 9c25eb1f4876a399919782c97e116732ea2ee628 (diff) |
ip: always set ip rx_sw_if_index
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I43f6bfa028ee37227f27a2fe0303662bf2631b10
Diffstat (limited to 'src/vnet/tcp')
-rw-r--r-- | src/vnet/tcp/tcp_inlines.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/vnet/tcp/tcp_inlines.h b/src/vnet/tcp/tcp_inlines.h index e82f308d9b8..d57b3059066 100644 --- a/src/vnet/tcp/tcp_inlines.h +++ b/src/vnet/tcp/tcp_inlines.h @@ -239,10 +239,7 @@ tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error, /* Set the sw_if_index[VLIB_RX] to the interface we received * the connection on (the local interface) */ - vnet_buffer (b)->sw_if_index[VLIB_RX] = - vnet_buffer (b)->ip.rx_sw_if_index != ~0 ? - vnet_buffer (b)->ip.rx_sw_if_index : - vnet_buffer (b)->sw_if_index[VLIB_RX]; + vnet_buffer (b)->sw_if_index[VLIB_RX] = vnet_buffer (b)->ip.rx_sw_if_index; if (is_ip4) { |