diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2018-05-07 11:08:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-08 22:30:06 -0400 |
commit | b21c034b3df833b5d9db1cfdc3938dbb0d7995c6 (patch) | |
tree | 8c9b1963de39e3d79a6ea5e6f80f0c5b4e528f6d /include/net/udp.h | |
parent | dfec0ee22c0a4488e4f4c764b2720d3096920383 (diff) |
udp: Do not pass MSS as parameter to GSO segmentation
There is no point in passing MSS as a parameter for for the GSO
segmentation call as it is already available via the shared info for the
skb itself.
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/udp.h')
-rw-r--r-- | include/net/udp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/udp.h b/include/net/udp.h index 05990746810e..8bd83b044ecd 100644 --- a/include/net/udp.h +++ b/include/net/udp.h @@ -176,7 +176,7 @@ int udp_gro_complete(struct sk_buff *skb, int nhoff, udp_lookup_t lookup); struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb, netdev_features_t features, - unsigned int mss, __sum16 check); + __sum16 check); static inline struct udphdr *udp_gro_udphdr(struct sk_buff *skb) { |