diff options
author | Tom Haynes <thomas.haynes@primarydata.com> | 2016-06-14 13:41:28 -0700 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2016-07-13 15:40:48 -0400 |
commit | 9b9960a0ca4773e21c4b153ed355583946346b25 (patch) | |
tree | 0457348735ef01b8939925b56bb03e38c45195df /fs/nfsd/Makefile | |
parent | d7c920d1349ad78b9181d8933404e1a378da6feb (diff) |
nfsd: Add a super simple flex file server
Have a simple flex file server where the mds (NFSv4.1 or NFSv4.2)
is also the ds (NFSv3). I.e., the metadata and the data file are
the exact same file.
This will allow testing of the flex file client.
Simply add the "pnfs" export option to your export
in /etc/exports and mount from a client that supports
flex files.
Signed-off-by: Tom Haynes <loghyr@primarydata.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/Makefile')
-rw-r--r-- | fs/nfsd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/Makefile b/fs/nfsd/Makefile index 3ae5f3c77e28..5f5d3a76980c 100644 --- a/fs/nfsd/Makefile +++ b/fs/nfsd/Makefile @@ -20,3 +20,4 @@ nfsd-$(CONFIG_NFSD_V4) += nfs4proc.o nfs4xdr.o nfs4state.o nfs4idmap.o \ nfsd-$(CONFIG_NFSD_PNFS) += nfs4layouts.o nfsd-$(CONFIG_NFSD_BLOCKLAYOUT) += blocklayout.o blocklayoutxdr.o nfsd-$(CONFIG_NFSD_SCSILAYOUT) += blocklayout.o blocklayoutxdr.o +nfsd-$(CONFIG_NFSD_FLEXFILELAYOUT) += flexfilelayout.o flexfilelayoutxdr.o |