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

Commit ebd6c707 authored by Tejun Heo's avatar Tejun Heo Committed by Linus Torvalds
Browse files

nfsd: convert to idr_alloc()



idr_get_new*() and friends are about to be deprecated.  Convert to the
new idr_alloc() interface.

Only compile-tested.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Acked-by: default avatarJ. Bruce Fields <bfields@redhat.com>
Tested-by: default avatarJ. Bruce Fields <bfields@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 801cb2d6
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -242,9 +242,8 @@ kmem_cache *slab)
	if (!stid)
		return NULL;

	if (!idr_pre_get(stateids, GFP_KERNEL))
		goto out_free;
	if (idr_get_new_above(stateids, stid, min_stateid, &new_id))
	new_id = idr_alloc(stateids, stid, min_stateid, 0, GFP_KERNEL);
	if (new_id < 0)
		goto out_free;
	stid->sc_client = cl;
	stid->sc_type = 0;