mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 05:07:46 -04:00
cls_api: Convert to idr_alloc_u32
Use the new helper. Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user