diff options
Diffstat (limited to 'fs/nfs/nfs4_fs.h')
-rw-r--r-- | fs/nfs/nfs4_fs.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index 1be36cf65bfc..d4cfacc40003 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 *); | |||
259 | extern int nfs4_init_session(struct nfs_server *server); | 259 | extern int nfs4_init_session(struct nfs_server *server); |
260 | extern int nfs4_proc_get_lease_time(struct nfs_client *clp, | 260 | extern int nfs4_proc_get_lease_time(struct nfs_client *clp, |
261 | struct nfs_fsinfo *fsinfo); | 261 | struct nfs_fsinfo *fsinfo); |
262 | |||
263 | static inline bool | ||
264 | is_ds_only_client(struct nfs_client *clp) | ||
265 | { | ||
266 | return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) == | ||
267 | EXCHGID4_FLAG_USE_PNFS_DS; | ||
268 | } | ||
262 | #else /* CONFIG_NFS_v4_1 */ | 269 | #else /* CONFIG_NFS_v4_1 */ |
263 | static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server) | 270 | static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server) |
264 | { | 271 | { |
@@ -276,6 +283,12 @@ static inline int nfs4_init_session(struct nfs_server *server) | |||
276 | { | 283 | { |
277 | return 0; | 284 | return 0; |
278 | } | 285 | } |
286 | |||
287 | static inline bool | ||
288 | is_ds_only_client(struct nfs_client *clp) | ||
289 | { | ||
290 | return false; | ||
291 | } | ||
279 | #endif /* CONFIG_NFS_V4_1 */ | 292 | #endif /* CONFIG_NFS_V4_1 */ |
280 | 293 | ||
281 | extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[]; | 294 | extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[]; |