From: scameron@beardog.cce.hp.com
To: linux-kernel@vger.kernel.org
Cc: arnd@arndb.de, axboe@kernel.dk, scameron@beardog.cce.hp.com,
dab@hp.com, mike.miller@hp.com
Subject: Question about driver ioctl, big kernel lock, mutexes
Date: Wed, 16 Mar 2011 10:50:33 -0500 [thread overview]
Message-ID: <20110316155033.GQ12760@beardog.cce.hp.com> (raw)
I just noticed the existence of this change (I guess
I'm a little slow):
commit 2a48fc0ab24241755dc93bfd4f01d68efab47f5a
Author: Arnd Bergmann <arnd@arndb.de>
Date: Wed Jun 2 14:28:52 2010 +0200
block: autoconvert trivial BKL users to private mutex
The block device drivers have all gained new lock_kernel
calls from a recent pushdown, and some of the drivers
were already using the BKL before.
This turns the BKL into a set of per-driver mutexes.
Still need to check whether this is safe to do.
This changes the behavior of, for example, the CCISS_PASSTHRU and
other ioctls. Previously, these were "protected" by the Big
Kernel Lock. Now, from what I understand and what I've observed,
the Big Kernel Lock is kind of strange, in that it auto-releases
whenever you sleep. This means that the ioctl path in cciss used
to allow concurrency (which is fine, they should all be thread
safe. I'm kind of wondering why the BKL was there in the first
place. I guess I assumed it was necessary for reasons having to
do with the upper layers.)
Now, if I understand things correctly, with this new driver specific mutex
surrounding the ioctl path, only one thread is permitted in the ioctl path at a
time, and whether it sleeps or not, the mutex is not released until it's done.
That's a pretty big change in behavior. Some commands sent through
the passthrough ioctls may take awhile, and they're going to block
any other ioctls from getting started while they're going. Previously,
it was possible to saturate the controller using multiple threads or
processes hammering on the ioctl path. This would appear to no longer
be the case.
That being said, there was previously no real limit (other than
pci_alloc_consistent eventually failing) on how many commands
could be shoved through the cciss ioctl path at once, which was probably
a bug. It has occurred to me to put a limit on this, and return
-EBUSY when the limit is hit, though I don't know if programs using
the ioctl are prepared to receive EBUSY... but maybe that's not my
problem.
Thoughts?
I'm thinking that if there's no reason the ioctl path can't allow
concurrency, then it should allow concurrency.
-- steve
next reply other threads:[~2011-03-16 15:50 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-16 15:50 scameron [this message]
2011-03-16 19:06 ` Arnd Bergmann
2011-03-16 19:47 ` scameron
2011-03-16 20:40 ` Arnd Bergmann
2011-03-17 13:26 ` scameron
2011-03-16 19:36 ` Arnd Bergmann
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=20110316155033.GQ12760@beardog.cce.hp.com \
--to=scameron@beardog.cce.hp.com \
--cc=arnd@arndb.de \
--cc=axboe@kernel.dk \
--cc=dab@hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.miller@hp.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
Powered by JetHome