aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGravatar Xin Long <lucien.xin@gmail.com> 2021-01-16 14:13:37 +0800
committerGravatar Jakub Kicinski <kuba@kernel.org> 2021-01-19 14:31:25 -0800
commitfa82117010430aff2ce86400f7328f55a31b48a6 (patch)
treede95fed2c5d6ed2760f4cf362ce9941ee2d1fc6c /drivers
parentmdio, phy: fix -Wshadow warnings triggered by nested container_of() (diff)
downloadlinux-fa82117010430aff2ce86400f7328f55a31b48a6.tar.gz
linux-fa82117010430aff2ce86400f7328f55a31b48a6.tar.bz2
linux-fa82117010430aff2ce86400f7328f55a31b48a6.zip
net: add inline function skb_csum_is_sctp
This patch is to define a inline function skb_csum_is_sctp(), and also replace all places where it checks if it's a SCTP CSUM skb. This function would be used later in many networking drivers in the following patches. Suggested-by: Alexander Duyck <alexander.duyck@gmail.com> Signed-off-by: Xin Long <lucien.xin@gmail.com> Reviewed-by: Alexander Duyck <alexanderduyck@fb.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/pensando/ionic/ionic_txrx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c
index ac4cd5d82e69..162a1ff1e9d2 100644
--- a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c
+++ b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c
@@ -979,7 +979,7 @@ static int ionic_tx_calc_csum(struct ionic_queue *q, struct sk_buff *skb)
stats->vlan_inserted++;
}
- if (skb->csum_not_inet)
+ if (skb_csum_is_sctp(skb))
stats->crc32_csum++;
else
stats->csum++;