aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/spec/traffic_mngr.h
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2023-08-08 11:02:27 +0300
committerGitHub <noreply@github.com>2023-08-08 11:02:27 +0300
commitde97121a2e3afa072f7c51a0570f4b3bed0236c2 (patch)
tree1f34d2767951f54d11f0b9c8d48b0db04490d2c1 /include/odp/api/spec/traffic_mngr.h
parent2b359fc1759726826cf4e2afddbd0b7e39fab4c7 (diff)
parent1200684b94bf18ae98ba63fb49e9cda546b4832a (diff)
Merge ODP v1.41.1.0v1.41.1.0_DPDK_22.11
Merge ODP linux-generic v1.41.1.0 into linux-dpdk.
Diffstat (limited to 'include/odp/api/spec/traffic_mngr.h')
-rw-r--r--include/odp/api/spec/traffic_mngr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/odp/api/spec/traffic_mngr.h b/include/odp/api/spec/traffic_mngr.h
index 9bd735a7a..2331cc133 100644
--- a/include/odp/api/spec/traffic_mngr.h
+++ b/include/odp/api/spec/traffic_mngr.h
@@ -206,19 +206,19 @@ typedef struct odp_tm_queue_stats_capability_t {
union {
/** Statistics counters in a bit field structure */
struct {
- /** @see odp_tm_queue_stats_t::octets */
+ /** See odp_tm_queue_stats_t::octets */
uint64_t octets : 1;
- /** @see odp_tm_queue_stats_t::packets */
+ /** See odp_tm_queue_stats_t::packets */
uint64_t packets : 1;
- /** @see odp_tm_queue_stats_t::discards */
+ /** See odp_tm_queue_stats_t::discards */
uint64_t discards : 1;
- /** @see odp_tm_queue_stats_t::discard_octets */
+ /** See odp_tm_queue_stats_t::discard_octets */
uint64_t discard_octets : 1;
- /** @see odp_tm_queue_stats_t::errors */
+ /** See odp_tm_queue_stats_t::errors */
uint64_t errors : 1;
} counter;