projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
457de43
)
net/ipv6/udp.c: fix typo in flush_stack()
author
Jiri Pirko
<jpirko@redhat.com>
Thu, 9 Dec 2010 03:40:30 +0000
(
03:40
+0000)
committer
David S. Miller
<davem@davemloft.net>
Fri, 10 Dec 2010 22:05:09 +0000
(14:05 -0800)
skb1 should be passed as parameter to sk_rcvqueues_full() here.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/udp.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv6/udp.c
b/net/ipv6/udp.c
index 7aad12770867bde1478e2e516b61b3dcddf5aa54..26a8da3f20447951687a0244946eef8f78c1b4b2 100644
(file)
--- a/
net/ipv6/udp.c
+++ b/
net/ipv6/udp.c
@@
-602,7
+602,7
@@
static void flush_stack(struct sock **stack, unsigned int count,
sk = stack[i];
if (skb1) {
- if (sk_rcvqueues_full(sk, skb)) {
+ if (sk_rcvqueues_full(sk, skb
1
)) {
kfree_skb(skb1);
goto drop;
}