idr: Delete idr_find_ext function
authorMatthew Wilcox <mawilcox@microsoft.com>
Tue, 28 Nov 2017 15:01:24 +0000 (10:01 -0500)
committerMatthew Wilcox <mawilcox@microsoft.com>
Tue, 6 Feb 2018 21:40:32 +0000 (16:40 -0500)
Simply changing idr_remove's 'id' argument to 'unsigned long' works
for all callers.

Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
include/linux/idr.h
net/sched/act_api.c
net/sched/cls_api.c
net/sched/cls_flower.c

index f1299c4dc45fe1b73d636fe7e6f5d6cc59f2838c..7867d61175351264d710dcf66fbf2f711d3bb22f 100644 (file)
@@ -179,16 +179,11 @@ static inline void idr_preload_end(void)
  * This function can be called under rcu_read_lock(), given that the leaf
  * pointers lifetimes are correctly managed.
  */
-static inline void *idr_find_ext(const struct idr *idr, unsigned long id)
+static inline void *idr_find(const struct idr *idr, unsigned long id)
 {
        return radix_tree_lookup(&idr->idr_rt, id);
 }
 
-static inline void *idr_find(const struct idr *idr, int id)
-{
-       return idr_find_ext(idr, id);
-}
-
 /**
  * idr_for_each_entry - iterate over an idr's elements of a given type
  * @idr:     idr handle
index 1572466be0315b385b397e77e5b8223db7048c99..89e9189ab35c7ba54f32d237273adfd108991be8 100644 (file)
@@ -222,7 +222,7 @@ static struct tc_action *tcf_idr_lookup(u32 index, struct tcf_idrinfo *idrinfo)
        struct tc_action *p = NULL;
 
        spin_lock_bh(&idrinfo->lock);
-       p = idr_find_ext(&idrinfo->action_idr, index);
+       p = idr_find(&idrinfo->action_idr, index);
        spin_unlock_bh(&idrinfo->lock);
 
        return p;
index 6d0e9bc4c78280e099827d8994029508362f9606..802ac9d1eaab2f7428c69629337d9dfab99fcf7b 100644 (file)
@@ -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)
index 0d1b0c11de347a8793eae517191999ac7e6b6e78..2162e1c1f382059ecc7f54608164389f871cb2b1 100644 (file)
@@ -334,7 +334,7 @@ static void *fl_get(struct tcf_proto *tp, u32 handle)
 {
        struct cls_fl_head *head = rtnl_dereference(tp->root);
 
-       return idr_find_ext(&head->handle_idr, handle);
+       return idr_find(&head->handle_idr, handle);
 }
 
 static const struct nla_policy fl_policy[TCA_FLOWER_MAX + 1] = {