Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1235385

[PATCH 1/5] ftrace: remove redundant strsep in mod_callback

From Dmitry Safonov <0x7f454c46@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 1/5] ftrace: remove redundant strsep in mod_callback
Date 2015-09-29 18:50 +0200
Message-ID <qe6gh-3Gy-9@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


By now there isn't any subcommand for mod.

Before:
	sh$ echo '*:mod:ipv6:a' > set_ftrace_filter
	sh$ echo '*:mod:ipv6' > set_ftrace_filter
had the same results, but now first will result in:
	sh$ echo '*:mod:ipv6:a' > set_ftrace_filter
	-bash: echo: write error: Invalid argument

Also, I clarified ftrace_mod_callback code a little.

Signed-off-by: Dmitry Safonov <0x7f454c46@gmail.com>
---
 kernel/trace/ftrace.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index b0623ac..f87401b 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -3564,8 +3564,7 @@ static int
 ftrace_mod_callback(struct ftrace_hash *hash,
 		    char *func, char *cmd, char *param, int enable)
 {
-	char *mod;
-	int ret = -EINVAL;
+	int ret;
 
 	/*
 	 * cmd == 'mod' because we only registered this func
@@ -3576,16 +3575,12 @@ ftrace_mod_callback(struct ftrace_hash *hash,
 	 */
 
 	/* we must have a module name */
-	if (!param)
-		return ret;
-
-	mod = strsep(&param, ":");
-	if (!strlen(mod))
-		return ret;
+	if (!param || !strlen(param))
+		return -EINVAL;
 
-	ret = ftrace_match_module_records(hash, func, mod);
-	if (!ret)
-		ret = -EINVAL;
+	ret = ftrace_match_module_records(hash, func, param);
+	if (ret == 0)
+		return -EINVAL;
 	if (ret < 0)
 		return ret;
 
-- 
2.5.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 1/5] ftrace: remove redundant strsep in mod_callback Dmitry Safonov <0x7f454c46@gmail.com> - 2015-09-29 18:50 +0200
  [PATCH 3/5] ftrace: introduce ftrace_glob structure Dmitry Safonov <0x7f454c46@gmail.com> - 2015-09-29 18:50 +0200
  [PATCH 5/5] Documentation: ftrace: module globbing usage Dmitry Safonov <0x7f454c46@gmail.com> - 2015-09-29 18:50 +0200
  [PATCH 2/5] ftrace: clarify code for mod command Dmitry Safonov <0x7f454c46@gmail.com> - 2015-09-29 18:50 +0200
  [PATCH 4/5] ftrace: add module globbing Dmitry Safonov <0x7f454c46@gmail.com> - 2015-09-29 18:50 +0200
  Re: [PATCH 1/5] ftrace: remove redundant strsep in mod_callback Steven Rostedt <rostedt@goodmis.org> - 2015-09-29 21:20 +0200
    Re: [PATCH 1/5] ftrace: remove redundant strsep in mod_callback Дмитрий Сафонов   <0x7f454c46@gmail.com> - 2015-10-05 17:20 +0200

csiph-web