diff options
| author | Matthew Wilcox <mawilcox@microsoft.com> | 2017-11-28 17:48:43 +0300 | 
|---|---|---|
| committer | Matthew Wilcox <mawilcox@microsoft.com> | 2018-02-07 00:40:31 +0300 | 
| commit | 9c160941403ba833c8e67981806ccae73ff7aca7 (patch) | |
| tree | 0c84ab081d997296163970f22097a981c6a3ca37 /net/sched/cls_basic.c | |
| parent | 6e6d301490936789ff57daaaaf63f44d928a4028 (diff) | |
| download | linux-9c160941403ba833c8e67981806ccae73ff7aca7.tar.xz | |
idr: Delete idr_remove_ext function
Simply changing idr_remove's 'id' argument to 'unsigned long' suffices
for all callers.
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Diffstat (limited to 'net/sched/cls_basic.c')
| -rw-r--r-- | net/sched/cls_basic.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sched/cls_basic.c b/net/sched/cls_basic.c index d333f5c5101d..121dff0a1763 100644 --- a/net/sched/cls_basic.c +++ b/net/sched/cls_basic.c @@ -120,7 +120,7 @@ static void basic_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack)  	list_for_each_entry_safe(f, n, &head->flist, link) {  		list_del_rcu(&f->link);  		tcf_unbind_filter(tp, &f->res); -		idr_remove_ext(&head->handle_idr, f->handle); +		idr_remove(&head->handle_idr, f->handle);  		if (tcf_exts_get_net(&f->exts))  			call_rcu(&f->rcu, basic_delete_filter);  		else @@ -138,7 +138,7 @@ static int basic_delete(struct tcf_proto *tp, void *arg, bool *last,  	list_del_rcu(&f->link);  	tcf_unbind_filter(tp, &f->res); -	idr_remove_ext(&head->handle_idr, f->handle); +	idr_remove(&head->handle_idr, f->handle);  	tcf_exts_get_net(&f->exts);  	call_rcu(&f->rcu, basic_delete_filter);  	*last = list_empty(&head->flist); @@ -228,7 +228,7 @@ static int basic_change(struct net *net, struct sk_buff *in_skb,  			      extack);  	if (err < 0) {  		if (!fold) -			idr_remove_ext(&head->handle_idr, fnew->handle); +			idr_remove(&head->handle_idr, fnew->handle);  		goto errout;  	}  | 
