]> err.no Git - linux-2.6/commit
[SCSI] make scsi_queue_insert() use blk_requeue_request()
authorTejun Heo <htejun@gmail.com>
Sun, 24 Apr 2005 07:08:52 +0000 (02:08 -0500)
committerJames Bottomley <jejb@mulgrave.(none)>
Fri, 20 May 2005 17:53:30 +0000 (12:53 -0500)
commita1bf9d1d9272708922e83e465104106131f6415f
treeb89ce430de2a2b2f454c1c89af586cdde13a480c
parent283369ccc26705bd9585a0e533c92bd7364c28d1
[SCSI] make scsi_queue_insert() use blk_requeue_request()

scsi_queue_insert() used to use blk_insert_request() for requeueing
requests.  This depends on the unobvious behavior of
blk_insert_request() setting REQ_SPECIAL and REQ_SOFTBARRIER when
requeueing.  This patch makes scsi_queue_insert() use
blk_requeue_request().  As REQ_SPECIAL means special requests and
REQ_SOFTBARRIER is automatically handled by blk layer now, no flag
needs to be set.

Note that scsi_queue_insert() now calls scsi_run_queue() itself, and
the prototype of the function is added right above
scsi_queue_insert().  This is temporary, as later requeue path
consolidation patchset removes scsi_queue_insert().  By adding
temporary prototype, we can do away with unnecessarily moving
functions.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/scsi_lib.c