From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Nicholas A. Bellinger" Subject: [PATCH] tcm/pscsi: Convert struct bio->bi_rw assignment to use REQ_WRITE Date: Sun, 29 Aug 2010 17:26:18 -0700 Message-ID: <1283127978-13861-1-git-send-email-nab@linux-iscsi.org> Return-path: Sender: linux-kernel-owner@vger.kernel.org To: linux-scsi , linux-kernel Cc: Christoph Hellwig , Tejun Heo , Nicholas Bellinger List-Id: linux-scsi@vger.kernel.org From: Nicholas Bellinger Greetings hch and tejun, This patch updates pscsi_map_task_SG() to use the new .36-rc REQ_WRITE macro in include/linux/blk_types.h when setting struct bio->bi_rw for WRITE I/O. This replaces the legacy (1 << BIO_RW) assignment, for which the new REQ_WRITE macro expands to: #define REQ_WRITE (1 << __REQ_WRITE) to match the old BIO_RW assignement. Thanks! Signed-off-by: Nicholas A. Bellinger --- drivers/target/target_core_pscsi.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/target/target_core_pscsi.c b/drivers/target/target_core_pscsi.c index 517268d..64808f1 100644 --- a/drivers/target/target_core_pscsi.c +++ b/drivers/target/target_core_pscsi.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -1103,11 +1104,9 @@ static int pscsi_map_task_SG(struct se_task *task) bio = pscsi_get_bio(pdv, nr_vecs); if (!(bio)) goto fail; - /* - * FIXME: Use bio_set_dir() when avaliable - */ + if (rw) - bio->bi_rw |= (1 << BIO_RW); + bio->bi_rw |= REQ_WRITE; DEBUG_PSCSI("PSCSI: Allocated bio: %p," " dir: %s nr_vecs: %d\n", bio, -- 1.5.6.5