diff options
| author | 2019-04-07 13:59:07 -0400 | |
|---|---|---|
| committer | 2019-04-25 14:18:14 -0400 | |
| commit | 28b1d3f5a772b705ca76df620eb9f686aa2d0b4c (patch) | |
| tree | 4966c8e010ce5e1876b0d707e340608c9ea97fbc /fs/nfs/direct.c | |
| parent | NFS: Fix up NFS I/O subrequest creation (diff) | |
| download | wireguard-linux-28b1d3f5a772b705ca76df620eb9f686aa2d0b4c.tar.xz wireguard-linux-28b1d3f5a772b705ca76df620eb9f686aa2d0b4c.zip  | |
NFS: Remove unused argument from nfs_create_request()
All the callers of nfs_create_request() are now creating page group
heads, so we can remove the redundant 'last' page argument.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/direct.c')
| -rw-r--r-- | fs/nfs/direct.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/direct.c b/fs/nfs/direct.c index 0fd811ac08b5..2d301a1a73e2 100644 --- a/fs/nfs/direct.c +++ b/fs/nfs/direct.c @@ -492,7 +492,7 @@ static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,  			struct nfs_page *req;  			unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);  			/* XXX do we need to do the eof zeroing found in async_filler? */ -			req = nfs_create_request(dreq->ctx, pagevec[i], NULL, +			req = nfs_create_request(dreq->ctx, pagevec[i],  						 pgbase, req_len);  			if (IS_ERR(req)) {  				result = PTR_ERR(req); @@ -899,7 +899,7 @@ static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,  			struct nfs_page *req;  			unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase); -			req = nfs_create_request(dreq->ctx, pagevec[i], NULL, +			req = nfs_create_request(dreq->ctx, pagevec[i],  						 pgbase, req_len);  			if (IS_ERR(req)) {  				result = PTR_ERR(req);  | 
