diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-07 15:36:44 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-12 16:04:30 +0300 |
commit | 8871d84c8f8b0c6bc2430cca3aa5f2e272596961 (patch) | |
tree | 2c1fc532ed858a9be91c184ff3415f2807b94020 /fs/ubifs/file.c | |
parent | 03eb60661332f46659634eb247821323e5dbc75e (diff) | |
download | linux-8871d84c8f8b0c6bc2430cca3aa5f2e272596961.tar.xz |
ubifs: convert to fileattr
Use the fileattr API to let the VFS handle locking, permission checking and
conversion.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Cc: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/file.c')
-rw-r--r-- | fs/ubifs/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c index 0e4b4be3aa26..2e4e1d159969 100644 --- a/fs/ubifs/file.c +++ b/fs/ubifs/file.c @@ -1648,6 +1648,8 @@ const struct inode_operations ubifs_file_inode_operations = { .getattr = ubifs_getattr, .listxattr = ubifs_listxattr, .update_time = ubifs_update_time, + .fileattr_get = ubifs_fileattr_get, + .fileattr_set = ubifs_fileattr_set, }; const struct inode_operations ubifs_symlink_inode_operations = { |