blob: 708705062216fd7a4366eca9b4ee63890ab80cfd [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * NFS internal definitions
3 */
4
Andy Adamsoneedc0202009-04-01 09:22:41 -04005#include "nfs4_fs.h"
David Howellsf7b422b2006-06-09 09:34:33 -04006#include <linux/mount.h>
Eric Parisf9c3a382008-03-05 14:20:18 -05007#include <linux/security.h>
David Howellsf7b422b2006-06-09 09:34:33 -04008
David Howells08734042009-04-03 16:42:42 +01009#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
10
David Howells54ceac42006-08-22 20:06:13 -040011struct nfs_string;
David Howells54ceac42006-08-22 20:06:13 -040012
13/* Maximum number of readahead requests
14 * FIXME: this should really be a sysctl so that users may tune it to suit
15 * their needs. People that do NFS over a slow network, might for
16 * instance want to reduce it to something closer to 1 for improved
17 * interactive response.
18 */
19#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
20
Andy Adamsoneedc0202009-04-01 09:22:41 -040021/*
22 * Determine if sessions are in use.
23 */
24static inline int nfs4_has_session(const struct nfs_client *clp)
25{
26#ifdef CONFIG_NFS_V4_1
27 if (clp->cl_session)
28 return 1;
29#endif /* CONFIG_NFS_V4_1 */
30 return 0;
31}
32
Alexandros Batsakisd8cb1a72009-12-05 13:29:53 -050033static inline int nfs4_has_persistent_session(const struct nfs_client *clp)
34{
35#ifdef CONFIG_NFS_V4_1
36 if (nfs4_has_session(clp))
37 return (clp->cl_session->flags & SESSION4_PERSIST);
38#endif /* CONFIG_NFS_V4_1 */
39 return 0;
40}
41
David Howellsf7b422b2006-06-09 09:34:33 -040042struct nfs_clone_mount {
43 const struct super_block *sb;
44 const struct dentry *dentry;
45 struct nfs_fh *fh;
46 struct nfs_fattr *fattr;
47 char *hostname;
48 char *mnt_path;
Chuck Lever6677d092007-12-10 14:59:06 -050049 struct sockaddr *addr;
50 size_t addrlen;
David Howellsf7b422b2006-06-09 09:34:33 -040051 rpc_authflavor_t authflavor;
52};
53
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040054/*
Chuck Levera14017d2009-06-17 18:02:12 -070055 * Note: RFC 1813 doesn't limit the number of auth flavors that
56 * a server can return, so make something up.
57 */
58#define NFS_MAX_SECFLAVORS (12)
59
60/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -040061 * Value used if the user did not specify a port value.
62 */
63#define NFS_UNSPEC_PORT (-1)
64
65/*
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -040066 * Maximum number of pages that readdir can use for creating
67 * a vmapped array of pages.
68 */
69#define NFS_MAX_READDIR_PAGES 8
70
71/*
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040072 * In-kernel mount arguments
73 */
74struct nfs_parsed_mount_data {
75 int flags;
76 int rsize, wsize;
77 int timeo, retrans;
78 int acregmin, acregmax,
79 acdirmin, acdirmax;
80 int namlen;
David Howellsb797cac2009-04-03 16:42:48 +010081 unsigned int options;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040082 unsigned int bsize;
83 unsigned int auth_flavor_len;
84 rpc_authflavor_t auth_flavors[1];
85 char *client_address;
Chuck Lever764302c2009-09-08 19:50:03 -040086 unsigned int version;
Mike Sager3fd5be92009-04-01 09:21:48 -040087 unsigned int minorversion;
David Howells08734042009-04-03 16:42:42 +010088 char *fscache_uniq;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040089
90 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050091 struct sockaddr_storage address;
92 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040093 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040094 u32 version;
Chuck Lever4cfd74f2009-09-08 19:49:47 -040095 int port;
Chuck Lever78fa7012008-03-14 14:10:15 -040096 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040097 } mount_server;
98
99 struct {
Chuck Lever4c568012007-12-10 14:59:28 -0500100 struct sockaddr_storage address;
101 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400102 char *hostname;
103 char *export_path;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400104 int port;
Chuck Lever78fa7012008-03-14 14:10:15 -0400105 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400106 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -0500107
108 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -0400109};
110
Chuck Lever146ec942008-12-23 15:21:34 -0500111/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -0500112struct nfs_mount_request {
113 struct sockaddr *sap;
114 size_t salen;
115 char *hostname;
116 char *dirpath;
117 u32 version;
118 unsigned short protocol;
119 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -0500120 int noresvport;
Chuck Lever8e02f6b2009-06-17 18:02:13 -0700121 unsigned int *auth_flav_len;
122 rpc_authflavor_t *auth_flavs;
Chuck Leverc5d120f2008-12-23 15:21:35 -0500123};
124
125extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever0b524122009-08-09 15:09:30 -0400126extern void nfs_umount(const struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -0500127
David Howells24c8dbb2006-08-22 20:06:10 -0400128/* client.c */
David Howells54ceac42006-08-22 20:06:13 -0400129extern struct rpc_program nfs_program;
130
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000131extern void nfs_cleanup_cb_ident_idr(void);
David Howells24c8dbb2006-08-22 20:06:10 -0400132extern void nfs_put_client(struct nfs_client *);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000133extern struct nfs_client *nfs4_find_client_no_ident(const struct sockaddr *);
134extern struct nfs_client *nfs4_find_client_ident(int);
135extern struct nfs_client *
Andy Adamson778be232011-01-25 15:38:01 +0000136nfs4_find_client_sessionid(const struct sockaddr *, struct nfs4_sessionid *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400137extern struct nfs_server *nfs_create_server(
138 const struct nfs_parsed_mount_data *,
139 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -0400140extern struct nfs_server *nfs4_create_server(
141 const struct nfs_parsed_mount_data *,
142 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -0400143extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
144 struct nfs_fh *);
145extern void nfs_free_server(struct nfs_server *server);
146extern struct nfs_server *nfs_clone_server(struct nfs_server *,
147 struct nfs_fh *,
148 struct nfs_fattr *);
Andy Adamson76db6d92009-04-01 09:22:38 -0400149extern void nfs_mark_client_ready(struct nfs_client *clp, int state);
Benny Halevy008f55d2009-04-01 09:22:50 -0400150extern int nfs4_check_client_ready(struct nfs_client *clp);
Andy Adamsond83217c2011-03-01 01:34:17 +0000151extern struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
152 const struct sockaddr *ds_addr,
153 int ds_addrlen, int ds_proto);
David Howells6aaca562006-08-22 20:06:13 -0400154#ifdef CONFIG_PROC_FS
155extern int __init nfs_fs_proc_init(void);
156extern void nfs_fs_proc_exit(void);
157#else
158static inline int nfs_fs_proc_init(void)
159{
160 return 0;
161}
162static inline void nfs_fs_proc_exit(void)
163{
164}
165#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400166
David Howells7d4e2742006-08-22 20:06:07 -0400167/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400168#ifdef CONFIG_NFS_V4
169extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
170#else
171static inline
172struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
173{
174 return ERR_PTR(-ENOENT);
175}
176#endif
177
178/* callback_xdr.c */
179extern struct svc_version nfs4_callback_version1;
Alexandros Batsakis07bccc22009-12-05 13:19:01 -0500180extern struct svc_version nfs4_callback_version4;
David Howellsf7b422b2006-06-09 09:34:33 -0400181
182/* pagelist.c */
183extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700184extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400185extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700186extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400187extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700188extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400189
David Howellsf7b422b2006-06-09 09:34:33 -0400190extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700191extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400192
193/* nfs2xdr.c */
Chuck Lever85828492010-12-14 14:55:00 +0000194extern int nfs_stat_to_errno(enum nfs_stat);
David Howellsf7b422b2006-06-09 09:34:33 -0400195extern struct rpc_procinfo nfs_procedures[];
Chuck Lever573c4e12010-12-14 14:58:11 +0000196extern int nfs2_decode_dirent(struct xdr_stream *,
197 struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400198
199/* nfs3xdr.c */
200extern struct rpc_procinfo nfs3_procedures[];
Chuck Lever573c4e12010-12-14 14:58:11 +0000201extern int nfs3_decode_dirent(struct xdr_stream *,
202 struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400203
204/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400205#ifdef CONFIG_NFS_V4
Chuck Lever573c4e12010-12-14 14:58:11 +0000206extern int nfs4_decode_dirent(struct xdr_stream *,
207 struct nfs_entry *, int);
David Howells7d4e2742006-08-22 20:06:07 -0400208#endif
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500209#ifdef CONFIG_NFS_V4_1
210extern const u32 nfs41_maxread_overhead;
211extern const u32 nfs41_maxwrite_overhead;
212#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400213
214/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700215#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400216extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700217#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400218
Andy Adamsond83217c2011-03-01 01:34:17 +0000219extern int nfs4_init_ds_session(struct nfs_client *clp);
220
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400221/* proc.c */
222void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
Andy Adamson45a52a02011-03-01 01:34:08 +0000223extern int nfs_init_client(struct nfs_client *clp,
224 const struct rpc_timeout *timeparms,
225 const char *ip_addr, rpc_authflavor_t authflavour,
226 int noresvport);
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400227
Trond Myklebust979df722006-07-25 11:28:19 -0400228/* dir.c */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000229extern int nfs_access_cache_shrinker(struct shrinker *shrink,
230 int nr_to_scan, gfp_t gfp_mask);
Trond Myklebust979df722006-07-25 11:28:19 -0400231
David Howellsf7b422b2006-06-09 09:34:33 -0400232/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500233extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400234extern struct inode *nfs_alloc_inode(struct super_block *sb);
235extern void nfs_destroy_inode(struct inode *);
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100236extern int nfs_write_inode(struct inode *, struct writeback_control *);
Al Virob57922d2010-06-07 14:34:48 -0400237extern void nfs_evict_inode(struct inode *);
David Howellsf7b422b2006-06-09 09:34:33 -0400238#ifdef CONFIG_NFS_V4
Al Virob57922d2010-06-07 14:34:48 -0400239extern void nfs4_evict_inode(struct inode *);
David Howellsf7b422b2006-06-09 09:34:33 -0400240#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400241void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400242extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400243
244/* super.c */
David Howells54ceac42006-08-22 20:06:13 -0400245extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400246#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400247extern struct file_system_type nfs4_xdev_fs_type;
248extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400249#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200250
David Howellsf7b422b2006-06-09 09:34:33 -0400251extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200252
David Howellsf7b422b2006-06-09 09:34:33 -0400253extern int __init register_nfs_fs(void);
254extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400255extern void nfs_sb_active(struct super_block *sb);
256extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400257
258/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400259extern char *nfs_path(const char *base,
260 const struct dentry *droot,
261 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400262 char *buffer, ssize_t buflen);
David Howells36d43a42011-01-14 18:45:42 +0000263extern struct vfsmount *nfs_d_automount(struct path *path);
David Howellsf7b422b2006-06-09 09:34:33 -0400264
David Howells54ceac42006-08-22 20:06:13 -0400265/* getroot.c */
266extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400267#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400268extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
269
Trond Myklebust815409d2010-04-16 16:22:46 -0400270extern int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh);
David Howells7d4e2742006-08-22 20:06:07 -0400271#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400272
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400273/* read.c */
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000274extern int nfs_initiate_read(struct nfs_read_data *data, struct rpc_clnt *clnt,
275 const struct rpc_call_ops *call_ops);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400276extern void nfs_read_prepare(struct rpc_task *task, void *calldata);
277
Andy Adamsondef6ed72009-04-01 09:22:26 -0400278/* write.c */
Fred Isamane0c2b382011-03-23 13:27:53 +0000279extern void nfs_commit_free(struct nfs_write_data *p);
Fred Isamana69aef12011-03-03 15:13:47 +0000280extern int nfs_initiate_write(struct nfs_write_data *data,
281 struct rpc_clnt *clnt,
282 const struct rpc_call_ops *call_ops,
283 int how);
Andy Adamsondef6ed72009-04-01 09:22:26 -0400284extern void nfs_write_prepare(struct rpc_task *task, void *calldata);
Fred Isamane0c2b382011-03-23 13:27:53 +0000285extern int nfs_initiate_commit(struct nfs_write_data *data,
286 struct rpc_clnt *clnt,
287 const struct rpc_call_ops *call_ops,
288 int how);
289extern void nfs_init_commit(struct nfs_write_data *data,
290 struct list_head *head,
291 struct pnfs_layout_segment *lseg);
292void nfs_retry_commit(struct list_head *page_list,
293 struct pnfs_layout_segment *lseg);
294void nfs_commit_clear_lock(struct nfs_inode *nfsi);
295void nfs_commitdata_release(void *data);
296void nfs_commit_release_pages(struct nfs_write_data *data);
297
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400298#ifdef CONFIG_MIGRATION
299extern int nfs_migrate_page(struct address_space *,
300 struct page *, struct page *);
301#else
302#define nfs_migrate_page NULL
303#endif
Andy Adamsondef6ed72009-04-01 09:22:26 -0400304
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400305/* nfs4proc.c */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000306extern void nfs4_reset_read(struct rpc_task *task, struct nfs_read_data *data);
Andy Adamson45a52a02011-03-01 01:34:08 +0000307extern int nfs4_init_client(struct nfs_client *clp,
308 const struct rpc_timeout *timeparms,
309 const char *ip_addr,
310 rpc_authflavor_t authflavour,
311 int noresvport);
Fred Isamana69aef12011-03-03 15:13:47 +0000312extern void nfs4_reset_write(struct rpc_task *task, struct nfs_write_data *data);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400313extern int _nfs4_call_sync(struct nfs_server *server,
314 struct rpc_message *msg,
315 struct nfs4_sequence_args *args,
316 struct nfs4_sequence_res *res,
317 int cache_reply);
318extern int _nfs4_call_sync_session(struct nfs_server *server,
319 struct rpc_message *msg,
320 struct nfs4_sequence_args *args,
321 struct nfs4_sequence_res *res,
322 int cache_reply);
323
Andy Adamson557134a2009-04-01 09:21:53 -0400324/*
David Howellsf7b422b2006-06-09 09:34:33 -0400325 * Determine the device name as a string
326 */
327static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400328 const struct dentry *dentry,
329 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400330{
David Howells54ceac42006-08-22 20:06:13 -0400331 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
332 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400333}
334
335/*
336 * Determine the actual block size (and log2 thereof)
337 */
338static inline
339unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
340{
341 /* make sure blocksize is a power of two */
342 if ((bsize & (bsize - 1)) || nrbitsp) {
343 unsigned char nrbits;
344
345 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
346 ;
347 bsize = 1 << nrbits;
348 if (nrbitsp)
349 *nrbitsp = nrbits;
350 }
351
352 return bsize;
353}
354
355/*
356 * Calculate the number of 512byte blocks used.
357 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400358static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400359{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400360 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400361 return (used > ULONG_MAX) ? ULONG_MAX : used;
362}
363
364/*
365 * Compute and set NFS server blocksize
366 */
367static inline
368unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
369{
370 if (bsize < NFS_MIN_FILE_IO_SIZE)
371 bsize = NFS_DEF_FILE_IO_SIZE;
372 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
373 bsize = NFS_MAX_FILE_IO_SIZE;
374
375 return nfs_block_bits(bsize, nrbitsp);
376}
377
378/*
379 * Determine the maximum file size for a superblock
380 */
381static inline
382void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
383{
384 sb->s_maxbytes = (loff_t)maxfilesize;
385 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
386 sb->s_maxbytes = MAX_LFS_FILESIZE;
387}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500388
389/*
390 * Determine the number of bytes of data the page contains
391 */
392static inline
393unsigned int nfs_page_length(struct page *page)
394{
395 loff_t i_size = i_size_read(page->mapping->host);
396
397 if (i_size > 0) {
398 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
399 if (page->index < end_index)
400 return PAGE_CACHE_SIZE;
401 if (page->index == end_index)
402 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
403 }
404 return 0;
405}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400406
407/*
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500408 * Convert a umode to a dirent->d_type
409 */
410static inline
411unsigned char nfs_umode_to_dtype(umode_t mode)
412{
413 return (mode >> 12) & 15;
414}
415
416/*
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400417 * Determine the number of pages in an array of length 'len' and
418 * with a base offset of 'base'
419 */
420static inline
421unsigned int nfs_page_array_len(unsigned int base, size_t len)
422{
423 return ((unsigned long)len + (unsigned long)base +
424 PAGE_SIZE - 1) >> PAGE_SHIFT;
425}
Trond Myklebust0110ee12009-12-07 09:00:24 -0500426
427/*
428 * Helper for restarting RPC calls in the possible presence of NFSv4.1
429 * sessions.
430 */
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400431static inline int nfs_restart_rpc(struct rpc_task *task, const struct nfs_client *clp)
Trond Myklebust0110ee12009-12-07 09:00:24 -0500432{
433 if (nfs4_has_session(clp))
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400434 return rpc_restart_call_prepare(task);
435 return rpc_restart_call(task);
Trond Myklebust0110ee12009-12-07 09:00:24 -0500436}