From e1545b393a7e53b3dda09eefe2d7ecda4b4d49cf Mon Sep 17 00:00:00 2001 From: Sergio Gonzalez Monroy Date: Fri, 20 Feb 2015 12:10:52 +0000 Subject: [PATCH] mbuf: fix a couple of doxygen comments Fix a couple of doxygen comments in mbuf structure: - seqn had no doxygen syntax. - usr was not generating proper link to function. Signed-off-by: Sergio Gonzalez Monroy Acked-by: Thomas Monjalon --- lib/librte_mbuf/rte_mbuf.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h index 6b1e50d4f6..17ba7915dc 100644 --- a/lib/librte_mbuf/rte_mbuf.h +++ b/lib/librte_mbuf/rte_mbuf.h @@ -285,11 +285,10 @@ struct rte_mbuf { PKT_RX_FDIR_* flag in ol_flags. */ } fdir; /**< Filter identifier if FDIR enabled */ uint32_t sched; /**< Hierarchical scheduler */ - uint32_t usr; /**< User defined tags. See @rte_distributor_process */ + uint32_t usr; /**< User defined tags. See rte_distributor_process() */ } hash; /**< hash information */ - /* sequence number - field used in distributor and reorder library */ - uint32_t seqn; + uint32_t seqn; /**< Sequence number. See also rte_reorder_insert() */ /* second cache line - fields only used in slow path or on TX */ MARKER cacheline1 __rte_cache_aligned; -- 2.20.1