<div dir="ltr"><div><div><div>Greetings;<br><br></div>Might I suggest using SECTOR_SIZE instead of 512? Or, perhaps, >> SECTOR_SHIFT instead of / 512.  <br><br>I don't understand the three conditionals. I believe max_sectors is supposed to be <= min(max_dev_sectors, max_hw_sectors), but I don't understand why max_sectors being small should adjust max_hw_sectors and max_dev_sectors. Are the conditions perhaps supposed to be different, adjusting each max_*sectors up to at least PAGE_SIZE / SECTOR_SIZE? Perhaps, like e.g. blk_queue_max_hw_sectors(), the conditionals should log if they are adjusting max_*sectors up to the minimum.<br><br></div>Thanks!<br><br></div>John Dorminy<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Nov 19, 2020 at 3:37 PM Mikulas Patocka <<a href="mailto:mpatocka@redhat.com">mpatocka@redhat.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">We get these I/O errors when we run md-raid1 on the top of dm-integrity on <br>
the top of ramdisk:<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0xff00, 0xff<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0xff00, 0xff<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0xffff, 0x1<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0xffff, 0x1<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0x8048, 0xff<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0x8147, 0xff<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0x8246, 0xff<br>
device-mapper: integrity: Bio not aligned on 8 sectors: 0x8345, 0xbb<br>
<br>
The ramdisk device has logical_block_size 512 and max_sectors 255. The <br>
dm-integrity device uses logical_block_size 4096 and it doesn't affect the <br>
"max_sectors" value - thus, it inherits 255 from the ramdisk. So, we have <br>
a device with max_sectors not aligned on logical_block_size.<br>
<br>
The md-raid device sees that the underlying leg has max_sectors 255 and it<br>
will split the bios on 255-sector boundary, making the bios unaligned on<br>
logical_block_size.<br>
<br>
In order to fix the bug, we round down max_sectors to logical_block_size.<br>
<br>
Signed-off-by: Mikulas Patocka <<a href="mailto:mpatocka@redhat.com" target="_blank">mpatocka@redhat.com</a>><br>
Cc: <a href="mailto:stable@vger.kernel.org" target="_blank">stable@vger.kernel.org</a><br>
<br>
---<br>
 block/blk-settings.c |   10 ++++++++++<br>
 1 file changed, 10 insertions(+)<br>
<br>
Index: linux-2.6/block/blk-settings.c<br>
===================================================================<br>
--- linux-2.6.orig/block/blk-settings.c 2020-10-29 12:20:46.000000000 +0100<br>
+++ linux-2.6/block/blk-settings.c      2020-11-19 21:20:18.000000000 +0100<br>
@@ -591,6 +591,16 @@ int blk_stack_limits(struct queue_limits<br>
                ret = -1;<br>
        }<br>
<br>
+       t->max_sectors = round_down(t->max_sectors, t->logical_block_size / 512);<br>
+       if (t->max_sectors < PAGE_SIZE / 512)<br>
+               t->max_sectors = PAGE_SIZE / 512;<br>
+       t->max_hw_sectors = round_down(t->max_hw_sectors, t->logical_block_size / 512);<br>
+       if (t->max_sectors < PAGE_SIZE / 512)<br>
+               t->max_hw_sectors = PAGE_SIZE / 512;<br>
+       t->max_dev_sectors = round_down(t->max_dev_sectors, t->logical_block_size / 512);<br>
+       if (t->max_sectors < PAGE_SIZE / 512)<br>
+               t->max_dev_sectors = PAGE_SIZE / 512;<br>
+<br>
        /* Discard alignment and granularity */<br>
        if (b->discard_granularity) {<br>
                alignment = queue_limit_discard_alignment(b, start);<br>
<br>
--<br>
dm-devel mailing list<br>
<a href="mailto:dm-devel@redhat.com" target="_blank">dm-devel@redhat.com</a><br>
<a href="https://www.redhat.com/mailman/listinfo/dm-devel" rel="noreferrer" target="_blank">https://www.redhat.com/mailman/listinfo/dm-devel</a><br>
<br>
</blockquote></div>