From eaa2bda57898535bb0d317f21ef6c3ceb4337cf9 Mon Sep 17 00:00:00 2001 From: Kamil Cudnik Date: Mon, 23 Oct 2023 17:24:20 +0200 Subject: [PATCH] Update SAI submodule to latest (#1311) To include allow null on SAI_PORT_ATTR_PORT_SERDES_ID --- SAI | 2 +- syncd/SwitchNotifications.h | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/SAI b/SAI index 7f7a7587d..f981a1f61 160000 --- a/SAI +++ b/SAI @@ -1 +1 @@ -Subproject commit 7f7a7587debf6b393118b29ca71c2d00722bb885 +Subproject commit f981a1f618ff84c28f75f8185ccad6dd73bf2bb4 diff --git a/syncd/SwitchNotifications.h b/syncd/SwitchNotifications.h index afc64c9e6..00d2379b9 100644 --- a/syncd/SwitchNotifications.h +++ b/syncd/SwitchNotifications.h @@ -84,18 +84,18 @@ namespace syncd Slot(): SlotBase({ - .on_bfd_session_state_change = &Slot::onBfdSessionStateChange, + .on_switch_state_change = &Slot::onSwitchStateChange, + .on_switch_shutdown_request = &Slot::onSwitchShutdownRequest, .on_fdb_event = &Slot::onFdbEvent, - .on_ipsec_sa_status_change = nullptr, - .on_nat_event = &Slot::onNatEvent, - .on_packet_event = nullptr, - .on_port_host_tx_ready = nullptr, .on_port_state_change = &Slot::onPortStateChange, + .on_packet_event = nullptr, .on_queue_pfc_deadlock = &Slot::onQueuePfcDeadlock, - .on_switch_asic_sdk_health_event = nullptr, - .on_switch_shutdown_request = &Slot::onSwitchShutdownRequest, - .on_switch_state_change = &Slot::onSwitchStateChange, + .on_bfd_session_state_change = &Slot::onBfdSessionStateChange, .on_tam_event = nullptr, + .on_ipsec_sa_status_change = nullptr, + .on_nat_event = &Slot::onNatEvent, + .on_switch_asic_sdk_health_event = nullptr, + .on_port_host_tx_ready = nullptr, .on_twamp_session_event = nullptr, }) { }