From: Mathieu Desnoyers Date: Thu, 14 Feb 2019 16:40:50 +0000 (-0500) Subject: Cleanup: tp mempool: Remove logically dead code X-Git-Tag: v2.12.0-pre~65 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=c994b2df91f004b4ae1af9c240e113987ce03626 Cleanup: tp mempool: Remove logically dead code Found by Coverity: CID 1391045 (#1 of 1): Logically dead code (DEADCODE) Signed-off-by: Mathieu Desnoyers --- diff --git a/lttng-tp-mempool.c b/lttng-tp-mempool.c index 9db6046b..da476c5e 100644 --- a/lttng-tp-mempool.c +++ b/lttng-tp-mempool.c @@ -138,19 +138,12 @@ void lttng_tp_mempool_free(void *ptr) struct lttng_tp_buf_entry *entry; struct per_cpu_buf *cpu_buf; - if (!ptr) { + if (!ptr) goto end; - } - entry = container_of(ptr, struct lttng_tp_buf_entry, buf); - if (!entry) { - goto end; - } - cpu_buf = per_cpu_ptr(pool, entry->cpu); - if (!cpu_buf) { + if (!cpu_buf) goto end; - } /* Add it to the free list. */ list_add_tail(&entry->list, &cpu_buf->free_list);