diff options
Diffstat (limited to 'net/sched/act_police.c')
-rw-r--r-- | net/sched/act_police.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/act_police.c b/net/sched/act_police.c index 17f6f27e28a2..a73e3e6d87ea 100644 --- a/net/sched/act_police.c +++ b/net/sched/act_police.c | |||
@@ -21,8 +21,8 @@ | |||
21 | #include <net/act_api.h> | 21 | #include <net/act_api.h> |
22 | #include <net/netlink.h> | 22 | #include <net/netlink.h> |
23 | 23 | ||
24 | #define L2T(p,L) ((p)->tcfp_R_tab->data[(L)>>(p)->tcfp_R_tab->rate.cell_log]) | 24 | #define L2T(p,L) qdisc_l2t((p)->tcfp_R_tab, L) |
25 | #define L2T_P(p,L) ((p)->tcfp_P_tab->data[(L)>>(p)->tcfp_P_tab->rate.cell_log]) | 25 | #define L2T_P(p,L) qdisc_l2t((p)->tcfp_P_tab, L) |
26 | 26 | ||
27 | #define POL_TAB_MASK 15 | 27 | #define POL_TAB_MASK 15 |
28 | static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1]; | 28 | static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1]; |