From cb930c30cd68ce01a4d2aa39f5f26d460df0c8be Mon Sep 17 00:00:00 2001 From: Neetha John Date: Thu, 20 May 2021 10:36:39 -0700 Subject: [PATCH] [qos]: modify dot1p to tc mapping (#7661) Map priority 0 to TC 1 and priority 1 to TC 0 Send traffic on priority 0 and 1 and verified that it gets mapped correctly in hw Signed-off-by: Neetha John --- files/build_templates/qos_config.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/build_templates/qos_config.j2 b/files/build_templates/qos_config.j2 index a7c361d69f..c2b0fe32bc 100644 --- a/files/build_templates/qos_config.j2 +++ b/files/build_templates/qos_config.j2 @@ -76,8 +76,8 @@ {% if 'type' in DEVICE_METADATA['localhost'] and DEVICE_METADATA['localhost']['type'] in backend_device_types and 'storage_device' in DEVICE_METADATA['localhost'] and DEVICE_METADATA['localhost']['storage_device'] == 'true' %} "DOT1P_TO_TC_MAP": { "AZURE": { - "0": "0", - "1": "1", + "0": "1", + "1": "0", "2": "2", "3": "3", "4": "4",