From: Andy Adamson <andros@xxxxxxxxxx> Export nfsd4_pnfs_dlm_getdeviter for dlm cluster file system use. [was pnfsd: hardwire DLM cluster file layout get device iterator] Signed-off-by: David M. Richter <richterd@xxxxxxxxxxxxxx> Signed-off-by: Frank Filz <ffilzlnx@xxxxxxxxxx> [pnfs-gfs2: return correct error value in GETDEVICEINFO] Signed-off-by: David M. Richter <richterd@xxxxxxxxxxxxxx> [Use the GFS2 iterator as the default file layout iterator.] Signed-off-by: Andy Adamson <andros@xxxxxxxxxx> [Add the pnfsd default file layout getdevice info] Signed-off-by: David M. Richter <richterd@xxxxxxxxxxxxxx> Signed-off-by: Frank Filz <ffilzlnx@xxxxxxxxxx> [pnfs-gfs2: return correct error value in GETDEVICEINFO] Signed-off-by: David M. Richter <richterd@xxxxxxxxxxxxxx> [pnfsd: move and rename nfsd4_pnfs_fl_getdeviter] Signed-off-by: Andy Adamson <andros@xxxxxxxxxx> Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxx> Acked-by: Steven Whitehouse <swhiteho@xxxxxxxxxx> [pnfsd: dev_iter: clean up export API] [pnfsd: dlm: fixup LAYOUT_NFSV4_1_FILES] Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxx> Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxxxxxx> --- fs/nfsd/nfs4pnfsdlm.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/fs/nfsd/nfs4pnfsdlm.c b/fs/nfsd/nfs4pnfsdlm.c index ddc2188..0a14f06 100644 --- a/fs/nfsd/nfs4pnfsdlm.c +++ b/fs/nfsd/nfs4pnfsdlm.c @@ -21,8 +21,11 @@ * ******************************************************************************/ +#include <linux/nfs4.h> +#include <linux/export.h> #include <linux/nfsd/debug.h> #include <linux/nfsd/nfs4pnfsdlm.h> +#include <linux/nfsd/nfs4layoutxdr.h> #include <linux/sunrpc/addr.h> #define NFSDDBG_FACILITY NFSDDBG_FILELAYOUT @@ -180,3 +183,29 @@ void nfsd4_pnfs_dlm_shutdown(void) } spin_unlock(&dlm_device_list_lock); } + +static int nfsd4_pnfs_dlm_getdeviter(struct super_block *sb, + u32 layout_type, + struct nfsd4_pnfs_dev_iter_res *res) +{ + if (layout_type != LAYOUT_NFSV4_1_FILES) { + printk(KERN_ERR "%s: ERROR: layout type isn't 'file' " + "(type: %x)\n", __func__, layout_type); + return -ENOTSUPP; + } + + res->gd_eof = 1; + if (res->gd_cookie) + return -ENOENT; + + res->gd_cookie = 1; + res->gd_verf = 1; + res->gd_devid = 1; + return 0; +} + +/* For use by DLM cluster file systems exported by pNFSD */ +const struct pnfs_export_operations pnfs_dlm_export_ops = { + .get_device_iter = nfsd4_pnfs_dlm_getdeviter, +}; +EXPORT_SYMBOL(pnfs_dlm_export_ops); -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html