aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/read.c
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@primarydata.com>2017-08-20 11:33:25 -0400
committerTrond Myklebust <trond.myklebust@primarydata.com>2017-08-20 11:35:33 -0400
commit3bde7afdabe9f37974af806abe646c2ca43c67c7 (patch)
treec75217c8e861c6794193acdf055b99cc447453a7 /fs/nfs/read.c
parent14abcb0bf59a30cf65a74f6c6f53974cd7224bc6 (diff)
downloadlinux-3bde7afdabe9f37974af806abe646c2ca43c67c7.tar.gz
NFS: Remove unused parameter gfp_flags from nfs_pageio_init()
Now that the mirror allocation has been moved, the parameter can go. Also remove the redundant symbol export. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/read.c')
-rw-r--r--fs/nfs/read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c
index a8421d9dab6a12..0d42573d423d6d 100644
--- a/fs/nfs/read.c
+++ b/fs/nfs/read.c
@@ -68,7 +68,7 @@ void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
pg_ops = server->pnfs_curr_ld->pg_read_ops;
#endif
nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
- server->rsize, 0, GFP_KERNEL);
+ server->rsize, 0);
}
EXPORT_SYMBOL_GPL(nfs_pageio_init_read);