From: Andy Adamson <andros@xxxxxxxxxx> Remove the un-used is_ds_only_session. Move private function is_ds_only_client. Use EXCHGID4_FLAG_MASK_PNFS which includes the NON_PNFS role. Signed-off-by: Andy Adamson <andros@xxxxxxxxxx> --- fs/nfs/nfs4_fs.h | 13 +++++++++++++ include/linux/nfs4.h | 7 ------- include/linux/nfs_fs_sb.h | 10 ---------- 3 files changed, 13 insertions(+), 17 deletions(-) diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index 7a74740..5d84642 100644 --- a/fs/nfs/nfs4_fs.h +++ b/fs/nfs/nfs4_fs.h @@ -259,6 +259,13 @@ extern int nfs4_proc_destroy_session(struct nfs4_session *); extern int nfs4_init_session(struct nfs_server *server); extern int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo); + +static inline bool +is_ds_only_client(struct nfs_client *clp) +{ + return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) == + EXCHGID4_FLAG_USE_PNFS_DS; +} #else /* CONFIG_NFS_v4_1 */ static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server) { @@ -276,6 +283,12 @@ static inline int nfs4_init_session(struct nfs_server *server) { return 0; } + +static inline bool +is_ds_only_client(struct nfs_client *clp) +{ + return false; +} #endif /* CONFIG_NFS_V4_1 */ extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[]; diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index b32a792..134716e 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h @@ -131,13 +131,6 @@ #define EXCHGID4_FLAG_MASK_A 0x40070103 #define EXCHGID4_FLAG_MASK_R 0x80070103 -static inline bool -is_ds_only_session(u32 exchange_flags) -{ - u32 mask = EXCHGID4_FLAG_USE_PNFS_DS | EXCHGID4_FLAG_USE_PNFS_MDS; - return (exchange_flags & mask) == EXCHGID4_FLAG_USE_PNFS_DS; -} - #define SEQ4_STATUS_CB_PATH_DOWN 0x00000001 #define SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING 0x00000002 #define SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED 0x00000004 diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 017f835..b197563 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -87,16 +87,6 @@ struct nfs_client { #endif }; -static inline bool -is_ds_only_client(struct nfs_client *clp) -{ -#ifdef CONFIG_NFS_V4_1 - return is_ds_only_session(clp->cl_exchange_flags); -#else - return false; -#endif -} - /* * NFS client parameters stored in the superblock. */ -- 1.6.6 -- 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