summaryrefslogtreecommitdiffstats
path: root/include/net/sock.h
diff options
context:
space:
mode:
authorPaolo Abeni2017-05-16 11:20:13 +0200
committerDavid S. Miller2017-05-16 21:41:29 +0200
commit65101aeca52241a05e66f23c96eb896c9412718d (patch)
tree3f2a5568415ab23f7d026d51c2a634427f268598 /include/net/sock.h
parentMerge branch 'nfp-LSO-checksum-and-XDP-datapath-updates' (diff)
downloadkernel-qcow2-linux-65101aeca52241a05e66f23c96eb896c9412718d.tar.gz
kernel-qcow2-linux-65101aeca52241a05e66f23c96eb896c9412718d.tar.xz
kernel-qcow2-linux-65101aeca52241a05e66f23c96eb896c9412718d.zip
net/sock: factor out dequeue/peek with offset code
And update __sk_queue_drop_skb() to work on the specified queue. This will help the udp protocol to use an additional private rx queue in a later patch. Signed-off-by: Paolo Abeni <pabeni@redhat.com> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sock.h')
-rw-r--r--include/net/sock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index f33e3d134e0b..42264035dec0 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -2035,8 +2035,8 @@ void sk_reset_timer(struct sock *sk, struct timer_list *timer,
void sk_stop_timer(struct sock *sk, struct timer_list *timer);
-int __sk_queue_drop_skb(struct sock *sk, struct sk_buff *skb,
- unsigned int flags,
+int __sk_queue_drop_skb(struct sock *sk, struct sk_buff_head *sk_queue,
+ struct sk_buff *skb, unsigned int flags,
void (*destructor)(struct sock *sk,
struct sk_buff *skb));
int __sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);