]> git.droids-corp.org - dpdk.git/commitdiff
doc: fix file argument of debug functions
authorMauricio Vasquez B <mauricio.vasquez@polito.it>
Fri, 2 Sep 2016 11:01:51 +0000 (13:01 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 13 Oct 2016 19:25:53 +0000 (21:25 +0200)
Previous patch updated the functions without updating all the comments.

Fixes: 591a9d7985c1 ("add FILE argument to debug functions")
Signed-off-by: Mauricio Vasquez B <mauricio.vasquez@polito.it>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/librte_eal/common/include/rte_malloc.h
lib/librte_eal/common/include/rte_memory.h
lib/librte_eal/common/include/rte_memzone.h
lib/librte_eal/common/include/rte_tailq.h
lib/librte_mbuf/rte_mbuf.h
lib/librte_mempool/rte_mempool.h
lib/librte_ring/rte_ring.h

index 74bb78c7c2f0c74cebeef853bd373de742937ef3..008ce134af846899ee84af757635e524956df43a 100644 (file)
@@ -294,7 +294,7 @@ rte_malloc_get_socket_stats(int socket,
 /**
  * Dump statistics.
  *
- * Dump for the specified type to the console. If the type argument is
+ * Dump for the specified type to a file. If the type argument is
  * NULL, all memory types will be dumped.
  *
  * @param f
index 2e69821c7f1f1727298725f1e5fcac3981b3edab..4aa5d1f77566cdcb1c3d3d6d619b88e6b5e1c0c6 100644 (file)
@@ -162,7 +162,7 @@ phys_addr_t rte_mem_virt2phy(const void *virt);
 const struct rte_memseg *rte_eal_get_physmem_layout(void);
 
 /**
- * Dump the physical memory layout to the console.
+ * Dump the physical memory layout to a file.
  *
  * @param f
  *   A pointer to a file for output
index 8e42cae2a5a688540b230db259dc7d27b6606cbf..1d0827f461e05a22a259dfcdb4bb28093700d119 100644 (file)
@@ -277,7 +277,7 @@ int rte_memzone_free(const struct rte_memzone *mz);
 const struct rte_memzone *rte_memzone_lookup(const char *name);
 
 /**
- * Dump all reserved memzones to the console.
+ * Dump all reserved memzones to a file.
  *
  * @param f
  *   A pointer to a file for output
index cc386e42808cc13fa001282e828893b47d84bad0..3aae098ae9a7279908c70d16efaab16427daf145 100644 (file)
@@ -107,7 +107,7 @@ struct rte_tailq_elem {
        RTE_TAILQ_CAST(rte_eal_tailq_lookup(name), struct_name)
 
 /**
- * Dump tail queues to the console.
+ * Dump tail queues to a file.
  *
  * @param f
  *   A pointer to a file for output
index f5eedda49254e7a875f00e85925de56db386187c..109e66680bf9d6a437b96e8bf993f7bf2f12b393 100644 (file)
@@ -1647,7 +1647,7 @@ static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail
 }
 
 /**
- * Dump an mbuf structure to the console.
+ * Dump an mbuf structure to a file.
  *
  * Dump all fields for the given packet mbuf and all its associated
  * segments (in the case of a chained buffer).
index e7a10e0f7a814d445b32bc07ae5557ff7c82e77c..440f3b1bac4b8f9eecca108acb375aaaec78f01f 100644 (file)
@@ -950,7 +950,7 @@ uint32_t rte_mempool_mem_iter(struct rte_mempool *mp,
        rte_mempool_mem_cb_t *mem_cb, void *mem_cb_arg);
 
 /**
- * Dump the status of the mempool to the console.
+ * Dump the status of the mempool to a file.
  *
  * @param f
  *   A pointer to a file for output
index dfe07a24d2e8812993ba4d8488eebb9cec7fa5e7..32b8c8d2c91f73f4e90702db6c3f8868b32cb52b 100644 (file)
@@ -341,7 +341,7 @@ void rte_ring_free(struct rte_ring *r);
 int rte_ring_set_water_mark(struct rte_ring *r, unsigned count);
 
 /**
- * Dump the status of the ring to the console.
+ * Dump the status of the ring to a file.
  *
  * @param f
  *   A pointer to a file for output