netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* smatch stuff: qla3xxxx: locking problem in ql_adapter_initialize()
@ 2011-12-15  8:16 Dan Carpenter
  0 siblings, 0 replies; only message in thread
From: Dan Carpenter @ 2011-12-15  8:16 UTC (permalink / raw)
  To: Ron Mercer; +Cc: linux-driver, netdev

Hi Ron,

The latest version of Smatch complains about this code which was merged
in 2009: 0f77ca928b "qla3xxx: Don't sleep while holding lock."

drivers/net/ethernet/qlogic/qla3xxx.c +3231 ql_adapter_initialize(221)
	error: calling 'spin_unlock_irqrestore()' with bogus flags

> commit 0f77ca928b5d1ea17afc7a95682b6534611a719c
> Author: Ron Mercer <ron.mercer@qlogic.com>
> Date:   Tue Jun 23 09:00:02 2009 +0000
> 
>     qla3xxx: Don't sleep while holding lock.
>     
>     Signed-off-by: Ron Mercer <ron.mercer@qlogic.com>
>     Signed-off-by: David S. Miller <davem@davemloft.net>
> 
> diff --git a/drivers/net/qla3xxx.c b/drivers/net/qla3xxx.c
> index 68be714..3e4b67a 100644
> --- a/drivers/net/qla3xxx.c
> +++ b/drivers/net/qla3xxx.c
> @@ -3142,6 +3142,7 @@ static int ql_adapter_initialize(struct ql3_adapter *qdev)
>                                                 (void __iomem *)port_regs;
>         u32 delay = 10;
>         int status = 0;
> +       unsigned long hw_flags = 0;
>  
>         if(ql_mii_setup(qdev))
>                 return -1;
> @@ -3351,7 +3352,9 @@ static int ql_adapter_initialize(struct ql3_adapter *qdev)
>                 value = ql_read_page0_reg(qdev, &port_regs->portStatus);
>                 if (value & PORT_STATUS_IC)
>                         break;
> +               spin_unlock_irqrestore(&qdev->hw_lock, hw_flags);
                                                         ^^^^^^^^
This is zero here on the first iteration through the loop.  On x86 a
zero here means that it turns off IRQs.  (They are already off btw).

>                 msleep(500);
> +               spin_lock_irqsave(&qdev->hw_lock, hw_flags);
                                                    ^^^^^^^^
This is going save that the IRQs are disabled.

>         } while (--delay);
>  
>         if (delay == 0) {

My guess is that probably the intent was to enable IRQs during the
msleep().  We turn on IRQs again ql_adapter_up() so it doesn't cause a
deadlock but it's still not pretty.

regards,
dan carpetner

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-12-15  8:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-15  8:16 smatch stuff: qla3xxxx: locking problem in ql_adapter_initialize() Dan Carpenter

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).