diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2018-09-28 16:43:23 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2018-09-28 16:43:23 +0200 |
commit | d123d8e1833c5d854b56f2a7da17cafd0a901df8 (patch) | |
tree | b90ca45d76440931fd8853013246f8a7916d0ce8 /fs/fuse/Makefile | |
parent | fuse: Use hash table to link processing request (diff) | |
download | linux-d123d8e1833c5d854b56f2a7da17cafd0a901df8.tar.xz linux-d123d8e1833c5d854b56f2a7da17cafd0a901df8.zip |
fuse: split out readdir.c
Directory reading code is about to grow larger, so split it out from dir.c
into a new source file.
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 60da84a86dab..f7b807bc1027 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 xattr.o acl.o +fuse-objs := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o |