Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d473d37 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFSv4.1: nfs4_alloc_slots doesn't need zeroing



All that memory is going to be initialised to non-zero by
nfs4_add_and_init_slots anyway.

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 43095d39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5658,7 +5658,7 @@ int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)

static struct nfs4_slot *nfs4_alloc_slots(u32 max_slots, gfp_t gfp_flags)
{
	return kcalloc(max_slots, sizeof(struct nfs4_slot), gfp_flags);
	return kmalloc_array(max_slots, sizeof(struct nfs4_slot), gfp_flags);
}

static void nfs4_add_and_init_slots(struct nfs4_slot_table *tbl,