From: Oliver Neukum <oliver@neukum.org>
To: Jean Tourrilhes <jt@hpl.hp.com>,
Nick Fedchik <nick@fedchik.org.ua>,
netdev@vger.kernel.org,
USB development list <linux-usb-devel@lists.sourceforge.net>,
Samuel Ortiz <samuel@sortiz.
Subject: [PATCH]race between open and disconnect in irda-usb
Date: Fri, 12 Oct 2007 10:53:55 +0200 [thread overview]
Message-ID: <200710121053.55829.oliver@neukum.org> (raw)
Hi,
it seems to me that irda_usb_net_open() must set self->netopen
under spinlock or disconnect() may fail to kill all URBs, if it is called
while an interface is opened.
Signed-off-by: Oliver Neukum <oneukum@suse.de>
Regards
Oliver
----
--- a/drivers/net/irda/irda-usb.c 2007-10-11 17:24:35.000000000 +0200
+++ b/drivers/net/irda/irda-usb.c 2007-10-11 17:30:30.000000000 +0200
@@ -1168,6 +1168,7 @@ static int stir421x_patch_device(struct
static int irda_usb_net_open(struct net_device *netdev)
{
struct irda_usb_cb *self;
+ unsigned long flags;
char hwname[16];
int i;
@@ -1177,13 +1178,16 @@ static int irda_usb_net_open(struct net_
self = (struct irda_usb_cb *) netdev->priv;
IRDA_ASSERT(self != NULL, return -1;);
+ spin_lock_irqsave(&self->lock, flags);
/* Can only open the device if it's there */
if(!self->present) {
+ spin_unlock_irqrestore(&self->lock, flags);
IRDA_WARNING("%s(), device not present!\n", __FUNCTION__);
return -1;
}
if(self->needspatch) {
+ spin_unlock_irqrestore(&self->lock, flags);
IRDA_WARNING("%s(), device needs patch\n", __FUNCTION__) ;
return -EIO ;
}
@@ -1198,6 +1202,7 @@ static int irda_usb_net_open(struct net_
/* To do *before* submitting Rx urbs and starting net Tx queue
* Jean II */
self->netopen = 1;
+ spin_unlock_irqrestore(&self->lock, flags);
/*
* Now that everything should be initialized properly,
next reply other threads:[~2007-10-12 8:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-12 8:53 Oliver Neukum [this message]
[not found] ` <200710121053.55829.oliver-GvhC2dPhHPQdnm+yROfE0A@public.gmane.org>
2007-10-13 0:32 ` [PATCH]race between open and disconnect in irda-usb Samuel Ortiz
-- strict thread matches above, loose matches on Subject: below --
2007-10-11 15:45 Oliver Neukum
2007-10-11 16:23 ` Jean Tourrilhes
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=200710121053.55829.oliver@neukum.org \
--to=oliver@neukum.org \
--cc=jt@hpl.hp.com \
--cc=linux-usb-devel@lists.sourceforge.net \
--cc=netdev@vger.kernel.org \
--cc=nick@fedchik.org.ua \
--cc=samuel@sortiz. \
/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).