-
Notifications
You must be signed in to change notification settings - Fork 539
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
Do not allow to add port to .1Q bridge while router port deletion is not completed #2669
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0d296ce
Do not set port to be a bridge port while it is still a router port
liorghub 0f5e17d
Add unitest for bridge port fix
liorghub c9ee57b
Remove SAL annotation
liorghub 7617c6d
Fix review comment
liorghub 288c449
Fix more review comment
liorghub File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Define classes and functions to mock SAI bridge functions. | ||
#pragma once | ||
|
||
#include <gmock/gmock.h> | ||
|
||
extern "C" | ||
{ | ||
#include "sai.h" | ||
} | ||
|
||
// Mock class including mock functions mapping to SAI bridge functions. | ||
class MockSaiBridge | ||
{ | ||
public: | ||
MOCK_METHOD4(create_bridge_port, sai_status_t(sai_object_id_t *bridge_port_id, | ||
sai_object_id_t switch_id, | ||
uint32_t attr_count, | ||
const sai_attribute_t *attr_list)); | ||
}; | ||
|
||
// Note that before mock functions below are used, mock_sai_bridge must be | ||
// initialized to point to an instance of MockSaiBridge. | ||
MockSaiBridge *mock_sai_bridge; | ||
|
||
sai_status_t mock_create_bridge_port(sai_object_id_t *bridge_port_id, | ||
sai_object_id_t switch_id, | ||
uint32_t attr_count, | ||
const sai_attribute_t *attr_list) | ||
{ | ||
return mock_sai_bridge->create_bridge_port(bridge_port_id, switch_id, attr_count, attr_list); | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please add more context in the log message and change it to warning since we are returning here in a failure scenario?
"Cannot create bridge port. Interface %s is a router port"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@liorghub I recommend changing it to "WARN" log instead of notice since here are returning here in a failure scenario.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dgsudharsan this is actually a retry mechanism (not failure).
When we print this message we also return false in the next line, DB change is not consumed and we will try again till success.