diff options
| author | Amerigo Wang <amwang@redhat.com> | 2012-08-18 07:02:20 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-08-20 02:59:49 -0700 | 
| commit | 72d3eb13b5c0abe7d63efac41f39c5b644c7bbaa (patch) | |
| tree | fb06247bd4caa346a42fe3cefef16a79f27166da /drivers/net/netconsole.c | |
| parent | 9d7b0fc1ef1f17aff57c0dc9a59453d8fca255c3 (diff) | |
| download | olio-linux-3.10-72d3eb13b5c0abe7d63efac41f39c5b644c7bbaa.tar.xz olio-linux-3.10-72d3eb13b5c0abe7d63efac41f39c5b644c7bbaa.zip  | |
netconsole: remove a redundant netconsole_target_put()
This netconsole_target_put() is obviously redundant, and it
causes a kernel segfault when removing a bridge device which has
netconsole running on it.
This is caused by:
	commit 8d8fc29d02a33e4bd5f4fa47823c1fd386346093
	Author: Amerigo Wang <amwang@redhat.com>
	Date:   Thu May 19 21:39:10 2011 +0000
	    netpoll: disable netpoll when enslave a device
Cc: David Miller <davem@davemloft.net>
 (for all 3.x stable releases)
Cc: stable@vger.kernel.org
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/netconsole.c')
| -rw-r--r-- | drivers/net/netconsole.c | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index f0ad56c1393..b3321129a83 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -643,7 +643,6 @@ static int netconsole_netdev_event(struct notifier_block *this,  					__netpoll_cleanup(&nt->np);  					dev_put(nt->np.dev);  					nt->np.dev = NULL; -					netconsole_target_put(nt);  				}  				nt->enabled = 0;  				stopped = true;  |