diff options
author | Vivek Goyal <vgoyal@redhat.com> | 2020-08-19 18:19:47 -0400 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2020-09-10 11:39:22 +0200 |
commit | 1dd539577c42b67da796e2e758e04171bb889779 (patch) | |
tree | ec3e67b9b630f9803c9f01d8ebaabb9a9db3ea1d /fs/fuse/Makefile | |
parent | 22f3787e9d95e72d1f09795f294fb010e2998f43 (diff) | |
download | lwn-1dd539577c42b67da796e2e758e04171bb889779.tar.gz lwn-1dd539577c42b67da796e2e758e04171bb889779.zip |
virtiofs: add a mount option to enable dax
Add a mount option to allow using dax with virtio_fs.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/Makefile')
-rw-r--r-- | fs/fuse/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/fuse/Makefile b/fs/fuse/Makefile index 3e8cebfb59b7..8c7021fb2cd4 100644 --- a/fs/fuse/Makefile +++ b/fs/fuse/Makefile @@ -7,5 +7,7 @@ obj-$(CONFIG_FUSE_FS) += fuse.o obj-$(CONFIG_CUSE) += cuse.o obj-$(CONFIG_VIRTIO_FS) += virtiofs.o -fuse-objs := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o -virtiofs-y += virtio_fs.o +fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o +fuse-$(CONFIG_FUSE_DAX) += dax.o + +virtiofs-y := virtio_fs.o |