diff options
author | Alexander Aring <aring@mojatatu.com> | 2017-12-20 18:35:18 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-21 18:32:50 +0100 |
commit | e9bc3fa28bae7612f41e3538f241a2f87f629c94 (patch) | |
tree | 5909d2930a9fe800a3da1af973eb465ee7fd28e4 /net/sched/act_police.c | |
parent | net: sched: sch: add extack for graft callback (diff) | |
download | linux-e9bc3fa28bae7612f41e3538f241a2f87f629c94.tar.xz linux-e9bc3fa28bae7612f41e3538f241a2f87f629c94.zip |
net: sch: api: add extack support in qdisc_get_rtab
This patch adds extack support for the function qdisc_get_rtab which is
a common used function in the tc subsystem. Callers which are interested
in the receiving error can assign extack to get a more detailed
information why qdisc_get_rtab failed.
Cc: David Ahern <dsahern@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Alexander Aring <aring@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
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 bf483db993a1..95d3c9097b25 100644 --- a/net/sched/act_police.c +++ b/net/sched/act_police.c @@ -118,13 +118,13 @@ static int tcf_act_police_init(struct net *net, struct nlattr *nla, police = to_police(*a); if (parm->rate.rate) { err = -ENOMEM; - R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE]); + R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE], NULL); if (R_tab == NULL) goto failure; if (parm->peakrate.rate) { P_tab = qdisc_get_rtab(&parm->peakrate, - tb[TCA_POLICE_PEAKRATE]); + tb[TCA_POLICE_PEAKRATE], NULL); if (P_tab == NULL) goto failure; } |