Commit 9ce75499 authored by Matthew Wilcox's avatar Matthew Wilcox

cls_api: Convert to idr_alloc_u32

Use the new helper.
Signed-off-by: default avatarMatthew Wilcox <mawilcox@microsoft.com>
parent 339913a8
......@@ -381,8 +381,8 @@ static int tcf_block_insert(struct tcf_block *block, struct net *net,
struct tcf_net *tn = net_generic(net, tcf_net_id);
int err;
err = idr_alloc_ext(&tn->idr, block, NULL, block_index,
block_index + 1, GFP_KERNEL);
err = idr_alloc_u32(&tn->idr, block, &block_index, block_index,
GFP_KERNEL);
if (err)
return err;
block->index = block_index;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment