We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15ef685 commit 39e70cdCopy full SHA for 39e70cd
vslib/src/sai_vs_route.cpp
@@ -5,7 +5,7 @@ sai_status_t vs_bulk_create_route_entry(
5
_In_ uint32_t object_count,
6
_In_ const sai_route_entry_t *route_entry,
7
_In_ const uint32_t *attr_count,
8
- _In_ const sai_attribute_t *const *attr_list,
+ _In_ const sai_attribute_t **attr_list,
9
_In_ sai_bulk_op_error_mode_t mode,
10
_Out_ sai_status_t *object_statuses)
11
{
@@ -66,7 +66,8 @@ const sai_route_api_t vs_route_api = {
66
VS_GENERIC_QUAD_API(route_entry)
67
68
// TODO: upstream signiture fix to SAI repo
69
- (sai_bulk_create_route_entry_fn)vs_bulk_create_route_entry,
+ // (sai_bulk_create_route_entry_fn)vs_bulk_create_route_entry,
70
+ vs_bulk_create_route_entry,
71
vs_bulk_remove_route_entry,
72
vs_bulk_set_route_entry_attribute,
73
vs_bulk_get_route_entry_attribute,
0 commit comments