diff options
author | Matthew Wilcox <mawilcox@microsoft.com> | 2017-11-28 18:01:24 +0300 |
---|---|---|
committer | Matthew Wilcox <mawilcox@microsoft.com> | 2018-02-07 00:40:32 +0300 |
commit | 322d884ba731e05ca79ae58e9dee1ef7dc4de504 (patch) | |
tree | 23646b0840d74b695f8e0b44f176283830c2cf8f /net/sched/cls_api.c | |
parent | 234a4624efe5629a777b4c00dbdf41dd8b7332db (diff) | |
download | linux-322d884ba731e05ca79ae58e9dee1ef7dc4de504.tar.xz |
idr: Delete idr_find_ext function
Simply changing idr_remove's 'id' argument to 'unsigned long' works
for all callers.
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Diffstat (limited to 'net/sched/cls_api.c')
-rw-r--r-- | net/sched/cls_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index 6d0e9bc4c782..802ac9d1eaab 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -434,7 +434,7 @@ static struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index) { struct tcf_net *tn = net_generic(net, tcf_net_id); - return idr_find_ext(&tn->idr, block_index); + return idr_find(&tn->idr, block_index); } static struct tcf_chain *tcf_block_chain_zero(struct tcf_block *block) |