diff options
Diffstat (limited to 'fs/nfs/internal.h')
| -rw-r--r-- | fs/nfs/internal.h | 81 | 
1 files changed, 54 insertions, 27 deletions
diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index 38da8c2b81a..f415cbf9f6c 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -88,8 +88,8 @@ struct nfs_parsed_mount_data {  	unsigned int		namlen;  	unsigned int		options;  	unsigned int		bsize; -	unsigned int		auth_flavor_len; -	rpc_authflavor_t	auth_flavors[1]; +	struct nfs_auth_info	auth_info; +	rpc_authflavor_t	selected_flavor;  	char			*client_address;  	unsigned int		version;  	unsigned int		minorversion; @@ -154,6 +154,7 @@ struct nfs_client *nfs_get_client(const struct nfs_client_initdata *,  				  rpc_authflavor_t);  int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *, struct nfs_fattr *);  void nfs_server_insert_lists(struct nfs_server *); +void nfs_server_remove_lists(struct nfs_server *);  void nfs_init_timeout_values(struct rpc_timeout *, int, unsigned int, unsigned int);  int nfs_init_server_rpcclient(struct nfs_server *, const struct rpc_timeout *t,  		rpc_authflavor_t); @@ -174,6 +175,9 @@ extern struct nfs_server *nfs4_create_server(  					struct nfs_subversion *);  extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,  						      struct nfs_fh *); +extern int nfs4_update_server(struct nfs_server *server, const char *hostname, +					struct sockaddr *sap, size_t salen, +					struct net *net);  extern void nfs_free_server(struct nfs_server *server);  extern struct nfs_server *nfs_clone_server(struct nfs_server *,  					   struct nfs_fh *, @@ -227,13 +231,21 @@ extern void nfs_destroy_writepagecache(void);  extern int __init nfs_init_directcache(void);  extern void nfs_destroy_directcache(void); -extern bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount);  extern void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,  			      struct nfs_pgio_header *hdr,  			      void (*release)(struct nfs_pgio_header *hdr));  void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos);  int nfs_iocounter_wait(struct nfs_io_counter *c); +extern const struct nfs_pageio_ops nfs_pgio_rw_ops; +struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *); +void nfs_rw_header_free(struct nfs_pgio_header *); +void nfs_pgio_data_release(struct nfs_pgio_data *); +int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *); +int nfs_initiate_pgio(struct rpc_clnt *, struct nfs_pgio_data *, +		      const struct rpc_call_ops *, int, int); +void nfs_free_request(struct nfs_page *req); +  static inline void nfs_iocounter_init(struct nfs_io_counter *c)  {  	c->flags = 0; @@ -266,6 +278,30 @@ extern const u32 nfs41_maxgetdevinfo_overhead;  extern struct rpc_procinfo nfs4_procedures[];  #endif +#ifdef CONFIG_NFS_V4_SECURITY_LABEL +extern struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags); +static inline void nfs4_label_free(struct nfs4_label *label) +{ +	if (label) { +		kfree(label->label); +		kfree(label); +	} +	return; +} + +static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) +{ +	if (nfs_server_capable(&nfsi->vfs_inode, NFS_CAP_SECURITY_LABEL)) +		nfsi->cache_validity |= NFS_INO_INVALID_LABEL; +} +#else +static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; } +static inline void nfs4_label_free(void *label) {} +static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) +{ +} +#endif /* CONFIG_NFS_V4_SECURITY_LABEL */ +  /* proc.c */  void nfs_close_context(struct nfs_open_context *ctx, int is_sync);  extern struct nfs_client *nfs_init_client(struct nfs_client *clp, @@ -273,6 +309,7 @@ extern struct nfs_client *nfs_init_client(struct nfs_client *clp,  			   const char *ip_addr);  /* dir.c */ +extern void nfs_force_use_readdirplus(struct inode *dir);  extern unsigned long nfs_access_cache_count(struct shrinker *shrink,  					    struct shrink_control *sc);  extern unsigned long nfs_access_cache_scan(struct shrinker *shrink, @@ -291,16 +328,14 @@ int nfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *)  int nfs_file_fsync_commit(struct file *, loff_t, loff_t, int);  loff_t nfs_file_llseek(struct file *, loff_t, int);  int nfs_file_flush(struct file *, fl_owner_t); -ssize_t nfs_file_read(struct kiocb *, const struct iovec *, unsigned long, loff_t); +ssize_t nfs_file_read(struct kiocb *, struct iov_iter *);  ssize_t nfs_file_splice_read(struct file *, loff_t *, struct pipe_inode_info *,  			     size_t, unsigned int);  int nfs_file_mmap(struct file *, struct vm_area_struct *); -ssize_t nfs_file_write(struct kiocb *, const struct iovec *, unsigned long, loff_t); +ssize_t nfs_file_write(struct kiocb *, struct iov_iter *);  int nfs_file_release(struct inode *, struct file *);  int nfs_lock(struct file *, int, struct file_lock *);  int nfs_flock(struct file *, int, struct file_lock *); -ssize_t nfs_file_splice_write(struct pipe_inode_info *, struct file *, loff_t *, -			      size_t, unsigned int);  int nfs_check_flags(int);  int nfs_setlease(struct file *, long, struct file_lock **); @@ -323,6 +358,7 @@ extern struct file_system_type nfs_xdev_fs_type;  extern struct file_system_type nfs4_xdev_fs_type;  extern struct file_system_type nfs4_referral_fs_type;  #endif +bool nfs_auth_info_match(const struct nfs_auth_info *, rpc_authflavor_t);  struct dentry *nfs_try_mount(int, const char *, struct nfs_mount_info *,  			struct nfs_subversion *);  void nfs_initialise_sb(struct super_block *); @@ -365,19 +401,11 @@ extern int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh, bool  struct nfs_pgio_completion_ops;  /* read.c */ -extern struct nfs_read_header *nfs_readhdr_alloc(void); -extern void nfs_readhdr_free(struct nfs_pgio_header *hdr);  extern void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, -			struct inode *inode, +			struct inode *inode, bool force_mds,  			const struct nfs_pgio_completion_ops *compl_ops); -extern int nfs_initiate_read(struct rpc_clnt *clnt, -			     struct nfs_read_data *data, -			     const struct rpc_call_ops *call_ops, int flags);  extern void nfs_read_prepare(struct rpc_task *task, void *calldata); -extern int nfs_generic_pagein(struct nfs_pageio_descriptor *desc, -			      struct nfs_pgio_header *hdr);  extern void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio); -extern void nfs_readdata_release(struct nfs_read_data *rdata);  /* super.c */  void nfs_clone_super(struct super_block *, struct nfs_mount_info *); @@ -392,19 +420,10 @@ int nfs_remount(struct super_block *sb, int *flags, char *raw_data);  /* write.c */  extern void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, -			struct inode *inode, int ioflags, +			struct inode *inode, int ioflags, bool force_mds,  			const struct nfs_pgio_completion_ops *compl_ops); -extern struct nfs_write_header *nfs_writehdr_alloc(void); -extern void nfs_writehdr_free(struct nfs_pgio_header *hdr); -extern int nfs_generic_flush(struct nfs_pageio_descriptor *desc, -			     struct nfs_pgio_header *hdr);  extern void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio); -extern void nfs_writedata_release(struct nfs_write_data *wdata);  extern void nfs_commit_free(struct nfs_commit_data *p); -extern int nfs_initiate_write(struct rpc_clnt *clnt, -			      struct nfs_write_data *data, -			      const struct rpc_call_ops *call_ops, -			      int how, int flags);  extern void nfs_write_prepare(struct rpc_task *task, void *calldata);  extern void nfs_commit_prepare(struct rpc_task *task, void *calldata);  extern int nfs_initiate_commit(struct rpc_clnt *clnt, @@ -417,6 +436,7 @@ extern void nfs_init_commit(struct nfs_commit_data *data,  			    struct nfs_commit_info *cinfo);  int nfs_scan_commit_list(struct list_head *src, struct list_head *dst,  			 struct nfs_commit_info *cinfo, int max); +unsigned long nfs_reqs_to_commit(struct nfs_commit_info *);  int nfs_scan_commit(struct inode *inode, struct list_head *dst,  		    struct nfs_commit_info *cinfo);  void nfs_mark_request_commit(struct nfs_page *req, @@ -445,6 +465,13 @@ extern int nfs_migrate_page(struct address_space *,  #define nfs_migrate_page NULL  #endif +/* unlink.c */ +extern struct rpc_task * +nfs_async_rename(struct inode *old_dir, struct inode *new_dir, +		 struct dentry *old_dentry, struct dentry *new_dentry, +		 void (*complete)(struct rpc_task *, struct nfs_renamedata *)); +extern int nfs_sillyrename(struct inode *dir, struct dentry *dentry); +  /* direct.c */  void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,  			      struct nfs_direct_req *dreq); @@ -455,7 +482,7 @@ static inline void nfs_inode_dio_wait(struct inode *inode)  extern ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq);  /* nfs4proc.c */ -extern void __nfs4_read_done_cb(struct nfs_read_data *); +extern void __nfs4_read_done_cb(struct nfs_pgio_data *);  extern struct nfs_client *nfs4_init_client(struct nfs_client *clp,  			    const struct rpc_timeout *timeparms,  			    const char *ip_addr);  | 
