diff options
Diffstat (limited to 'fs/nfs/nfs4_fs.h')
| -rw-r--r-- | fs/nfs/nfs4_fs.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index 61bc3a32e1e..6ea07a3c75d 100644 --- a/fs/nfs/nfs4_fs.h +++ b/fs/nfs/nfs4_fs.h @@ -220,6 +220,7 @@ extern void nfs4_destroy_session(struct nfs4_session *session);  extern struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp);  extern int nfs4_proc_create_session(struct nfs_client *, int reset);  extern int nfs4_proc_destroy_session(struct nfs4_session *); +extern int nfs4_init_session(struct nfs_server *server);  #else /* CONFIG_NFS_v4_1 */  static inline int nfs4_setup_sequence(struct nfs_client *clp,  		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res, @@ -227,6 +228,11 @@ static inline int nfs4_setup_sequence(struct nfs_client *clp,  {  	return 0;  } + +static inline int nfs4_init_session(struct nfs_server *server) +{ +	return 0; +}  #endif /* CONFIG_NFS_V4_1 */  extern struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[];  |