summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.com>2017-08-18 17:12:51 +1000
committerTrond Myklebust <trond.myklebust@primarydata.com>2017-09-06 12:31:15 -0400
commit237f8306c30206d997e265ff46652e602a50824f (patch)
treeed84a06c04bdbff5c6d033c70c89da012298c95c /fs
parent9590d083c1bb1419b7992609d1a0a3e3517d3893 (diff)
downloadop-kernel-dev-237f8306c30206d997e265ff46652e602a50824f.zip
op-kernel-dev-237f8306c30206d997e265ff46652e602a50824f.tar.gz
NFS: don't expect errors from mempool_alloc().
Commit fbe77c30e9ab ("NFS: move rw_mode to nfs_pageio_header") reintroduced some pointless code that commit 518662e0fcb9 ("NFS: fix usage of mempools.") had recently removed. Remove it again. Cc: Benjamin Coddington <bcodding@redhat.com> Signed-off-by: NeilBrown <neilb@suse.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs/write.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index 1a877d1..ae26775 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -102,10 +102,8 @@ static struct nfs_pgio_header *nfs_writehdr_alloc(void)
{
struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
- if (p) {
- memset(p, 0, sizeof(*p));
- p->rw_mode = FMODE_WRITE;
- }
+ memset(p, 0, sizeof(*p));
+ p->rw_mode = FMODE_WRITE;
return p;
}
OpenPOWER on IntegriCloud