We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description of problem: When I attach two networks (one with vlan, one without) with qos to same interface vdsm duplicates tc filters
Steps to Reproduce:
You will see these tc filters (Actual results):
tc filter show dev enp7s0
filter parent 1389: protocol all pref 100 basic chain 0 filter parent 1389: protocol all pref 100 basic chain 0 handle 0x1 flowid 1389:64 meta(vlan eq 100)
filter parent 1389: protocol all pref 5000 u32 chain 0 filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800: ht divisor 1 filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::800 order 2048 key ht 800 bkt 0 flowid :1388 not_in_hw match 00000000/00000000 at 0 filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::801 order 2049 key ht 800 bkt 0 flowid :1388 not_in_hw match 00000000/00000000 at 0
Expected results:
tc filter show dev enp7s0 filter parent 1389: protocol all pref 100 basic chain 0 filter parent 1389: protocol all pref 100 basic chain 0 handle 0x1 flowid 1389:64 meta(vlan eq 100)
filter parent 1389: protocol all pref 5000 u32 chain 0 filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800: ht divisor 1 filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::800 order 2048 key ht 800 bkt 0 flowid :1388 not_in_hw match 00000000/00000000 at 0
So, this filter is redundant:
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::801 order 2049 key ht 800 bkt 0 flowid :1388 not_in_hw match 00000000/00000000 at 0
Created from https://bugzilla.redhat.com/show_bug.cgi?id=2111065
The text was updated successfully, but these errors were encountered:
Ovirt version 4.50.0.12
Sorry, something went wrong.
No branches or pull requests
Description of problem:
When I attach two networks (one with vlan, one without) with qos to same interface vdsm duplicates tc filters
Steps to Reproduce:
You will see these tc filters (Actual results):
tc filter show dev enp7s0
filter parent 1389: protocol all pref 100 basic chain 0
filter parent 1389: protocol all pref 100 basic chain 0 handle 0x1 flowid 1389:64
meta(vlan eq 100)
filter parent 1389: protocol all pref 5000 u32 chain 0
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800: ht divisor 1
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::800 order 2048 key ht 800 bkt 0 flowid :1388 not_in_hw
match 00000000/00000000 at 0
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::801 order 2049 key ht 800 bkt 0 flowid :1388 not_in_hw
match 00000000/00000000 at 0
Expected results:
tc filter show dev enp7s0
filter parent 1389: protocol all pref 100 basic chain 0
filter parent 1389: protocol all pref 100 basic chain 0 handle 0x1 flowid 1389:64
meta(vlan eq 100)
filter parent 1389: protocol all pref 5000 u32 chain 0
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800: ht divisor 1
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::800 order 2048 key ht 800 bkt 0 flowid :1388 not_in_hw
match 00000000/00000000 at 0
So, this filter is redundant:
filter parent 1389: protocol all pref 5000 u32 chain 0 fh 800::801 order 2049 key ht 800 bkt 0 flowid :1388 not_in_hw
match 00000000/00000000 at 0
Created from https://bugzilla.redhat.com/show_bug.cgi?id=2111065
The text was updated successfully, but these errors were encountered: