]> git.karo-electronics.de Git - karo-tx-linux.git/commit
net/hyperv: fix erroneous NETDEV_TX_BUSY use
authorEric Dumazet <eric.dumazet@gmail.com>
Wed, 14 Mar 2012 08:53:34 +0000 (08:53 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 16 Mar 2012 09:01:17 +0000 (02:01 -0700)
commitbb6d5e76fb4fba9aa36726db41404512f3286c0f
tree58858ab2c09fe9179dcf4c26da83bbd9c3783211
parent7bdd402706cf26bfef9050dfee3f229b7f33ee4f
net/hyperv: fix erroneous NETDEV_TX_BUSY use

A driver start_xmit() method cannot free skb and return NETDEV_TX_BUSY,
since caller is going to reuse freed skb.

This is mostly a revert of commit bf769375c (staging: hv: fix the return
status of netvsc_start_xmit())

In fact netif_tx_stop_queue() / netif_stop_queue() is needed before
returning NETDEV_TX_BUSY or you can trigger a ksoftirqd fatal loop.

In case of memory allocation error, only safe way is to drop the packet
and return NETDEV_TX_OK

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hyperv/netvsc_drv.c