From: Arnd Bergmann <arnd@arndb.de>
To: Jens Axboe <axboe@kernel.dk>
Cc: Christoph Hellwig <hch@infradead.org>,
Sam Ravnborg <sam@ravnborg.org>,
linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org,
John Kacur <jkacur@redhat.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
linux-scsi@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>
Subject: [PATCH 0/7] block: BKL removal, version 4
Date: Wed, 7 Jul 2010 16:51:22 +0200 [thread overview]
Message-ID: <1278514289-21054-1-git-send-email-arnd@arndb.de> (raw)
This series removes the big kernel lock from the common
block layer code by pushing it into the individual
device drivers.
This version incorporates further changes to address
comments from Christoph Hellwig and Sam Ravnborg,
many thanks for the valuable feedback!
I'd like to get this into 2.6.36 in order to remove
the BKL from all the core kernel code.
Once Christoph is happy with the series, in particular
the third patch, I'd like to add it to linux-next
for broader testing, preferrably though Jens Axboe's
linux-2.6-block.git tree.
Arnd Bergmann (7):
scsi/i2o_block: cleanup ioctl handling
block: push down BKL into .locked_ioctl
block: push down BKL into .open and .release
block: push BKL into blktrace ioctls
block: remove BKL from BLKROSET and BLKFLSBUF
block: remove BKL from partition ioctls
scsi/sd: remove big kernel lock
arch/um/drivers/ubd_kern.c | 7 ++++-
block/compat_ioctl.c | 56 -----------------------------------
block/ioctl.c | 21 +------------
drivers/block/DAC960.c | 13 +++++--
drivers/block/amiflop.c | 29 +++++++++++++++--
drivers/block/aoe/aoeblk.c | 4 ++
drivers/block/ataflop.c | 32 +++++++++++++++++--
drivers/block/brd.c | 5 ++-
drivers/block/cciss.c | 31 +++++++++++++++----
drivers/block/cpqarray.c | 40 ++++++++++++++++++++++---
drivers/block/drbd/drbd_main.c | 4 ++
drivers/block/floppy.c | 22 ++++++++++++-
drivers/block/loop.c | 5 +++
drivers/block/nbd.c | 5 ++-
drivers/block/paride/pcd.c | 21 +++++++++++--
drivers/block/paride/pd.c | 9 +++++-
drivers/block/paride/pf.c | 26 ++++++++++++----
drivers/block/pktcdvd.c | 18 +++++++++--
drivers/block/swim.c | 20 +++++++++++-
drivers/block/swim3.c | 32 ++++++++++++++++++--
drivers/block/ub.c | 27 +++++++++++++++--
drivers/block/viodasd.c | 19 +++++++++++-
drivers/block/virtio_blk.c | 17 +++++++++-
drivers/block/xd.c | 17 +++++++++-
drivers/block/xen-blkfront.c | 9 +++++-
drivers/block/xsysace.c | 6 ++++
drivers/block/z2ram.c | 13 ++++++--
drivers/cdrom/gdrom.c | 19 ++++++++++--
drivers/cdrom/viocd.c | 21 +++++++++++--
drivers/ide/ide-cd.c | 32 +++++++++++++++----
drivers/ide/ide-disk_ioctl.c | 9 ++++-
drivers/ide/ide-floppy_ioctl.c | 12 +++++--
drivers/ide/ide-gd.c | 19 ++++++++++-
drivers/ide/ide-tape.c | 19 ++++++++++--
drivers/md/dm.c | 7 ++++
drivers/md/md.c | 6 ++++
drivers/memstick/core/mspro_block.c | 9 +++++-
drivers/message/i2o/i2o_block.c | 4 ++
drivers/mmc/card/block.c | 5 +++
drivers/mtd/mtd_blkdevs.c | 11 +++++-
drivers/s390/block/dasd.c | 6 ++++
drivers/s390/block/dcssblk.c | 5 +++
drivers/s390/char/tape_block.c | 8 ++++-
drivers/scsi/sd.c | 25 ++++++++++-----
drivers/scsi/sd.h | 2 +-
drivers/scsi/sr.c | 25 ++++++++++++----
drivers/staging/hv/blkvsc_drv.c | 5 +++
fs/block_dev.c | 10 +-----
include/linux/blkdev.h | 1 -
include/linux/blktrace_api.h | 12 +++++++
kernel/trace/blktrace.c | 43 ++++++++++++++++++++++++++
51 files changed, 637 insertions(+), 186 deletions(-)
next reply other threads:[~2010-07-07 14:52 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-07 14:51 Arnd Bergmann [this message]
2010-07-07 14:51 ` [PATCH 1/7] scsi/i2o_block: cleanup ioctl handling Arnd Bergmann
2010-07-07 14:51 ` [PATCH 2/7] block: push down BKL into .locked_ioctl Arnd Bergmann
2010-07-08 8:36 ` Jens Axboe
2010-07-08 11:56 ` Arnd Bergmann
2010-07-07 14:51 ` [PATCH 3/7] block: push down BKL into .open and .release Arnd Bergmann
2010-07-08 8:41 ` Jens Axboe
2010-07-08 11:59 ` Arnd Bergmann
2010-07-07 14:51 ` [PATCH 4/7] block: push BKL into blktrace ioctls Arnd Bergmann
2010-07-07 14:51 ` [PATCH 5/7] block: remove BKL from BLKROSET and BLKFLSBUF Arnd Bergmann
2010-07-07 14:51 ` [PATCH 6/7] block: remove BKL from partition ioctls Arnd Bergmann
2010-07-07 14:51 ` [PATCH 7/7] scsi/sd: remove big kernel lock Arnd Bergmann
2010-07-07 16:44 ` [PATCH 0/7] block: BKL removal, version 4 Christoph Hellwig
2010-07-07 19:36 ` Jens Axboe
2010-07-07 20:18 ` Arnd Bergmann
2010-07-08 8:53 ` Jens Axboe
2010-07-08 12:57 ` [PATCH] scsi/i2o: restore ioctl changes Arnd Bergmann
2010-07-08 12:59 ` Jens Axboe
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=1278514289-21054-1-git-send-email-arnd@arndb.de \
--to=arnd@arndb.de \
--cc=axboe@kernel.dk \
--cc=fweisbec@gmail.com \
--cc=hch@infradead.org \
--cc=jkacur@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=sam@ravnborg.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome