Acked-by: Huisong Li <lihuis...@huawei.com>

在 2023/10/20 22:46, Ferruh Yigit 写道:
static function `rte_mempool_do_generic_get()` returns zero on success,
not >=0 as its function comment documents.

Since this function called by public API, the comment causes confusion
on the public API return value.

Fixing the internal function documentation for return value.

Fixes: af75078fece3 ("first public release")
Cc: sta...@dpdk.org

Reported-by: Mahesh Adulla <mahesh.adu...@amd.com>
Signed-off-by: Ferruh Yigit <ferruh.yi...@amd.com>
---
  .mailmap                  | 1 +
  lib/mempool/rte_mempool.h | 2 +-
  2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.mailmap b/.mailmap
index 3f5bab26a81f..bfe451980f1c 100644
--- a/.mailmap
+++ b/.mailmap
@@ -836,6 +836,7 @@ Maciej Rabeda <maciej.rab...@intel.com>
  Maciej Szwed <maciej.sz...@intel.com>
  Madhu Chittim <madhu.chit...@intel.com>
  Madhuker Mythri <madhuker.myt...@oracle.com>
+Mahesh Adulla <mahesh.adu...@amd.com>
  Mahipal Challa <mcha...@marvell.com>
  Mah Yock Gen <yock.gen....@intel.com>
  Mairtin o Loingsigh <mairtin.oloings...@intel.com>
diff --git a/lib/mempool/rte_mempool.h b/lib/mempool/rte_mempool.h
index f70bf36080fb..86598bc639e6 100644
--- a/lib/mempool/rte_mempool.h
+++ b/lib/mempool/rte_mempool.h
@@ -1484,7 +1484,7 @@ rte_mempool_put(struct rte_mempool *mp, void *obj)
   * @param cache
   *   A pointer to a mempool cache structure. May be NULL if not needed.
   * @return
- *   - >=0: Success; number of objects supplied.
+ *   - 0: Success; number of objects supplied.
   *   - <0: Error; code of driver dequeue function.
   */
  static __rte_always_inline int

Reply via email to