mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
appletalk: Fix socket referencing in skb
[ Upstream commit 36beddc272
]
Setting just skb->sk without taking its reference and setting a
destructor is invalid. However, in the places where this was done, skb
is used in a way not requiring skb->sk setting. So dropping the setting
of skb->sk.
Thanks to Eric Dumazet <eric.dumazet@gmail.com> for correct solution.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=79441
Reported-by: Ed Martin <edman007@edman007.com>
Signed-off-by: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f37e491349
commit
3fa1f507bc
1 changed files with 0 additions and 3 deletions
|
@ -1494,8 +1494,6 @@ static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
||||||
/* Queue packet (standard) */
|
/* Queue packet (standard) */
|
||||||
skb->sk = sock;
|
|
||||||
|
|
||||||
if (sock_queue_rcv_skb(sock, skb) < 0)
|
if (sock_queue_rcv_skb(sock, skb) < 0)
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
||||||
|
@ -1649,7 +1647,6 @@ static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr
|
||||||
if (!skb)
|
if (!skb)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
skb->sk = sk;
|
|
||||||
skb_reserve(skb, ddp_dl->header_length);
|
skb_reserve(skb, ddp_dl->header_length);
|
||||||
skb_reserve(skb, dev->hard_header_len);
|
skb_reserve(skb, dev->hard_header_len);
|
||||||
skb->dev = dev;
|
skb->dev = dev;
|
||||||
|
|
Loading…
Reference in a new issue