mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Dominik Brodowski <linux@dominikbrodowski.net>
To: Arjan van de Ven <arjan@linux.intel.com>
Cc: Miles Lane <miles.lane@gmail.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@osdl.org>
Subject: Re: [patch] Fix deadlock in pcmcia as found by lockdep
Date: Fri, 30 Jun 2006 21:00:59 +0200	[thread overview]
Message-ID: <20060630190059.GD8721@dominikbrodowski.de> (raw)
In-Reply-To: <1151656273.11434.5.camel@laptopd505.fenrus.org>

On Fri, Jun 30, 2006 at 10:31:13AM +0200, Arjan van de Ven wrote:
> On Thu, 2006-06-29 at 23:18 -0700, Miles Lane wrote:
> > To trigger this, I booted with a U.S. Robotics USR2210 Wifi card
> > plugged into my cardbus slot.  I then ran "pccardctl eject" and then
> > removed and then reinserted the card.  After looking at the latest
> > PCMCIA info, it seems that I may need to add some kernel boot options
> > to work around a BIOS or other problem that causes trouble when
> > removing a card.
> > 
> > PM: Removing info for pci:0000:02:00.0
> > PCMCIA: socket c1ebc9e0: *** DANGER *** unable to remove socket power
> 
> 
> ok this looks like a real bug:
> 
> void pcmcia_parse_events(struct pcmcia_socket *s, u_int events)
> {
>         cs_dbg(s, 4, "parse_events: events %08x\n", events);
>         if (s->thread) {
>                 spin_lock(&s->thread_lock);
>                 s->thread_events |= events;
>                 spin_unlock(&s->thread_lock);
> 
>                 wake_up(&s->thread_wait);
>         }
> } /* pcmcia_parse_events */
> 
> 
> that function gets called from both user context and irq context!
> 
> user context:
> [<c1181270>] pcmcia_parse_events+0x3e/0x6b
> [<c1181945>] pcmcia_register_socket+0x29b/0x2fc
> [<c118a8d1>] yenta_probe+0x51b/0x55c
> [<c110d537>] pci_device_probe+0x39/0x5b
> 
> eg in pcmcia_register_socket:
> 
>         ret = kernel_thread(pccardd, socket, CLONE_KERNEL);
>         if (ret < 0)
>                 goto err;
> 
>         wait_for_completion(&socket->thread_done);
>         if(!socket->thread) {
>                 printk(KERN_WARNING "PCMCIA: warning: socket thread for
> socket %p did not start\n", socket);
>                 return -EIO;
>         }
>         pcmcia_parse_events(socket, SS_DETECT);
> 
> clearly sleeping/user context
> 
> 
> interrupt context:
> yenta_interrupt calls pcmcia_parse_events like this:
> ....
>         if (events)
>                 pcmcia_parse_events(&socket->socket, events);
> 
>         return IRQ_HANDLED;
> }
> 
> and that's the irq handler.
> 
> Dominik: this really wants to have _irqsave versions of the spinlock
> like this:

Applied.

Thanks,
	Dominik

      reply	other threads:[~2006-06-30 19:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-30  6:18 2.6.17-mm4 -- BUG: illegal lock usage! -- illegal {hardirq-on-W} -> {in-hardirq-W} usage Miles Lane
2006-06-30  7:07 ` Miles Lane
2006-06-30  8:31 ` [patch] Fix deadlock in pcmcia as found by lockdep Arjan van de Ven
2006-06-30 19:00   ` Dominik Brodowski [this message]

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=20060630190059.GD8721@dominikbrodowski.de \
    --to=linux@dominikbrodowski.net \
    --cc=akpm@osdl.org \
    --cc=arjan@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miles.lane@gmail.com \
    /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

all inboxes | Powered by JetHome®