diff options
author | Hongbo Li <lihongbo22@huawei.com> | 2024-08-26 11:16:59 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2024-11-14 17:56:13 +0100 |
commit | 919cc964abdb071f50c8f03e3b36fe0b5c60ef0d (patch) | |
tree | 8dcfb8e6a7b22187a0dcca2e912acae94c42d9cf /fs/ubifs | |
parent | ubifs: Display the inode number when orphan twice happens (diff) | |
download | linux-919cc964abdb071f50c8f03e3b36fe0b5c60ef0d.tar.xz linux-919cc964abdb071f50c8f03e3b36fe0b5c60ef0d.zip |
ubifs: remove unused ioctl flags GETFLAGS/SETFLAGS
In the ubifs, ubifs_fileattr_get and ubifs_fileattr_set
have been implemented, GETFLAGS and SETFLAGS ioctl are not
handled in filesystem's own ioctl helper. Additionally,
these flags' cases are not handled in ubifs's ioctl helper,
so we can remove them.
Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/ioctl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/ubifs/ioctl.c b/fs/ubifs/ioctl.c index d79cabe193c3..2c99349cf537 100644 --- a/fs/ubifs/ioctl.c +++ b/fs/ubifs/ioctl.c @@ -213,12 +213,6 @@ long ubifs_ioctl(struct file *file, unsigned int cmd, unsigned long arg) long ubifs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { switch (cmd) { - case FS_IOC32_GETFLAGS: - cmd = FS_IOC_GETFLAGS; - break; - case FS_IOC32_SETFLAGS: - cmd = FS_IOC_SETFLAGS; - break; case FS_IOC_SET_ENCRYPTION_POLICY: case FS_IOC_GET_ENCRYPTION_POLICY: case FS_IOC_GET_ENCRYPTION_POLICY_EX: |