From: Jarek Poplawski <jarkao2@gmail.com>
To: David Miller <davem@davemloft.net>
Cc: johannes@sipsolutions.net, davej@codemonkey.org.uk,
netdev@vger.kernel.org
Subject: Re: 2.6.25rc7 lockdep trace
Date: Thu, 12 Jun 2008 06:13:34 +0000 [thread overview]
Message-ID: <20080612061334.GA4005@ff.dom.local> (raw)
In-Reply-To: <20080610.224023.116817726.davem@davemloft.net>
On 11-06-2008 07:40, David Miller wrote:
...
> diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c
> index 4b46e68..48ed410 100644
> --- a/drivers/net/bnx2.c
> +++ b/drivers/net/bnx2.c
> @@ -5907,12 +5907,7 @@ bnx2_close(struct net_device *dev)
> struct bnx2 *bp = netdev_priv(dev);
> u32 reset_code;
>
> - /* Calling flush_scheduled_work() may deadlock because
> - * linkwatch_event() may be on the workqueue and it will try to get
> - * the rtnl_lock which we are holding.
> - */
> - while (bp->in_reset_task)
> - msleep(1);
> + cancel_work_sync(&bp->reset_task);
It seems after this change bp->in_reset_task could be removed totally
from the code.
...
> diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
> index 4e28002..5c71098 100644
> --- a/drivers/net/smc911x.c
> +++ b/drivers/net/smc911x.c
> @@ -1531,16 +1531,8 @@ static int smc911x_close(struct net_device *dev)
> if (lp->phy_type != 0) {
> /* We need to ensure that no calls to
> * smc911x_phy_configure are pending.
> -
> - * flush_scheduled_work() cannot be called because we
> - * are running with the netlink semaphore held (from
> - * devinet_ioctl()) and the pending work queue
> - * contains linkwatch_event() (scheduled by
> - * netif_carrier_off() above). linkwatch_event() also
> - * wants the netlink semaphore.
> */
> - while (lp->work_pending)
> - schedule();
> + cancel_work_sync(&lp->phy_configure);
... likewise lp->work_pending,
> smc911x_phy_powerdown(dev, lp->mii.phy_id);
> }
>
> diff --git a/drivers/net/smc91x.c b/drivers/net/smc91x.c
> index a188e33..5dbe4d3 100644
> --- a/drivers/net/smc91x.c
> +++ b/drivers/net/smc91x.c
> @@ -1016,15 +1016,8 @@ static void smc_phy_powerdown(struct net_device *dev)
>
> /* We need to ensure that no calls to smc_phy_configure are
> pending.
> -
> - flush_scheduled_work() cannot be called because we are
> - running with the netlink semaphore held (from
> - devinet_ioctl()) and the pending work queue contains
> - linkwatch_event() (scheduled by netif_carrier_off()
> - above). linkwatch_event() also wants the netlink semaphore.
> */
> - while(lp->work_pending)
> - yield();
> + cancel_work_sync(&lp->phy_configure);
... likewise lp->work_pending.
...
> diff --git a/drivers/net/wireless/hostap/hostap_main.c b/drivers/net/wireless/hostap/hostap_main.c
> index 20d387f..57b800f 100644
> --- a/drivers/net/wireless/hostap/hostap_main.c
> +++ b/drivers/net/wireless/hostap/hostap_main.c
> @@ -682,7 +682,11 @@ static int prism2_close(struct net_device *dev)
> netif_device_detach(dev);
> }
>
> - flush_scheduled_work();
> + cancel_work_sync(&local->reset_queue);
> + cancel_work_sync(&local->set_multicast_list_queue);
> + cancel_work_sync(&local->set_tim_queue);
> + cancel_work_sync(&local->info_queue);
local->info_queue probably needs some #ifndef like in hostap_info_init()
or could be skipped here at all (waiting for remove).
> + cancel_work_sync(&local->comms_qual_update);
>
> module_put(local->hw_module);
Regards,
Jarek P.
next prev parent reply other threads:[~2008-06-12 6:09 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-28 0:00 2.6.25rc7 lockdep trace Dave Jones
2008-03-28 1:55 ` Dave Jones
2008-03-29 0:34 ` David Miller
2008-03-29 0:54 ` Johannes Berg
2008-03-29 1:01 ` Johannes Berg
2008-03-29 1:09 ` David Miller
2008-04-02 8:51 ` Oleg Nesterov
2008-03-29 1:06 ` David Miller
2008-03-29 10:02 ` Johannes Berg
2008-03-29 12:52 ` Jarek Poplawski
2008-03-29 12:50 ` Johannes Berg
2008-04-03 20:48 ` David Miller
2008-04-04 14:48 ` Johannes Berg
2008-06-11 5:40 ` David Miller
2008-06-11 7:08 ` Jarek Poplawski
2008-06-11 7:10 ` David Miller
2008-06-11 9:36 ` Jarek Poplawski
2008-06-12 0:34 ` David Miller
2008-06-12 6:29 ` Jarek Poplawski
2008-06-11 10:40 ` Jarek Poplawski
2008-06-12 0:31 ` David Miller
2008-06-11 13:14 ` Jarek Poplawski
2008-06-12 5:46 ` David Miller
2008-06-12 7:20 ` Johannes Berg
2008-06-12 8:23 ` David Miller
2008-06-12 6:13 ` Jarek Poplawski [this message]
2008-06-12 7:01 ` David Miller
2008-06-12 7:47 ` Jarek Poplawski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080612061334.GA4005@ff.dom.local \
--to=jarkao2@gmail.com \
--cc=davej@codemonkey.org.uk \
--cc=davem@davemloft.net \
--cc=johannes@sipsolutions.net \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).