bio -> bi_bdev

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

I am working on a module to redirect a bio request from one block device
to another. Therefore, I catch every bio from one device, clone it and
change the underlying block_device bi_bdev to the other block device.
Everything works fine, except that the first page read is always filled
with random data. Everything else works fine. So I am wondering, if
there is something I did not take into consideration.

I tested it under 2.6.8 and 2.6.19 with the same results.

Below is the essence of my redirection code.


"device" is the instance of my device structure. The original read was
made to it and I want to redirect it to the block_device linked in
bdev.

struct bio bio, cloned_bio;
int sect = 0;


rq_for_each_bio(bio, req) {
		
		cloned_bio = bio_clone(bio, GFP_NOIO);
		cloned_bio -> bi_private = bio;
		cloned_bio -> bi_bdev = device -> bdev;
		
		if(bio_data_dir(cloned_bio) == WRITE) {

			submit_bio(WRITE, cloned_bio);
		}
		else {

			submit_bio(READ, cloned_bio);
		}
		
		sect += cloned_bio->bi_size/KERNEL_SECTOR_SIZE;

	}

thanks in advance for any feedback,

Jochen Oekonomopulos
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux