summaryrefslogtreecommitdiff
path: root/net/sched
diff options
context:
space:
mode:
authorXingfeng Hu <xingfeng.hu@corigine.com>2021-03-12 17:08:29 +0300
committerDavid S. Miller <davem@davemloft.net>2021-03-14 01:18:09 +0300
commit25660156f4cc4cf0cb55deda69f999dab554b750 (patch)
tree3a235a0eff104a16795b4fc5c5aa50130a6233ac /net/sched
parent4849d9beb8c9dc2cc6ebd5d6f1eead944e1a52cf (diff)
downloadlinux-25660156f4cc4cf0cb55deda69f999dab554b750.tar.xz
flow_offload: add support for packet-per-second policing
Allow flow_offload API to configure packet-per-second policing using rate and burst parameters. Dummy implementations of tcf_police_rate_pkt_ps() and tcf_police_burst_pkt() are supplied which return 0, the unconfigured state. This is to facilitate splitting the offload, driver, and TC code portion of this feature into separate patches with the aim of providing a logical flow for review. And the implementation of these helpers will be filled out by a follow-up patch. Signed-off-by: Xingfeng Hu <xingfeng.hu@corigine.com> Signed-off-by: Simon Horman <simon.horman@netronome.com> Signed-off-by: Louis Peens <louis.peens@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/cls_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index e37556cc37ab..ca8e177bf31b 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -3661,6 +3661,9 @@ int tc_setup_flow_action(struct flow_action *flow_action,
entry->police.burst = tcf_police_burst(act);
entry->police.rate_bytes_ps =
tcf_police_rate_bytes_ps(act);
+ entry->police.burst_pkt = tcf_police_burst_pkt(act);
+ entry->police.rate_pkt_ps =
+ tcf_police_rate_pkt_ps(act);
entry->police.mtu = tcf_police_tcfp_mtu(act);
entry->police.index = act->tcfa_index;
} else if (is_tcf_ct(act)) {