]> git.baikalelectronics.ru Git - kernel.git/commit
gfs2: Make sure FITRIM minlen is rounded up to fs block size
authorAndrew Price <anprice@redhat.com>
Tue, 22 Mar 2022 19:05:51 +0000 (19:05 +0000)
committerAndreas Gruenbacher <agruenba@redhat.com>
Thu, 31 Mar 2022 18:35:38 +0000 (20:35 +0200)
commit895ee5709a109991df55eeb4f2171a91df61c95f
tree85b1cf4acb2ffaaf96c105d245ba30c393f180f9
parent2563eb29ebff58c4afe0383e47371bfa418fed46
gfs2: Make sure FITRIM minlen is rounded up to fs block size

Per fstrim(8) we must round up the minlen argument to the fs block size.
The current calculation doesn't take into account devices that have a
discard granularity and requested minlen less than 1 fs block, so the
value can get shifted away to zero in the translation to fs blocks.

The zero minlen passed to gfs2_rgrp_send_discards() then allows
sb_issue_discard() to be called with nr_sects == 0 which returns -EINVAL
and results in gfs2_rgrp_send_discards() returning -EIO.

Make sure minlen is never < 1 fs block by taking the max of the
requested minlen and the fs block size before comparing to the device's
discard granularity and shifting to fs blocks.

Fixes: 2ad9559e9aae9 ("GFS2: Fix FITRIM argument handling")
Signed-off-by: Andrew Price <anprice@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/rgrp.c