From: Greg KH <gregkh@suse.de>
To: Luiz Fernando Capitulino <lcapitulino@mandriva.com.br>
Cc: linux-kernel@vger.kernel.org,
linux-usb-devel@lists.sourceforge.net, akpm@osdl.org,
ehabkost@mandriva.com
Subject: Re: [PATCH 2/2] - usbserial: race-condition fix.
Date: Wed, 23 Nov 2005 10:00:05 -0800 [thread overview]
Message-ID: <20051123180005.GA26433@suse.de> (raw)
In-Reply-To: <20051123093655.5555f23e.lcapitulino@mandriva.com.br>
On Wed, Nov 23, 2005 at 09:36:55AM -0200, Luiz Fernando Capitulino wrote:
> On Tue, 22 Nov 2005 14:13:53 -0800
> Greg KH <gregkh@suse.de> wrote:
>
> | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote:
> | > @@ -60,6 +61,7 @@ struct usb_serial_port {
> | > struct usb_serial * serial;
> | > struct tty_struct * tty;
> | > spinlock_t lock;
> | > + struct semaphore sem;
> |
> | You forgot to document what this semaphore is used for.
>
> Okay.
>
> | Hm, can we just use the spinlock already present in the port structure
> | for this? Well, drop the spinlock and use the semaphore? Yeah, that
> | means grabbing a semaphore for ever write for some devices, but USB data
> | rates are slow enough it wouldn't matter :)
>
> As far as I read the code, I found that spinlock is only used by the
> generic driver, in the
> drivers/usb/serial/generic.c:usb_serial_generic_write() function.
No, lots of other usb-serial drivers use it. Increase your grep a bit
wider :)
> Can we drop the spinlock there and use our new semaphore? Or should we
> create a new spinlock just to use there?
Create a new one for where?
> I ask it because the semaphore will be used to serialize open()/close()
> operations in the usb-serial driver, is a bit weird to use the same
> semaphore in a write() function of other driver.
I agree, but yet-another-lock isn't the best either.
thanks,
greg k-h
next prev parent reply other threads:[~2005-11-23 18:01 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-22 21:59 [PATCH 2/2] - usbserial: race-condition fix Luiz Fernando Capitulino
2005-11-22 22:13 ` Greg KH
2005-11-23 11:36 ` Luiz Fernando Capitulino
2005-11-23 11:56 ` Eduardo Pereira Habkost
2005-11-23 12:07 ` Luiz Fernando Capitulino
2005-11-23 20:03 ` Greg KH
2005-11-23 18:00 ` Greg KH [this message]
2005-11-23 17:46 ` [RESEND " Luiz Fernando Capitulino
2005-11-23 18:01 ` Greg KH
2005-11-23 19:02 ` Luiz Fernando Capitulino
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=20051123180005.GA26433@suse.de \
--to=gregkh@suse.de \
--cc=akpm@osdl.org \
--cc=ehabkost@mandriva.com \
--cc=lcapitulino@mandriva.com.br \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb-devel@lists.sourceforge.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.