Browse Source

ext4: Adjust minlen with discard_granularity in the FITRIM ioctl

Discard granularity tells us the minimum size of extent that can be
discarded by the device.  If the user supplies a minimum extent that
should be discarded (range.minlen) which is smaller than the discard
granularity, increase minlen to the discard granularity, since there's
no point submitting trim requests that the device will reject anyway.

Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Lukas Czerner 14 năm trước cách đây
mục cha
commit
5c2ed62fd4
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      fs/ext4/ioctl.c

+ 2 - 0
fs/ext4/ioctl.c

@@ -348,6 +348,8 @@ mext_out:
 		    sizeof(range)))
 		    sizeof(range)))
 			return -EFAULT;
 			return -EFAULT;
 
 
+		range.minlen = max((unsigned int)range.minlen,
+				   q->limits.discard_granularity);
 		ret = ext4_trim_fs(sb, &range);
 		ret = ext4_trim_fs(sb, &range);
 		if (ret < 0)
 		if (ret < 0)
 			return ret;
 			return ret;