-
Notifications
You must be signed in to change notification settings - Fork 545
New issue
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
[orchagent] Fix: ERR swss#orchagent: :- setPortPvid: pvid setting for tunnel Port_EVPN_XXX is not allowed #3402
base: master
Are you sure you want to change the base?
Conversation
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
@prsunny looks like the internal conflict was resolved since it was merged to main now. Please review and hopefully merge. |
…_EVPN_XXX is not allowed Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
e994009
to
1f15ade
Compare
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
rebased on top of current master to get rid of merged stuff that is now upstream |
@prsunny is this good to go? |
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
@srj102 , would you review or assign someone? seems some defaults values are changed for evpn scenario |
… tunnel Port_EVPN_XXX is not allowed (PR sonic-net#3402) Tunnel ports are always tagged and can't be created as untagged. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs. This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability. Signed-off-by: Brad House (@bradh352)
Will review this. Thanks |
What I did
Tunnel ports are always considered tagged and we can't create an untagged/pvid vlan. But the code currently tries to set a pvid on a tunnel which is disallowed leading to an error in the logs.
This is a simple fix to get rid of the error in the logs. It does not actually change behavior in any way other than getting rid of an error thus helping debugability.
Why I did it
To get rid of confusing log message:
How I verified it
Applied patch, notice error no longer printed in logs.
Details if related
Signed-off-by: Brad House (@bradh352)