From 528295d05e6e2a079dbbbd94e593def13246d7e3 Mon Sep 17 00:00:00 2001 From: Shuotian Cheng Date: Fri, 14 Sep 2018 15:24:53 -0700 Subject: [PATCH] [mirrororch]: Remove the queue initialization for different platforms (#614) Queue 0 is a lossy queue, it is okay for all platforms to use queue 0 for mirrored packets. Signed-off-by: Shu0T1an ChenG --- orchagent/mirrororch.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/orchagent/mirrororch.cpp b/orchagent/mirrororch.cpp index 8c593e9f7e96..aaa65b795f9f 100644 --- a/orchagent/mirrororch.cpp +++ b/orchagent/mirrororch.cpp @@ -50,12 +50,10 @@ MirrorEntry::MirrorEntry(const string& platform) : if (platform == MLNX_PLATFORM_SUBSTRING) { greType = 0x8949; - queue = 1; } else { greType = 0x88be; - queue = 0; } nexthopInfo.prefix = IpPrefix("0.0.0.0/0");