Re: [patch net-next v6 00/11] net: sched: allow qdiscs to share filter block instances
From: Jiri Pirko <jiri@resnulli.us>
Date: 2018-01-08 15:42:05
Mon, Jan 08, 2018 at 04:23:06PM CET, marcelo.leitner@gmail.com wrote:
On Sat, Jan 06, 2018 at 12:09:18AM +0100, Jiri Pirko wrote: ...quoted
Note we cannot use the qdisc for filter manipulations for shared blocks: $ tc filter add dev ens8 ingress protocol ip pref 1 flower dst_ip 192.168.100.2 action drop Error: Cannot work with shared block, please use block index. We will see the same output if we list filters for ingress qdisc of ens7 and ens8, also for the block 22: $ tc filter show block 22 filter block 22 protocol ip pref 25 flower chain 0 filter block 22 protocol ip pref 25 flower chain 0 handle 0x1 ... $ tc filter show dev ens7 ingress filter block 22 protocol ip pref 25 flower chain 0 filter block 22 protocol ip pref 25 flower chain 0 handle 0x1 ... $ tc filter show dev ens8 ingress filter block 22 protocol ip pref 25 flower chain 0 filter block 22 protocol ip pref 25 flower chain 0 handle 0x1 ...If changing a rule on an interface and reflecting it on the other is considered confusing, what about getting the stats including the stats from the other interface? AFAICT that's what would happen in the 3 show commands above, they would show the same values.
Yes. Same block, same values.
Seems it can get confusing to the user: to check an interface, see some hits on it, but they actually happened on the other interface.
Okay, what do you suggest? Note that "filter show" uses dumpit. Also note that each filter listed under qdisc ens7 ingress and dev ens8 ingress is very clearly marked with "block 22". Why is it confusing?