瀏覽代碼

cls_api: Convert to idr_alloc_u32

Use the new helper.

Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Matthew Wilcox 7 年之前
父節點
當前提交
9ce75499ac
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      net/sched/cls_api.c

+ 2 - 2
net/sched/cls_api.c

@@ -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;