]> git.proxmox.com Git - mirror_iproute2.git/commit
tc: ematch: Ignore all-zero mask value when printing filters
authorPhil Sutter <phil@nwl.cc>
Thu, 14 Jul 2016 21:10:53 +0000 (23:10 +0200)
committerStephen Hemminger <shemming@brocade.com>
Wed, 20 Jul 2016 19:20:13 +0000 (12:20 -0700)
commit247ace611526e51d9f5a2f4b6e965c59b0f8b739
treeba324614bfef6933ec8bef5225d72c6528bd0451
parent7ffa2b557a81dc6f40b93223442df3db66980d80
tc: ematch: Ignore all-zero mask value when printing filters

The optional mask which may be added to int values is considered by the
kernel only if it is non-zero, therefore tc should only then also print
it.

Without this, not passing a mask value like so:

| # tc filter add dev d0 parent 8001: \
|  basic match meta\(vlan eq 1\) \
|  classid 8001:1

Would lead to tc printing an all-zero mask later:

| # tc filter show dev d0
| filter parent 8001: protocol all pref 49151 basic
| filter parent 8001: protocol all pref 49151 basic handle 0x1 flowid 8001:1
|   meta(vlan mask 0x00000000 eq 1)

This is obviously confusing as an all-zero mask strictly means to
eliminate all bits from the value, but the opposite is the case.

Cc: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Phil Sutter <phil@nwl.cc>
tc/em_meta.c