Skip to content

Commit 5c05e23

Browse files
authoredFeb 21, 2024··
[SAI] Move SAI submodule to v1.13.3 (#1349)
1 parent 23481f0 commit 5c05e23

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed
 

‎lib/sai_redis_router_interface.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
REDIS_GENERIC_QUAD(ROUTER_INTERFACE,router_interface);
44
REDIS_GENERIC_STATS(ROUTER_INTERFACE,router_interface);
5-
REDIS_BULK_QUAD(ROUTER_INTERFACE,router_interfaces);
65

76
const sai_router_interface_api_t redis_router_interface_api = {
87

98
REDIS_GENERIC_QUAD_API(router_interface)
109
REDIS_GENERIC_STATS_API(router_interface)
11-
REDIS_BULK_QUAD_API(router_interfaces)
1210
};

‎syncd/SwitchNotifications.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,18 @@ namespace syncd
9191

9292
Slot():
9393
SlotBase({
94-
.on_switch_state_change = &Slot<context>::onSwitchStateChange,
95-
.on_switch_shutdown_request = &Slot<context>::onSwitchShutdownRequest,
96-
.on_fdb_event = &Slot<context>::onFdbEvent,
97-
.on_port_state_change = &Slot<context>::onPortStateChange,
98-
.on_packet_event = nullptr,
99-
.on_queue_pfc_deadlock = &Slot<context>::onQueuePfcDeadlock,
10094
.on_bfd_session_state_change = &Slot<context>::onBfdSessionStateChange,
101-
.on_tam_event = nullptr,
95+
.on_fdb_event = &Slot<context>::onFdbEvent,
10296
.on_ipsec_sa_status_change = nullptr,
10397
.on_nat_event = &Slot<context>::onNatEvent,
104-
.on_switch_asic_sdk_health_event = nullptr,
98+
.on_packet_event = nullptr,
10599
.on_port_host_tx_ready = &Slot<context>::onPortHostTxReady,
100+
.on_port_state_change = &Slot<context>::onPortStateChange,
101+
.on_queue_pfc_deadlock = &Slot<context>::onQueuePfcDeadlock,
102+
.on_switch_asic_sdk_health_event = nullptr,
103+
.on_switch_shutdown_request = &Slot<context>::onSwitchShutdownRequest,
104+
.on_switch_state_change = &Slot<context>::onSwitchStateChange,
105+
.on_tam_event = nullptr,
106106
.on_twamp_session_event = nullptr,
107107
}) { }
108108

‎vslib/sai_vs_router_interface.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
VS_GENERIC_QUAD(ROUTER_INTERFACE,router_interface);
44
VS_GENERIC_STATS(ROUTER_INTERFACE,router_interface);
5-
VS_BULK_QUAD(ROUTER_INTERFACE,router_interfaces);
65

76
const sai_router_interface_api_t vs_router_interface_api = {
87

98
VS_GENERIC_QUAD_API(router_interface)
109
VS_GENERIC_STATS_API(router_interface)
11-
VS_BULK_QUAD_API(router_interfaces)
1210
};

0 commit comments

Comments
 (0)
Please sign in to comment.