@@ -82,6 +82,47 @@ sai_status_t redis_clear_table_bitmap_router_entry_stats(
82
82
83
83
REDIS_GENERIC_QUAD (TABLE_BITMAP_ROUTER_ENTRY,table_bitmap_router_entry);
84
84
85
+ sai_status_t redis_get_table_meta_tunnel_entry_stats (
86
+ _In_ sai_object_id_t table_meta_tunnel_entry_id,
87
+ _In_ uint32_t number_of_counters,
88
+ _In_ const sai_stat_id_t *counter_ids,
89
+ _Out_ uint64_t *counters)
90
+ {
91
+ MUTEX ();
92
+
93
+ SWSS_LOG_ENTER ();
94
+
95
+ return SAI_STATUS_NOT_IMPLEMENTED;
96
+ }
97
+
98
+ sai_status_t redis_get_table_meta_tunnel_entry_stats_ext (
99
+ _In_ sai_object_id_t table_meta_tunnel_entry_id,
100
+ _In_ uint32_t number_of_counters,
101
+ _In_ const sai_stat_id_t *counter_ids,
102
+ _In_ sai_stats_mode_t mode,
103
+ _Out_ uint64_t *counters)
104
+ {
105
+ MUTEX ();
106
+
107
+ SWSS_LOG_ENTER ();
108
+
109
+ return SAI_STATUS_NOT_IMPLEMENTED;
110
+ }
111
+
112
+ sai_status_t redis_clear_table_meta_tunnel_entry_stats (
113
+ _In_ sai_object_id_t table_meta_tunnel_entry_id,
114
+ _In_ uint32_t number_of_counters,
115
+ _In_ const sai_stat_id_t *counter_ids)
116
+ {
117
+ MUTEX ();
118
+
119
+ SWSS_LOG_ENTER ();
120
+
121
+ return SAI_STATUS_NOT_IMPLEMENTED;
122
+ }
123
+
124
+ REDIS_GENERIC_QUAD (TABLE_META_TUNNEL_ENTRY,table_meta_tunnel_entry);
125
+
85
126
const sai_bmtor_api_t redis_bmtor_api = {
86
127
87
128
REDIS_GENERIC_QUAD_API (table_bitmap_classification_entry)
@@ -95,4 +136,10 @@ const sai_bmtor_api_t redis_bmtor_api = {
95
136
redis_get_table_bitmap_router_entry_stats,
96
137
redis_get_table_bitmap_router_entry_stats_ext,
97
138
redis_clear_table_bitmap_router_entry_stats,
139
+
140
+ REDIS_GENERIC_QUAD_API (table_meta_tunnel_entry)
141
+
142
+ redis_get_table_meta_tunnel_entry_stats,
143
+ redis_get_table_meta_tunnel_entry_stats_ext,
144
+ redis_clear_table_meta_tunnel_entry_stats,
98
145
};
0 commit comments