diff options
author | Seth Forshee <seth.forshee@canonical.com> | 2016-08-29 08:46:36 -0500 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2016-10-01 07:32:32 +0200 |
commit | 703c73629f93464ce210f5ad92d0c1fb95bfbadf (patch) | |
tree | cec5f07b331dbce6f7189e474ef730d9d33236ac /fs/fuse/Makefile | |
parent | cb3ae6d25a5471be62bfe6ac1fccc0e91edeaba0 (diff) | |
download | linux-703c73629f93464ce210f5ad92d0c1fb95bfbadf.tar.bz2 |
fuse: Use generic xattr ops
In preparation for posix acl support, rework fuse to use xattr handlers and
the generic setxattr/getxattr/listxattr callbacks. Split the xattr code
out into it's own file, and promote symbols to module-global scope as
needed.
Functionally these changes have no impact, as fuse still uses a single
handler for all xattrs which uses the old callbacks.
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/Makefile')
-rw-r--r-- | fs/fuse/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/Makefile b/fs/fuse/Makefile index e95eeb445e58..448aa27ada00 100644 --- a/fs/fuse/Makefile +++ b/fs/fuse/Makefile @@ -5,4 +5,4 @@ obj-$(CONFIG_FUSE_FS) += fuse.o obj-$(CONFIG_CUSE) += cuse.o -fuse-objs := dev.o dir.o file.o inode.o control.o +fuse-objs := dev.o dir.o file.o inode.o control.o xattr.o |