-
Notifications
You must be signed in to change notification settings - Fork 295
[MSTP] Schema Support #961
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
Open
wajahatrazi
wants to merge
16
commits into
sonic-net:master
Choose a base branch
from
wajahatrazi:MSTP_Tables
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1f4e848
Adding MSTP tables
wajahatrazi e87270e
Updating the "CFG_STP_MST_TABLE_NAME" to "CFG_STP_MST_GLOBAL_TABLE_NAME"
wajahatrazi 31cf6a0
Adding MSTP tables
wajahatrazi be2bff5
Updating the "CFG_STP_MST_TABLE_NAME" to "CFG_STP_MST_GLOBAL_TABLE_NAME"
wajahatrazi 032a975
Merge branch 'MSTP_Tables' of github.com:wajahatrazi/sonic-swss-commo…
wajahatrazi fc6677b
Updating swss common for mstp
wajahatrazi 18f0b73
Added STP_INST_PORT_FLUSH_TABLE
wajahatrazi 7988e0d
Adding MSTP tables
wajahatrazi fc03fed
Updating the "CFG_STP_MST_TABLE_NAME" to "CFG_STP_MST_GLOBAL_TABLE_NAME"
wajahatrazi 12542f1
Updating swss common for mstp
wajahatrazi ff70230
Added STP_INST_PORT_FLUSH_TABLE
wajahatrazi 7eae331
Merge branch 'MSTP_Tables' of github.com:wajahatrazi/sonic-swss-commo…
wajahatrazi c9a8436
Merge branch 'master' into MSTP_Tables
wajahatrazi c1bcb91
Merge branch 'master' of github.com:wajahatrazi/sonic-swss-common int…
wajahatrazi 05cecd1
Merge branch 'master' into MSTP_Tables
divyachandralekha 57b3282
Merge branch 'master' into MSTP_Tables
divyachandralekha 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 hidden or 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 |
---|---|---|
|
@@ -117,6 +117,9 @@ namespace swss { | |
#define APP_BFD_SESSION_TABLE_NAME "BFD_SESSION_TABLE" | ||
#define APP_ICMP_ECHO_SESSION_TABLE_NAME "ICMP_ECHO_SESSION_TABLE" | ||
|
||
#define APP_STP_MST_TABLE_NAME "STP_MST_INST_TABLE" | ||
#define APP_STP_MST_PORT_TABLE_NAME "STP_MST_PORT_TABLE" | ||
#define APP_STP_INST_PORT_FLUSH_TABLE_NAME "STP_INST_PORT_FLUSH_TABLE" | ||
|
||
#define APP_SAG_TABLE_NAME "SAG_TABLE" | ||
|
||
|
@@ -437,6 +440,10 @@ namespace swss { | |
#define CFG_STP_VLAN_PORT_TABLE_NAME "STP_VLAN_PORT" | ||
#define CFG_STP_PORT_TABLE_NAME "STP_PORT" | ||
|
||
#define CFG_STP_MST_GLOBAL_TABLE_NAME "STP_MST" | ||
#define CFG_STP_MST_INST_TABLE_NAME "STP_MST_INST" | ||
#define CFG_STP_MST_PORT_TABLE_NAME "STP_MST_PORT" | ||
|
||
#define CFG_MCLAG_TABLE_NAME "MCLAG_DOMAIN" | ||
#define CFG_MCLAG_INTF_TABLE_NAME "MCLAG_INTERFACE" | ||
#define CFG_MCLAG_UNIQUE_IP_TABLE_NAME "MCLAG_UNIQUE_IP" | ||
|
@@ -493,9 +500,10 @@ namespace swss { | |
|
||
#define CFG_MEMORY_STATISTICS_TABLE_NAME "MEMORY_STATISTICS" | ||
|
||
#define CFG_PAC_PORT_CONFIG_TABLE "PAC_PORT_CONFIG_TABLE" | ||
#define CFG_PAC_GLOBAL_CONFIG_TABLE "PAC_GLOBAL_CONFIG_TABLE" | ||
#define CFG_PAC_HOSTAPD_GLOBAL_CONFIG_TABLE "HOSTAPD_GLOBAL_CONFIG_TABLE" | ||
#define CFG_PAC_PORT_CONFIG_TABLE "PAC_PORT_CONFIG_TABLE" | ||
#define CFG_PAC_GLOBAL_CONFIG_TABLE "PAC_GLOBAL_CONFIG_TABLE" | ||
#define CFG_PAC_HOSTAPD_GLOBAL_CONFIG_TABLE "HOSTAPD_GLOBAL_CONFIG_TABLE" | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the extra lines, |
||
|
||
#define CFG_SRV6_MY_SID_TABLE_NAME "SRV6_MY_SIDS" | ||
#define CFG_SRV6_MY_LOCATOR_TABLE_NAME "SRV6_MY_LOCATORS" | ||
|
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.
Please rename the tables as below
#define APP_STP_MST_TABLE_NAME "STP_MST_INST_TABLE"
#define APP_STP_MST_PORT_TABLE_NAME "STP_MST_PORT_TABLE"
#define [APP_STP_INST_PORT_FLUSH_TABLE_NAME "STP_INST_PORT_FLUSH_TABLE"