diff options
author | Paolo Abeni <pabeni@redhat.com> | 2016-11-04 11:28:58 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-07 13:24:41 -0500 |
commit | ad959036a70890bea121403c6a4e373dff5b7311 (patch) | |
tree | 4723d6b548ceb3eb57cc6d7262533103b1ff8201 /net/ipv6/udp.c | |
parent | cd2c0f454039ad303b54653c56ebc22ffd856200 (diff) | |
download | linux-ad959036a70890bea121403c6a4e373dff5b7311.tar.gz linux-ad959036a70890bea121403c6a4e373dff5b7311.tar.bz2 linux-ad959036a70890bea121403c6a4e373dff5b7311.zip |
net/sock: add an explicit sk argument for ip_cmsg_recv_offset()
So that we can use it even after orphaining the skbuff.
Suggested-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 9103c5c755db..b5a23ce8981d 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -425,7 +425,7 @@ try_again: if (is_udp4) { if (inet->cmsg_flags) - ip_cmsg_recv_offset(msg, skb, + ip_cmsg_recv_offset(msg, sk, skb, sizeof(struct udphdr), off); } else { if (np->rxopt.all) |