From: Jason Ish Date: Fri, 4 Oct 2024 23:02:36 +0000 (-0600) Subject: threading: remove TM_FLAG_LOGAPI_TM as its not used X-Git-Tag: suricata-8.0.0-beta1~826 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=415c5786de7a622a9019708b655168ed1d0c9d79;p=thirdparty%2Fsuricata.git threading: remove TM_FLAG_LOGAPI_TM as its not used This flag is never set, remove. --- diff --git a/src/tm-modules.h b/src/tm-modules.h index 70817fb079..f155089e2c 100644 --- a/src/tm-modules.h +++ b/src/tm-modules.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2014 Open Information Security Foundation +/* Copyright (C) 2007-2024 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free @@ -33,9 +33,8 @@ #define TM_FLAG_DECODE_TM 0x02 #define TM_FLAG_STREAM_TM 0x04 #define TM_FLAG_DETECT_TM 0x08 -#define TM_FLAG_LOGAPI_TM 0x10 /**< TM is run by Log API */ -#define TM_FLAG_MANAGEMENT_TM 0x20 -#define TM_FLAG_COMMAND_TM 0x40 +#define TM_FLAG_MANAGEMENT_TM 0x10 +#define TM_FLAG_COMMAND_TM 0x20 typedef TmEcode (*ThreadInitFunc)(ThreadVars *, const void *, void **); typedef TmEcode (*ThreadDeinitFunc)(ThreadVars *, void *); diff --git a/src/util-profiling.c b/src/util-profiling.c index 56c3155728..101b1e5ac8 100644 --- a/src/util-profiling.c +++ b/src/util-profiling.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2023 Open Information Security Foundation +/* Copyright (C) 2007-2024 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free @@ -434,9 +434,6 @@ void SCProfilingDumpPacketStats(void) #endif total = 0; for (int m = 0; m < TMM_SIZE; m++) { - if (tmm_modules[m].flags & TM_FLAG_LOGAPI_TM) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data4[m][p]; total += pd->tot; @@ -447,9 +444,6 @@ void SCProfilingDumpPacketStats(void) } for (int m = 0; m < TMM_SIZE; m++) { - if (tmm_modules[m].flags & TM_FLAG_LOGAPI_TM) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data4[m][p]; if (pd->cnt == 0) { @@ -472,9 +466,6 @@ void SCProfilingDumpPacketStats(void) } for (int m = 0; m < TMM_SIZE; m++) { - if (tmm_modules[m].flags & TM_FLAG_LOGAPI_TM) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data6[m][p]; if (pd->cnt == 0) { @@ -601,9 +592,6 @@ void SCProfilingDumpPacketStats(void) #endif total = 0; for (int m = 0; m < TMM_SIZE; m++) { - if (!(tmm_modules[m].flags & TM_FLAG_LOGAPI_TM)) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data4[m][p]; total += pd->tot; @@ -614,9 +602,6 @@ void SCProfilingDumpPacketStats(void) } for (int m = 0; m < TMM_SIZE; m++) { - if (!(tmm_modules[m].flags & TM_FLAG_LOGAPI_TM)) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data4[m][p]; if (pd->cnt == 0) { @@ -639,9 +624,6 @@ void SCProfilingDumpPacketStats(void) } for (int m = 0; m < TMM_SIZE; m++) { - if (!(tmm_modules[m].flags & TM_FLAG_LOGAPI_TM)) - continue; - for (int p = 0; p < 257; p++) { SCProfilePacketData *pd = &packet_profile_tmm_data6[m][p]; if (pd->cnt == 0) {