mbuf: fix a typo
authorRami Rosen <ramirose@gmail.com>
Mon, 11 Feb 2019 18:52:18 +0000 (20:52 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 12 Feb 2019 13:32:01 +0000 (14:32 +0100)
This trivial patch fixes a typo in rte_mbuf.h.

Fixes: f20b50b946da ("mbuf: optimize refcnt update")
Cc: stable@dpdk.org
Signed-off-by: Rami Rosen <ramirose@gmail.com>
lib/librte_mbuf/rte_mbuf.h

index a7f6702..d961cca 100644 (file)
@@ -973,7 +973,7 @@ rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
 {
        /*
         * The atomic_add is an expensive operation, so we don't want to
-        * call it in the case where we know we are the uniq holder of
+        * call it in the case where we know we are the unique holder of
         * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
         * operation has to be used because concurrent accesses on the
         * reference counter can occur.