diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-08-20 18:33:25 +0300 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-08-20 18:35:33 +0300 |
commit | 3bde7afdabe9f37974af806abe646c2ca43c67c7 (patch) | |
tree | c75217c8e861c6794193acdf055b99cc447453a7 /fs/nfs/read.c | |
parent | 14abcb0bf59a30cf65a74f6c6f53974cd7224bc6 (diff) | |
download | linux-3bde7afdabe9f37974af806abe646c2ca43c67c7.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c index a8421d9dab6a..0d42573d423d 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); |