]> git.itanic.dy.fi Git - linux-stable/commit
tg3: Fix deadlock in tg3_change_mtu()
authorNithin Sujir <nsujir@broadcom.com>
Thu, 6 Feb 2014 22:13:05 +0000 (14:13 -0800)
committerWilly Tarreau <w@1wt.eu>
Mon, 19 May 2014 05:54:12 +0000 (07:54 +0200)
commitd7b6372b76ada3c89363db5b53b9c954860389eb
tree3c5efda054a51464747e7fb0932b8f8a0a06c58c
parentbfdd0948bd10f5208f032b92f5071b2eb9cf9f43
tg3: Fix deadlock in tg3_change_mtu()

[ Upstream commit c6993dfd7db9b0c6b7ca7503a56fda9236a4710f ]

Quoting David Vrabel -
"5780 cards cannot have jumbo frames and TSO enabled together.  When
jumbo frames are enabled by setting the MTU, the TSO feature must be
cleared.  This is done indirectly by calling netdev_update_features()
which will call tg3_fix_features() to actually clear the flags.

netdev_update_features() will also trigger a new netlink message for the
feature change event which will result in a call to tg3_get_stats64()
which deadlocks on the tg3 lock."

tg3_set_mtu() does not need to be under the tg3 lock since converting
the flags to use set_bit(). Move it out to after tg3_netif_stop().

Reported-by: David Vrabel <david.vrabel@citrix.com>
Tested-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: Nithin Nayak Sujir <nsujir@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/net/tg3.c