linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8] Evalue bio->bi_rw after calling bio_alloc() and before calling bio_add_page().
@ 2012-07-30  7:15 kedacomkernel
  0 siblings, 0 replies; only message in thread
From: kedacomkernel @ 2012-07-30  7:15 UTC (permalink / raw)
  To: axboe, konrad.wilk, chris.mason, viro, tytso, adilger.kernel,
	shaggy, mfasheh, jlbec, bpm, elder
  Cc: jfs-discussion, linux-kernel, xfs, linux-btrfs, linux-fsdevel,
	linux-ext4, ocfs2-devel

Because call bio_alloc, the bi_rw is zero by default,but in bio_add_page
used the bi_rw. So evalue bi_rw.

Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
---
 block/blk-lib.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/block/blk-lib.c b/block/blk-lib.c
index 2b461b4..fac777b 100644
--- a/block/blk-lib.c
+++ b/block/blk-lib.c
@@ -151,6 +151,7 @@ int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
 		bio->bi_bdev   = bdev;
 		bio->bi_end_io = bio_batch_end_io;
 		bio->bi_private = &bb;
+		bio->bi_rw = WRITE;
 
 		while (nr_sects != 0) {
 			sz = min((sector_t) PAGE_SIZE >> 9 , nr_sects);
-- 
1.7.9.5
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-07-30  7:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-30  7:15 [PATCH 1/8] Evalue bio->bi_rw after calling bio_alloc() and before calling bio_add_page() kedacomkernel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).