Hi All,<br>  I
 have written a passthrough block device driver using &#39;make_request&#39; 
call. This block device driver simply passes any request that comes to 
it down to lvm.<br>
<br>However, the read performance for my passthrough driver is around 
65MB/s (measured through dd) and write performance is around 140MB/s for
 dd block size 4096.<br>The write performance matches with lvm&#39;s write performance more or less but, the read performance on lvm is around 365MB/s.<br>
<br>I am posting snippets of code which i think are relevant here:<br><br>static int passthrough_make_request(<div id=":5wn">struct request_queue * queue, struct bio * bio)<br>{<br><br>        passthrough_device_t * passdev = queue-&gt;queuedata;<br>

        bio-&gt;bi_bdev = passdev-&gt;bdev_backing;<br>        generic_make_request(bio);<br>        return 0;<br>}<br><br>For initializing the queue i am using following:<br><br>blk_queue_make_request(passdev-&gt;queue, passthrough_make_request);<br>

passdev-&gt;queue-&gt;queuedata = sbd;<br>passdev-&gt;queue-&gt;unplug_fn = NULL;<br>bdev_backing = passdev-&gt;bdev_backing;<br>blk_queue_stack_limits(passdev-&gt;queue, bdev_get_queue(bdev_backing));<br>if ((bdev_get_queue(bdev_backing))-&gt;merge_bvec_fn) {<br>

        blk_queue_merge_bvec(sbd-&gt;queue, sbd_merge_bvec_fn);<br>}<br><br>Now,
 I browsed through dm code in kernel to see if there is some flag or 
something which i am not using which is causing this huge performance 
penalty.<br>
But, I have not found anything.<br><br>If you have any ideas about what i am possibly doing wrong then please tell me.<br><br>Thanks in advance.<br><br>Regards,<br>Neha</div>