Fix buffer template for Arista SKU. (#10663)
Why I did it The buffer pool & profile setting in buffer template was not correct and caused the errors like the following: ERR swss#orchagent: :- parseReference: malformed reference:[BUFFER_PROFILE|ingress_lossless_profile]. Must not be surrounded by [ ] How I did it Fix the buffer pool & profile setting by removing "[]". How to verify it Loaded image with this fix in a switch and made sure the error was not seen anymore.
This commit is contained in:
parent
4ec3af86af
commit
a9d5858da1
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
{%- set default_cable = '5m' %}
|
{%- set default_cable = '5m' %}
|
||||||
|
|
||||||
{%- macro generate_port_lists(PORT_ALL) %}
|
{%- macro generate_port_lists(PORT_ALL) %}
|
||||||
@ -19,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
"BUFFER_PROFILE": {
|
"BUFFER_PROFILE": {
|
||||||
"ingress_lossless_profile": {
|
"ingress_lossless_profile": {
|
||||||
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
|
"pool":"ingress_lossless_pool",
|
||||||
"size":"1280",
|
"size":"1280",
|
||||||
"dynamic_th":"-2",
|
"dynamic_th":"-2",
|
||||||
"xon_offset":"2560",
|
"xon_offset":"2560",
|
||||||
@ -27,18 +26,18 @@
|
|||||||
"xoff":"66048"
|
"xoff":"66048"
|
||||||
},
|
},
|
||||||
"ingress_lossy_profile": {
|
"ingress_lossy_profile": {
|
||||||
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
|
"pool":"ingress_lossless_pool",
|
||||||
"size":"0",
|
"size":"0",
|
||||||
"xon_offset":"0",
|
"xon_offset":"0",
|
||||||
"static_th":"30535680"
|
"static_th":"30535680"
|
||||||
},
|
},
|
||||||
"egress_lossless_profile": {
|
"egress_lossless_profile": {
|
||||||
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
|
"pool":"ingress_lossless_pool",
|
||||||
"size":"0",
|
"size":"0",
|
||||||
"static_th":"33030144"
|
"static_th":"33030144"
|
||||||
},
|
},
|
||||||
"egress_lossy_profile": {
|
"egress_lossy_profile": {
|
||||||
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
|
"pool":"ingress_lossless_pool",
|
||||||
"size":"0",
|
"size":"0",
|
||||||
"dynamic_th":"-1"
|
"dynamic_th":"-1"
|
||||||
}
|
}
|
||||||
@ -49,18 +48,18 @@
|
|||||||
"BUFFER_QUEUE": {
|
"BUFFER_QUEUE": {
|
||||||
{% for port in port_names.split(',') %}
|
{% for port in port_names.split(',') %}
|
||||||
"{{ port }}|3-4": {
|
"{{ port }}|3-4": {
|
||||||
"profile" : "[BUFFER_PROFILE|ingress_lossless_profile]"
|
"profile" : "ingress_lossless_profile"
|
||||||
},
|
},
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for port in port_names.split(',') %}
|
{% for port in port_names.split(',') %}
|
||||||
"{{ port }}|0-2": {
|
"{{ port }}|0-2": {
|
||||||
"profile" : "[BUFFER_PROFILE|egress_lossy_profile]"
|
"profile" : "egress_lossy_profile"
|
||||||
},
|
},
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for port in port_names.split(',') %}
|
{% for port in port_names.split(',') %}
|
||||||
"{{ port }}|5-6": {
|
"{{ port }}|5-6": {
|
||||||
"profile" : "[BUFFER_PROFILE|egress_lossy_profile]"
|
"profile" : "egress_lossy_profile"
|
||||||
}{% if not loop.last %},{% endif %}
|
}{% if not loop.last %},{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
}
|
}
|
||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
Reference in New Issue
Block a user