From: Jiri Slaby <jslaby@suse.cz>
To: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Jack Stone <jwjstone@fastmail.fm>, Mac <kmac@poczta.fm>,
linux-kernel@vger.kernel.org, linux-ppp@vger.kernel.org,
Greg Kroah-Hartman <gregkh@suse.de>,
Jiri Slaby <jirislaby@gmail.com>
Subject: Re: 'scheduling while atomic' during ppp connection on 2.6.37.1 and
Date: Mon, 21 Mar 2011 09:15:41 +0000 [thread overview]
Message-ID: <4D87173D.50906@suse.cz> (raw)
In-Reply-To: <20110320215826.79cadfe2@lxorguk.ukuu.org.uk>
On 03/20/2011 10:58 PM, Alan Cox wrote:
>> + spin_lock_irqsave(&dc->spin_mutex, flags);
>> if (port->port.count)
>> room = kfifo_avail(&port->fifo_ul);
>> - mutex_unlock(&port->tty_sem);
>> + spin_unlock_irqrestore(&dc->spin_mutex, flags);
>
> dc->spin_mutex does not protect port->port.count.
Neither port->tty_sem did.
Anyway is the test needed at all? I.e. could
tty->ops->write/chars_in_buffer/ntty_write_room be called with
port->port.count = 0 at all?
And the lock should not as well be needed. Kfifo assures atomicity where
there is only one reader and one writer which should be the case here.
Unless tty->ops->write can be called in parallel. And it should not,
that's what's tty->atomic_write_lock for.
thanks,
--
js
suse labs
WARNING: multiple messages have this Message-ID (diff)
From: Jiri Slaby <jslaby@suse.cz>
To: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Jack Stone <jwjstone@fastmail.fm>, Mac <kmac@poczta.fm>,
linux-kernel@vger.kernel.org, linux-ppp@vger.kernel.org,
Greg Kroah-Hartman <gregkh@suse.de>,
Jiri Slaby <jirislaby@gmail.com>
Subject: Re: 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38
Date: Mon, 21 Mar 2011 10:15:41 +0100 [thread overview]
Message-ID: <4D87173D.50906@suse.cz> (raw)
In-Reply-To: <20110320215826.79cadfe2@lxorguk.ukuu.org.uk>
On 03/20/2011 10:58 PM, Alan Cox wrote:
>> + spin_lock_irqsave(&dc->spin_mutex, flags);
>> if (port->port.count)
>> room = kfifo_avail(&port->fifo_ul);
>> - mutex_unlock(&port->tty_sem);
>> + spin_unlock_irqrestore(&dc->spin_mutex, flags);
>
> dc->spin_mutex does not protect port->port.count.
Neither port->tty_sem did.
Anyway is the test needed at all? I.e. could
tty->ops->write/chars_in_buffer/ntty_write_room be called with
port->port.count == 0 at all?
And the lock should not as well be needed. Kfifo assures atomicity where
there is only one reader and one writer which should be the case here.
Unless tty->ops->write can be called in parallel. And it should not,
that's what's tty->atomic_write_lock for.
thanks,
--
js
suse labs
next prev parent reply other threads:[~2011-03-21 9:15 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-19 22:06 'scheduling while atomic' during ppp connection on 2.6.37.1 and Mac
2011-03-19 22:06 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Mac
2011-03-20 18:42 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Jack Stone
2011-03-20 18:42 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Jack Stone
2011-03-20 21:52 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Jiri Slaby
2011-03-20 21:52 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Jiri Slaby
2011-03-20 23:09 ` Jack Stone
2011-03-20 21:58 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Alan Cox
2011-03-20 21:58 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Alan Cox
2011-03-20 23:05 ` Jack Stone
2011-03-21 11:27 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Alan Cox
2011-03-21 11:27 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Alan Cox
2011-03-21 17:40 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Jack Stone
2011-03-21 17:40 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Jack Stone
2011-03-21 9:15 ` Jiri Slaby [this message]
2011-03-21 9:15 ` Jiri Slaby
2011-03-21 11:02 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Alan Cox
2011-03-21 11:02 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Alan Cox
2011-03-31 20:53 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Jiri Slaby
2011-03-31 20:53 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Jiri Slaby
2011-03-31 21:39 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and Alan Cox
2011-03-31 21:39 ` 'scheduling while atomic' during ppp connection on 2.6.37.1 and 2.6.38 Alan Cox
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=4D87173D.50906@suse.cz \
--to=jslaby@suse.cz \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=gregkh@suse.de \
--cc=jirislaby@gmail.com \
--cc=jwjstone@fastmail.fm \
--cc=kmac@poczta.fm \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-ppp@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 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.