From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH ] mbuf: fix a typo Date: Mon, 11 Feb 2019 20:52:18 +0200 Message-ID: <20190211185218.13067-1-ramirose@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: olivier.matz@6wind.com, stable@dpdk.org, Rami Rosen To: dev@dpdk.org Return-path: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- lib/librte_mbuf/rte_mbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h index a7f67023a..d961ccaf6 100644 --- a/lib/librte_mbuf/rte_mbuf.h +++ b/lib/librte_mbuf/rte_mbuf.h @@ -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. -- 2.19.2