summaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
authorYi Li <yili@winhong.com>2020-10-27 13:59:04 +0800
committerJakub Kicinski <kuba@kernel.org>2020-10-27 17:36:11 -0700
commit3aefd7d6ea05a1a573a26c20e474d36c218016cd (patch)
tree05b6c56ec24e0a3976aaefca07e41adbb2f1ee85 /net/core/dev.c
parent585bd812de4eb0e412e504da81d2554fb03ae652 (diff)
net: core: Use skb_is_gso() in skb_checksum_help()
No functional changes, just minor refactoring. Signed-off-by: Yi Li <yili@winhong.com> Link: https://lore.kernel.org/r/20201027055904.2683444-1-yili@winhong.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 9499a414d67e..55f66e108059 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3205,7 +3205,7 @@ int skb_checksum_help(struct sk_buff *skb)
if (skb->ip_summed == CHECKSUM_COMPLETE)
goto out_set_summed;
- if (unlikely(skb_shinfo(skb)->gso_size)) {
+ if (unlikely(skb_is_gso(skb))) {
skb_warn_bad_offload(skb);
return -EINVAL;
}