From d4f88cc0967ea1de66396ac07b20cf6e33a3fa1a Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Wed, 5 Jan 2022 01:52:38 +0100 Subject: interface: refactor interface capabilities code Make it shorter to type, easier to debug, make adding callbacks in future simpler. Type: improvement Change-Id: I6cdd6375e36da23bd452a7c7273ff42789e94433 Signed-off-by: Damjan Marion --- src/vnet/interface_output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/vnet/interface_output.c') diff --git a/src/vnet/interface_output.c b/src/vnet/interface_output.c index 659273b53cd..cf64eeed093 100644 --- a/src/vnet/interface_output.c +++ b/src/vnet/interface_output.c @@ -640,8 +640,7 @@ VLIB_NODE_FN (vnet_interface_output_node) /* if not all three flags IP4_,TCP_,UDP_CKSUM set, do compute them * here before sending to the interface */ - if ((hi->caps & VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM) != - VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM) + if ((hi->caps & VNET_HW_IF_CAP_TX_CKSUM) != VNET_HW_IF_CAP_TX_CKSUM) do_tx_offloads = 1; // basic processing -- cgit 1.2.3-korg