[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1331131295-3707-1-git-send-email-santoshprasadnayak@gmail.com>
Date: Wed, 7 Mar 2012 20:11:35 +0530
From: santosh nayak <santoshprasadnayak@...il.com>
To: JBottomley@...allels.com
Cc: linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org,
Santosh Nayak <santoshprasadnayak@...il.com>
Subject: [PATCH] [SCSI] sd: set BIO_MAPPED_INTEGRITY bit correctly in sd_dif_prepare().
From: Santosh Nayak <santoshprasadnayak@...il.com>
Value of BIO_MAPPED_INTEGRITY is 11. Intention was to set the 11th bit.
Signed-off-by: Santosh Nayak <santoshprasadnayak@...il.com>
---
drivers/scsi/sd_dif.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/sd_dif.c b/drivers/scsi/sd_dif.c
index e981d97..8ccaf53 100644
--- a/drivers/scsi/sd_dif.c
+++ b/drivers/scsi/sd_dif.c
@@ -408,7 +408,7 @@ int sd_dif_prepare(struct request *rq, sector_t hw_sector, unsigned int sector_s
kunmap_atomic(sdt);
}
- bio->bi_flags |= BIO_MAPPED_INTEGRITY;
+ set_bit(BIO_MAPPED_INTEGRITY, &bio->bi_flags);
}
return 0;
--
1.7.4.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists