aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jfs/jfs_discard.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2012-10-17jfs: Fix FITRIM argument handlingLukas Czerner1-6/+10
Currently when 'range->start' is beyond the end of file system nothing is done and that fact is ignored, where in fact we should return EINVAL. The same problem is when 'range.len' is smaller than file system block. Fix this by adding check for such conditions and return EINVAL appropriately. Signed-off-by: Lukas Czerner <lczerner@redhat.com> Acked-by: Tino Reichardt <milky-kernel@mcmilk.de> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
2012-09-17fs/jfs: TRIM support for JFS FilesystemTino Reichardt1-0/+117
This patch adds support for the two linux interfaces of the discard/TRIM command for SSD devices and sparse/thinly-provisioned LUNs. JFS will support batched discard via FITRIM ioctl and online discard with the discard mount option. Signed-off-by: Tino Reichardt <list-jfs@mcmilk.de> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>