-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Update qos config to clear queues for bounced back traffic #10176
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
Merged
bingwang-ms
merged 12 commits into
sonic-net:master
from
bingwang-ms:clear_q_for_tunnel_remapping
Apr 5, 2022
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0d37da4
Update qos config to clear queues for bounced back traffic
bingwang-ms 6565c2e
Address comments
bingwang-ms 0e0fffe
Fix UT
bingwang-ms 9a491e1
Fix UT
bingwang-ms a44c156
Update qos table
bingwang-ms 598cf86
Check NEIGH type
bingwang-ms f1d9c0f
Fix UT
bingwang-ms eb399f8
Fix py2 UT
bingwang-ms 5da008b
Merge branch 'master' into clear_q_for_tunnel_remapping
bingwang-ms ba5b35d
Fix py2 UT
bingwang-ms da726a6
Remove TC_TO_QUEUE_MAP for leaf
bingwang-ms dab2fc0
Merge branch 'master' into clear_q_for_tunnel_remapping
bingwang-ms 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
1 change: 0 additions & 1 deletion
1
device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/qos.json.j2
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/qos.json.j2
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../Arista-7050CX3-32S-D48C8/qos.json.j2 |
101 changes: 101 additions & 0 deletions
101
device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/qos.json.j2
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 |
|---|---|---|
| @@ -1 +1,102 @@ | ||
| {% if 'subtype' in DEVICE_METADATA['localhost'] and DEVICE_METADATA['localhost']['subtype'] == 'DualToR' %} | ||
| {%- macro generate_dscp_to_tc_map() %} | ||
| "DSCP_TO_TC_MAP": { | ||
| "AZURE": { | ||
| "0" : "1", | ||
| "1" : "1", | ||
| "2" : "1", | ||
| "3" : "3", | ||
| "4" : "4", | ||
| "5" : "1", | ||
| "6" : "1", | ||
bingwang-ms marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "7" : "1", | ||
| "8" : "0", | ||
| "9" : "1", | ||
| "10": "1", | ||
| "11": "1", | ||
| "12": "1", | ||
| "13": "1", | ||
| "14": "1", | ||
| "15": "1", | ||
| "16": "1", | ||
| "17": "1", | ||
| "18": "1", | ||
| "19": "1", | ||
| "20": "1", | ||
| "21": "1", | ||
| "22": "1", | ||
| "23": "1", | ||
| "24": "1", | ||
| "25": "1", | ||
| "26": "1", | ||
| "27": "1", | ||
| "28": "1", | ||
| "29": "1", | ||
| "30": "1", | ||
| "31": "1", | ||
| "32": "1", | ||
| "33": "2", | ||
| "34": "1", | ||
| "35": "1", | ||
| "36": "1", | ||
| "37": "1", | ||
| "38": "1", | ||
| "39": "1", | ||
| "40": "1", | ||
| "41": "1", | ||
| "42": "1", | ||
| "43": "1", | ||
| "44": "1", | ||
| "45": "1", | ||
| "46": "5", | ||
| "47": "1", | ||
| "48": "7", | ||
| "49": "1", | ||
| "50": "1", | ||
| "51": "1", | ||
| "52": "1", | ||
| "53": "1", | ||
| "54": "1", | ||
| "55": "1", | ||
| "56": "1", | ||
| "57": "1", | ||
| "58": "1", | ||
| "59": "1", | ||
| "60": "1", | ||
| "61": "1", | ||
| "62": "1", | ||
| "63": "1" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {%- macro generate_tc_to_pg_map() %} | ||
| "TC_TO_PRIORITY_GROUP_MAP": { | ||
bingwang-ms marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "AZURE": { | ||
| "0": "0", | ||
| "1": "0", | ||
| "2": "0", | ||
| "3": "3", | ||
| "4": "4", | ||
| "5": "0", | ||
| "6": "0", | ||
| "7": "7" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {%- macro generate_tc_to_queue_map() %} | ||
| "TC_TO_QUEUE_MAP": { | ||
| "AZURE": { | ||
| "0": "0", | ||
| "1": "1", | ||
| "2": "1", | ||
| "3": "3", | ||
| "4": "4", | ||
| "5": "5", | ||
| "6": "6", | ||
bingwang-ms marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "7": "7" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {% endif %} | ||
|
|
||
| {%- include 'qos_config.j2' %} | ||
186 changes: 186 additions & 0 deletions
186
device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/qos.json.j2
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 |
|---|---|---|
| @@ -1 +1,187 @@ | ||
| {% if ('type' in DEVICE_METADATA['localhost'] and DEVICE_METADATA['localhost']['type'] == 'LeafRouter') %} | ||
| {%- macro generate_dscp_to_tc_map() %} | ||
| "DSCP_TO_TC_MAP": { | ||
bingwang-ms marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "AZURE": { | ||
| "0" : "1", | ||
| "1" : "1", | ||
| "2" : "2", | ||
| "3" : "3", | ||
| "4" : "4", | ||
| "5" : "1", | ||
| "6" : "6", | ||
| "7" : "1", | ||
| "8" : "0", | ||
| "9" : "1", | ||
| "10": "1", | ||
| "11": "1", | ||
| "12": "1", | ||
| "13": "1", | ||
| "14": "1", | ||
| "15": "1", | ||
| "16": "1", | ||
| "17": "1", | ||
| "18": "1", | ||
| "19": "1", | ||
| "20": "1", | ||
| "21": "1", | ||
| "22": "1", | ||
| "23": "1", | ||
| "24": "1", | ||
| "25": "1", | ||
| "26": "1", | ||
| "27": "1", | ||
| "28": "1", | ||
| "29": "1", | ||
| "30": "1", | ||
| "31": "1", | ||
| "32": "1", | ||
| "33": "1", | ||
| "34": "1", | ||
| "35": "1", | ||
| "36": "1", | ||
| "37": "1", | ||
| "38": "1", | ||
| "39": "1", | ||
| "40": "1", | ||
| "41": "1", | ||
| "42": "1", | ||
| "43": "1", | ||
| "44": "1", | ||
| "45": "1", | ||
| "46": "5", | ||
| "47": "1", | ||
| "48": "7", | ||
| "49": "1", | ||
| "50": "1", | ||
| "51": "1", | ||
| "52": "1", | ||
| "53": "1", | ||
| "54": "1", | ||
| "55": "1", | ||
| "56": "1", | ||
| "57": "1", | ||
| "58": "1", | ||
| "59": "1", | ||
| "60": "1", | ||
| "61": "1", | ||
| "62": "1", | ||
| "63": "1" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {%- macro generate_tc_to_pg_map() %} | ||
| "TC_TO_PRIORITY_GROUP_MAP": { | ||
| "AZURE": { | ||
| "0": "0", | ||
| "1": "0", | ||
| "2": "2", | ||
| "3": "3", | ||
| "4": "4", | ||
| "5": "0", | ||
| "6": "6", | ||
| "7": "7" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {% elif ('subtype' in DEVICE_METADATA['localhost'] and DEVICE_METADATA['localhost']['subtype'] == 'DualToR') %} | ||
| {%- macro generate_dscp_to_tc_map() %} | ||
| "DSCP_TO_TC_MAP": { | ||
neethajohn marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "AZURE": { | ||
| "0" : "1", | ||
| "1" : "1", | ||
| "2" : "1", | ||
| "3" : "3", | ||
| "4" : "4", | ||
| "5" : "1", | ||
| "6" : "1", | ||
| "7" : "1", | ||
| "8" : "0", | ||
| "9" : "1", | ||
| "10": "1", | ||
| "11": "1", | ||
| "12": "1", | ||
| "13": "1", | ||
| "14": "1", | ||
| "15": "1", | ||
| "16": "1", | ||
| "17": "1", | ||
| "18": "1", | ||
| "19": "1", | ||
| "20": "1", | ||
| "21": "1", | ||
| "22": "1", | ||
| "23": "1", | ||
| "24": "1", | ||
| "25": "1", | ||
| "26": "1", | ||
| "27": "1", | ||
| "28": "1", | ||
| "29": "1", | ||
| "30": "1", | ||
| "31": "1", | ||
| "32": "1", | ||
| "33": "2", | ||
| "34": "1", | ||
| "35": "1", | ||
| "36": "1", | ||
| "37": "1", | ||
| "38": "1", | ||
| "39": "1", | ||
| "40": "1", | ||
| "41": "1", | ||
| "42": "1", | ||
| "43": "1", | ||
| "44": "1", | ||
| "45": "1", | ||
| "46": "5", | ||
| "47": "1", | ||
| "48": "7", | ||
| "49": "1", | ||
| "50": "1", | ||
| "51": "1", | ||
| "52": "1", | ||
| "53": "1", | ||
| "54": "1", | ||
| "55": "1", | ||
| "56": "1", | ||
| "57": "1", | ||
| "58": "1", | ||
| "59": "1", | ||
| "60": "1", | ||
| "61": "1", | ||
| "62": "1", | ||
| "63": "1" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {%- macro generate_tc_to_pg_map() %} | ||
| "TC_TO_PRIORITY_GROUP_MAP": { | ||
| "AZURE": { | ||
| "0": "0", | ||
| "1": "0", | ||
| "2": "0", | ||
| "3": "3", | ||
| "4": "4", | ||
| "5": "0", | ||
| "6": "0", | ||
| "7": "7" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {%- macro generate_tc_to_queue_map() %} | ||
| "TC_TO_QUEUE_MAP": { | ||
| "AZURE": { | ||
| "0": "0", | ||
| "1": "1", | ||
| "2": "1", | ||
| "3": "3", | ||
| "4": "4", | ||
| "5": "5", | ||
| "6": "6", | ||
| "7": "7" | ||
| } | ||
| }, | ||
| {%- endmacro %} | ||
| {% endif %} | ||
|
|
||
| {%- include 'qos_config.j2' %} | ||
1 change: 0 additions & 1 deletion
1
device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/qos.json.j2
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/qos.json.j2
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../Arista-7260CX3-C64/qos.json.j2 |
1 change: 0 additions & 1 deletion
1
device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/qos.json.j2
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/qos.json.j2
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../Arista-7260CX3-C64/qos.json.j2 |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.