NFS: don't expect errors from mempool_alloc().
Commitfbe77c30e9
("NFS: move rw_mode to nfs_pageio_header") reintroduced some pointless code that commit518662e0fc
("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>
This commit is contained in:
parent
9590d083c1
commit
237f8306c3
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue