diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-07 15:36:43 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-12 16:04:29 +0300 |
commit | 66dbfabf10d3cb68ee01df60b11c0b3777a4217b (patch) | |
tree | a25c71b81c32dd64769108c9b0125c8b8e5715f0 /fs/overlayfs/dir.c | |
parent | 97e2dee9752bbd0eddfaec47e8036d35947521d9 (diff) | |
download | linux-66dbfabf10d3cb68ee01df60b11c0b3777a4217b.tar.xz |
ovl: stack fileattr ops
Add stacking for the fileattr operations.
Add hack for calling security_file_ioctl() for now. Probably better to
have a pair of specific hooks for these operations.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/overlayfs/dir.c')
-rw-r--r-- | fs/overlayfs/dir.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/overlayfs/dir.c b/fs/overlayfs/dir.c index 836f14b9d3a6..93efe7048a77 100644 --- a/fs/overlayfs/dir.c +++ b/fs/overlayfs/dir.c @@ -1301,4 +1301,6 @@ const struct inode_operations ovl_dir_inode_operations = { .listxattr = ovl_listxattr, .get_acl = ovl_get_acl, .update_time = ovl_update_time, + .fileattr_get = ovl_fileattr_get, + .fileattr_set = ovl_fileattr_set, }; |