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: Tejun Heo <tj@kernel.org> Acked-by: J. Bruce Fields <bfields@redhat.com> Tested-by: J. Bruce Fields <bfields@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
801cb2d62d
commit
ebd6c70714
1 changed files with 2 additions and 3 deletions
|
@ -242,9 +242,8 @@ kmem_cache *slab)
|
||||||
if (!stid)
|
if (!stid)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (!idr_pre_get(stateids, GFP_KERNEL))
|
new_id = idr_alloc(stateids, stid, min_stateid, 0, GFP_KERNEL);
|
||||||
goto out_free;
|
if (new_id < 0)
|
||||||
if (idr_get_new_above(stateids, stid, min_stateid, &new_id))
|
|
||||||
goto out_free;
|
goto out_free;
|
||||||
stid->sc_client = cl;
|
stid->sc_client = cl;
|
||||||
stid->sc_type = 0;
|
stid->sc_type = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue