All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Don't set wildcard filter for non-existing module
@ 2017-09-28 11:11 Jan Kiszka
  2017-10-03 21:44 ` Steven Rostedt
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2017-09-28 11:11 UTC (permalink / raw)
  To: Steven Rostedt, Linux Kernel Mailing List

From: Jan Kiszka <jan.kiszka@siemens.com>

If filter_mod is NULL, there is no need to add it to the list. This
avoids premature termination of trace-cmd on systems without
CONFIG_DYNAMIC_FTRACE.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 trace-record.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trace-record.c b/trace-record.c
index 020a373..a0b6541 100644
--- a/trace-record.c
+++ b/trace-record.c
@@ -4680,7 +4680,7 @@ void trace_record (int argc, char **argv)
 		}
 	}
 
-	if (!filtered)
+	if (!filtered && instance->filter_mod)
 		add_func(&instance->filter_funcs,
 			 instance->filter_mod, "*");
 
-- 
2.12.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-10-03 21:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-28 11:11 [PATCH] Don't set wildcard filter for non-existing module Jan Kiszka
2017-10-03 21:44 ` Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.