All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tejun Heo <tj@kernel.org>
To: axboe@kernel.dk, linux-kernel@vger.kernel.org, bzolnier@gmail.com
Subject: [GIT PATCH linux-2.6-block] block: cleanup patches, take#3
Date: Wed, 22 Apr 2009 01:37:47 +0900	[thread overview]
Message-ID: <1240331881-28218-1-git-send-email-tj@kernel.org> (raw)

Hello,

Upon ack, please pull from the following git tree, which pulls in
linux-2.6-ide#for-next into linux-2.6-block#for-next and applies this
patchset on top of it.

 git://git.kernel.org/pub/scm/linux/kernel/git/tj/misc.git block-cleanup

This is the third take of block-cleanup-patches.  Changes from the
last take[L] are

* All ide changes including L0001-0003 are separated out and merged
  through linux-2.6-ide#for-next and pulled into
  linux-2.6-block#for-next.

* L0015-block-kill-end_request.patch replaced with
  0012-block-replace-end_request-with-__-blk_end_reques.patch.

* L0016-ubd-simplify-block-request-completion.patch
  L0017-block-clean-up-unnecessary-stuff-from-block-drivers.patch are
  postponed to later patchset.

* 0013-0014 to kill rq->data added.

* Updated to the current #for-next.

 0001-block-merge-blk_invoke_request_fn-into-__blk_run_.patch
 0002-block-kill-blk_start_queueing.patch
 0003-block-don-t-set-REQ_NOMERGE-unnecessarily.patch
 0004-block-cleanup-REQ_SOFTBARRIER-usages.patch
 0005-block-clean-up-misc-stuff-after-block-layer-timeout.patch
 0006-block-reorder-request-completion-functions.patch
 0007-block-reorganize-request-fetching-functions.patch
 0008-block-kill-blk_end_request_callback.patch
 0009-block-clean-up-request-completion-API.patch
 0010-block-move-rq-start_time-initialization-to-blk_rq_.patch
 0011-block-implement-and-use-__-blk_end_request_all.patch
 0012-block-replace-end_request-with-__-blk_end_reques.patch
 0013-block-don-t-abuse-rq-data.patch
 0014-block-kill-data.patch

0001-0011 are mostly identical to L0004-0014.  L0015 incorrectly
replaced end_request() with __blk_end_request_all().  0012 adds
[__]blk_end_request_cur() and replaces end_request() with it.

With ide changes pulled in, omap is the only user of rq->data, 0013
makes it use only rq->special and 0014 kills rq->data.

This patchset is on top of

linux-2.6-block#for-next(a95320f3ede3f028837a621715cd352e83ffe7c2)
+ linux-2.6-ide#for-next(2ecf0a57c60dcb588f310d94412118e15c510532)

and contains the following changes.

 arch/arm/plat-omap/mailbox.c        |   54 ++--
 block/as-iosched.c                  |    6 
 block/blk-barrier.c                 |    9 
 block/blk-core.c                    |  486 ++++++++++++++----------------------
 block/blk-exec.c                    |    1 
 block/blk-map.c                     |    6 
 block/blk-timeout.c                 |   22 -
 block/blk.h                         |   37 ++
 block/cfq-iosched.c                 |    6 
 block/elevator.c                    |  137 ----------
 block/scsi_ioctl.c                  |    1 
 drivers/block/amiflop.c             |   10 
 drivers/block/ataflop.c             |   14 -
 drivers/block/cpqarray.c            |    3 
 drivers/block/hd.c                  |   14 -
 drivers/block/mg_disk.c             |   16 -
 drivers/block/paride/pcd.c          |   12 
 drivers/block/paride/pd.c           |    5 
 drivers/block/paride/pf.c           |   28 +-
 drivers/block/ps3disk.c             |    6 
 drivers/block/swim.c                |   14 -
 drivers/block/swim3.c               |   26 -
 drivers/block/sx8.c                 |    3 
 drivers/block/virtio_blk.c          |    2 
 drivers/block/xd.c                  |   15 -
 drivers/block/xen-blkfront.c        |    6 
 drivers/block/xsysace.c             |    4 
 drivers/block/z2ram.c               |    4 
 drivers/cdrom/gdrom.c               |    8 
 drivers/cdrom/viocd.c               |   25 -
 drivers/memstick/core/mspro_block.c |    2 
 drivers/message/i2o/i2o_block.c     |    2 
 drivers/mtd/mtd_blkdevs.c           |   22 -
 drivers/s390/block/dasd.c           |   17 -
 drivers/s390/char/tape_block.c      |   15 -
 drivers/sbus/char/jsflash.c         |    8 
 drivers/scsi/scsi_lib.c             |    3 
 include/linux/blkdev.h              |  173 ++++++++++--
 38 files changed, 559 insertions(+), 663 deletions(-)

Thanks.

--
tejun

[L] http://thread.gmane.org/gmane.linux.kernel/807554

             reply	other threads:[~2009-04-21 16:38 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-21 16:37 Tejun Heo [this message]
2009-04-21 16:37 ` [PATCH 01/14] block: merge blk_invoke_request_fn() into __blk_run_queue() Tejun Heo
2009-04-21 16:37 ` [PATCH 02/14] block: kill blk_start_queueing() Tejun Heo
2009-04-21 16:37 ` [PATCH 03/14] block: don't set REQ_NOMERGE unnecessarily Tejun Heo
2009-04-21 16:37 ` [PATCH 04/14] block: cleanup REQ_SOFTBARRIER usages Tejun Heo
2009-04-21 16:37 ` [PATCH 05/14] block: clean up misc stuff after block layer timeout conversion Tejun Heo
2009-04-21 16:37 ` [PATCH 06/14] block: reorder request completion functions Tejun Heo
2009-04-21 16:37 ` [PATCH 07/14] block: reorganize request fetching functions Tejun Heo
2009-04-21 17:07   ` Christoph Hellwig
2009-04-22 10:09     ` Jens Axboe
2009-04-23  1:23       ` Tejun Heo
2009-04-21 16:37 ` [PATCH 08/14] block: kill blk_end_request_callback() Tejun Heo
2009-04-21 16:37 ` [PATCH 09/14] block: clean up request completion API Tejun Heo
2009-04-21 17:59   ` Christoph Hellwig
2009-04-23  1:24     ` Tejun Heo
2009-04-23  2:08       ` [PATCH UPDATED " Tejun Heo
2009-04-23  9:43         ` Boaz Harrosh
2009-04-23  9:59           ` Tejun Heo
2009-04-21 16:37 ` [PATCH 10/14] block: move rq->start_time initialization to blk_rq_init() Tejun Heo
2009-04-21 16:37 ` [PATCH 11/14] block: implement and use [__]blk_end_request_all() Tejun Heo
2009-04-21 16:37 ` [PATCH 12/14] block: replace end_request() with [__]blk_end_request_cur() Tejun Heo
2009-04-21 18:25   ` Joerg Dorchain
2009-04-21 20:35   ` Laurent Vivier
2009-04-22  9:25   ` Geert Uytterhoeven
2009-04-22 16:04   ` Grant Likely
2009-04-21 16:38 ` [PATCH 13/14] block: don't abuse rq->data Tejun Heo
2009-04-21 16:38 ` [PATCH 14/14] block-kill-data Tejun Heo
2009-04-21 16:42   ` [PATCH 14/14] block: kill rq->data Tejun Heo
2009-04-22 10:10 ` [GIT PATCH linux-2.6-block] block: cleanup patches, take#3 Jens Axboe
2009-04-23  2:10   ` Tejun Heo
2009-04-23  6:09     ` 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=1240331881-28218-1-git-send-email-tj@kernel.org \
    --to=tj@kernel.org \
    --cc=axboe@kernel.dk \
    --cc=bzolnier@gmail.com \
    --cc=linux-kernel@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.