diff options
author | Willem de Bruijn <willemb@google.com> | 2018-04-26 13:42:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-26 15:06:46 -0400 |
commit | 1cd7884dfd78df6284d27b008823b0b4a808f196 (patch) | |
tree | b48749c800e0e4ead8e70fd87dfe8008f7113ccf /include/net/ip.h | |
parent | a9537c937c1790b62de5e2789e67c0bf439b11ea (diff) | |
download | linux-stable-1cd7884dfd78df6284d27b008823b0b4a808f196.tar.gz linux-stable-1cd7884dfd78df6284d27b008823b0b4a808f196.tar.bz2 linux-stable-1cd7884dfd78df6284d27b008823b0b4a808f196.zip |
udp: expose inet cork to udp
UDP segmentation offload needs access to inet_cork in the udp layer.
Pass the struct to ip(6)_make_skb instead of allocating it on the
stack in that function itself.
This patch is a noop otherwise.
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip.h')
-rw-r--r-- | include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index dc4a2d6e58a5..7ec543a64bbc 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -171,7 +171,7 @@ struct sk_buff *ip_make_skb(struct sock *sk, struct flowi4 *fl4, int len, int odd, struct sk_buff *skb), void *from, int length, int transhdrlen, struct ipcm_cookie *ipc, struct rtable **rtp, - unsigned int flags); + struct inet_cork *cork, unsigned int flags); static inline struct sk_buff *ip_finish_skb(struct sock *sk, struct flowi4 *fl4) { |