mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-08-14 05:16:11 +00:00
tc: bash-completion: Add support for matchall
Add support for the matchall classifier and its parameters. Signed-off-by: Yotam Gigi <yotamg@mellanox.com>
This commit is contained in:
parent
a9d2f4d861
commit
b32c0b64fa
@ -5,7 +5,7 @@
|
|||||||
QDISC_KIND=' choke codel bfifo pfifo pfifo_head_drop fq fq_codel gred hhf \
|
QDISC_KIND=' choke codel bfifo pfifo pfifo_head_drop fq fq_codel gred hhf \
|
||||||
mqprio multiq netem pfifo_fast pie red rr sfb sfq tbf atm cbq drr \
|
mqprio multiq netem pfifo_fast pie red rr sfb sfq tbf atm cbq drr \
|
||||||
dsmark hfsc htb prio qfq '
|
dsmark hfsc htb prio qfq '
|
||||||
FILTER_KIND=' basic bpf cgroup flow flower fw route rsvp tcindex u32 '
|
FILTER_KIND=' basic bpf cgroup flow flower fw route rsvp tcindex u32 matchall '
|
||||||
ACTION_KIND=' gact mirred bpf sample '
|
ACTION_KIND=' gact mirred bpf sample '
|
||||||
|
|
||||||
# Takes a list of words in argument; each one of them is added to COMPREPLY if
|
# Takes a list of words in argument; each one of them is added to COMPREPLY if
|
||||||
@ -449,6 +449,10 @@ _tc_filter_options()
|
|||||||
_tc_once_attr 'map hash divisor baseclass match action'
|
_tc_once_attr 'map hash divisor baseclass match action'
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
matchall)
|
||||||
|
_tc_once_attr 'action skip_sw skip_hw'
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
flower)
|
flower)
|
||||||
_tc_once_attr 'action classid indev dst_mac src_mac eth_type \
|
_tc_once_attr 'action classid indev dst_mac src_mac eth_type \
|
||||||
ip_proto dst_ip src_ip dst_port src_port'
|
ip_proto dst_ip src_ip dst_port src_port'
|
||||||
|
Loading…
Reference in New Issue
Block a user