From e736a839fd93284a7ad7055176e4d2912ec7483a Mon Sep 17 00:00:00 2001 From: Vivek Date: Thu, 5 Dec 2024 06:51:09 -0800 Subject: [PATCH] [SmartSwitch] Skip xcvrd on the DPU (#20960) - Why I did it Data port on the DPU is of type "Dpc" i..e no xcvr is present on it. Thus xcvrd can effectively be skipped on this platform - How I did it change the pmon configuration "skip_ycabled": true, "skip_xcvrd": true - How to verify it Manual test to ensure xcrvd is skipped for this type of ports. Load and check if xcvrd is not started --- .../arm64-nvda_bf-bf3comdpu/pmon_daemon_control.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/nvidia-bluefield/arm64-nvda_bf-bf3comdpu/pmon_daemon_control.json b/device/nvidia-bluefield/arm64-nvda_bf-bf3comdpu/pmon_daemon_control.json index ef069d2e13de..f65c8d4a8cfa 100644 --- a/device/nvidia-bluefield/arm64-nvda_bf-bf3comdpu/pmon_daemon_control.json +++ b/device/nvidia-bluefield/arm64-nvda_bf-bf3comdpu/pmon_daemon_control.json @@ -3,5 +3,6 @@ "skip_psud": true, "skip_fancontrol": true, "skip_chassisd": false, - "skip_ycabled": true + "skip_ycabled": true, + "skip_xcvrd": true }