From 545fa736b94bc4381bc9ddf4019184e8f8a9516a Mon Sep 17 00:00:00 2001 From: Viacheslav Ovsiienko Date: Wed, 22 Jan 2020 08:50:35 +0000 Subject: [PATCH] mbuf: fix pinned memory function style Minor style issue is fixed. Fixes: 6c8e50c2e549 ("mbuf: create pool with external memory buffers") Signed-off-by: Viacheslav Ovsiienko Acked-by: Olivier Matz --- lib/librte_mbuf/rte_mbuf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_mbuf/rte_mbuf.c b/lib/librte_mbuf/rte_mbuf.c index 56a1a98a6c..cd5794d4a5 100644 --- a/lib/librte_mbuf/rte_mbuf.c +++ b/lib/librte_mbuf/rte_mbuf.c @@ -118,7 +118,8 @@ rte_pktmbuf_init(struct rte_mempool *mp, * indirect buffer) mbufs on detaching from the mbuf with pinned external * buffer. */ -static void rte_pktmbuf_free_pinned_extmem(void *addr, void *opaque) +static void +rte_pktmbuf_free_pinned_extmem(void *addr, void *opaque) { struct rte_mbuf *m = opaque; -- 2.20.1