fs/ntfs3: Add ioctl operation for directories (FITRIM)
authorNekun <nekokun@firemail.cc>
Mon, 30 Oct 2023 08:33:54 +0000 (08:33 +0000)
committerKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
Mon, 29 Jan 2024 09:05:09 +0000 (12:05 +0300)
commit1f5fa4b3b85ceb43f1053290f0ade037b50e6297
tree3ecc3a7b3483e9b59d82f836260630e606b2aee6
parent731ab1f9828800df871c5a7ab9ffe965317d3f15
fs/ntfs3: Add ioctl operation for directories (FITRIM)

While ntfs3 supports discards, FITRIM ioctl() command has defined
only for regular files. This may confuse users trying to invoke
`fstrim` utility with the directory argument (for example, call
`fstrim <mountpoint>` which is the common practice). In this case,
ioctl() returns -ENOTTY without any error messages in kernel ring
buffer, this may be easily interpreted as no support for discards
in ntfs3 driver.

Currently only FITRIM command implemented in ntfs_ioctl() and
passed inode used only for dereferencing NTFS superblock, so
no need for separate ioctl() handler for directories, just add
existing ntfs_ioctl() handler to ntfs_dir_operations.

Signed-off-by: Nekun <nekokun@firemail.cc>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
fs/ntfs3/dir.c
fs/ntfs3/file.c
fs/ntfs3/ntfs_fs.h