OSDN Git Service

net_sched: refactor notification code for RTM_DELTFILTER
authorWANG Cong <xiyou.wangcong@gmail.com>
Sat, 5 Aug 2017 04:31:42 +0000 (21:31 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Aug 2017 21:12:17 +0000 (14:12 -0700)
commit54df2cf819a23dba4bb2c4134ed62659a7d324f5
tree989986433ffd65cd0749e82b84e3366771de6cfc
parent08bd10ffb44d11000c6b2781e8d9066567e50e27
net_sched: refactor notification code for RTM_DELTFILTER

It is confusing to use 'unsigned long fh' as both a handle
and a pointer, especially commit 9ee7837449b3
("net sched filters: fix notification of filter delete with proper handle").

This patch introduces tfilter_del_notify() so that we can
pass it as a pointer as before, and we don't need to check
RTM_DELTFILTER in tcf_fill_node() any more.

This prepares for the next patch.

Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_api.c