diff options
Diffstat (limited to 'fs/nfs/internal.h')
| -rw-r--r-- | fs/nfs/internal.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index 2476dc69365..b777bdaba4c 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -165,7 +165,8 @@ extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,  extern void nfs_free_server(struct nfs_server *server);  extern struct nfs_server *nfs_clone_server(struct nfs_server *,  					   struct nfs_fh *, -					   struct nfs_fattr *); +					   struct nfs_fattr *, +					   rpc_authflavor_t);  extern void nfs_mark_client_ready(struct nfs_client *clp, int state);  extern int nfs4_check_client_ready(struct nfs_client *clp);  extern struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp, @@ -186,10 +187,10 @@ static inline void nfs_fs_proc_exit(void)  /* nfs4namespace.c */  #ifdef CONFIG_NFS_V4 -extern struct vfsmount *nfs_do_refmount(struct dentry *dentry); +extern struct vfsmount *nfs_do_refmount(struct rpc_clnt *client, struct dentry *dentry);  #else  static inline -struct vfsmount *nfs_do_refmount(struct dentry *dentry) +struct vfsmount *nfs_do_refmount(struct rpc_clnt *client, struct dentry *dentry)  {  	return ERR_PTR(-ENOENT);  } @@ -234,7 +235,6 @@ extern const u32 nfs41_maxwrite_overhead;  /* nfs4proc.c */  #ifdef CONFIG_NFS_V4  extern struct rpc_procinfo nfs4_procedures[]; -void nfs_fixup_secinfo_attributes(struct nfs_fattr *, struct nfs_fh *);  #endif  extern int nfs4_init_ds_session(struct nfs_client *clp);  |