diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-07 15:36:45 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-04-12 16:04:30 +0300 |
commit | 9ac29fd3f87ffdd993505d75e89714ab931cdedb (patch) | |
tree | c07a37e5114be64231929c0c4e275b0df576c542 /fs/fuse/Makefile | |
parent | 51db776a430edd7477a779be0dc5c6fef4a05884 (diff) | |
download | linux-9ac29fd3f87ffdd993505d75e89714ab931cdedb.tar.xz |
fuse: move ioctl to separate source file
Next patch will expand ioctl code and fuse/file.c is large enough as it is.
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 8c7021fb2cd4..0c48b35c058d 100644 --- a/fs/fuse/Makefile +++ b/fs/fuse/Makefile @@ -7,7 +7,7 @@ obj-$(CONFIG_FUSE_FS) += fuse.o obj-$(CONFIG_CUSE) += cuse.o obj-$(CONFIG_VIRTIO_FS) += virtiofs.o -fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o +fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o fuse-$(CONFIG_FUSE_DAX) += dax.o virtiofs-y := virtio_fs.o |