From: Steven Rostedt <rostedt@goodmis.org>
To: Ian Munsie <imunsie@au1.ibm.com>
Cc: Avantika Mathur <mathur@linux.vnet.ibm.com>,
Jason Baron <jbaron@redhat.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Ingo Molnar <mingo@redhat.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/6] trace syscalls: Remove redundant syscall_nr checks
Date: Tue, 07 Dec 2010 09:54:42 -0500 [thread overview]
Message-ID: <1291733682.16223.244.camel@gandalf.stny.rr.com> (raw)
In-Reply-To: <1291696151-4336-3-git-send-email-imunsie@au1.ibm.com>
On Tue, 2010-12-07 at 15:29 +1100, Ian Munsie wrote:
> From: Ian Munsie <imunsie@au1.ibm.com>
>
> With the ftrace events now checking if the syscall_nr is valid upon
> initialisation, there is no need to verify it when registering and
> unregistering the events, so remove the check.
I still like to keep these checks. I don't mind redundant checks that
are in slow paths, as they may catch a bug on a change in the future.
What you could do is change these to:
if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
-- Steve
>
> Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
> ---
> kernel/trace/trace_syscalls.c | 9 +--------
> 1 files changed, 1 insertions(+), 8 deletions(-)
>
> diff --git a/kernel/trace/trace_syscalls.c b/kernel/trace/trace_syscalls.c
> index 14f4c02..5e34b49 100644
> --- a/kernel/trace/trace_syscalls.c
> +++ b/kernel/trace/trace_syscalls.c
> @@ -367,8 +367,6 @@ int reg_event_syscall_enter(struct ftrace_event_call *call)
> int num;
>
> num = ((struct syscall_metadata *)call->data)->syscall_nr;
> - if (num < 0 || num >= NR_syscalls)
> - return -ENOSYS;
> mutex_lock(&syscall_trace_lock);
> if (!sys_refcount_enter)
> ret = register_trace_sys_enter(ftrace_syscall_enter, NULL);
> @@ -385,8 +383,6 @@ void unreg_event_syscall_enter(struct ftrace_event_call *call)
> int num;
>
> num = ((struct syscall_metadata *)call->data)->syscall_nr;
> - if (num < 0 || num >= NR_syscalls)
> - return;
> mutex_lock(&syscall_trace_lock);
> sys_refcount_enter--;
> clear_bit(num, enabled_enter_syscalls);
> @@ -401,8 +397,7 @@ int reg_event_syscall_exit(struct ftrace_event_call *call)
> int num;
>
> num = ((struct syscall_metadata *)call->data)->syscall_nr;
> - if (num < 0 || num >= NR_syscalls)
> - return -ENOSYS;
> +
> mutex_lock(&syscall_trace_lock);
> if (!sys_refcount_exit)
> ret = register_trace_sys_exit(ftrace_syscall_exit, NULL);
> @@ -419,8 +414,6 @@ void unreg_event_syscall_exit(struct ftrace_event_call *call)
> int num;
>
> num = ((struct syscall_metadata *)call->data)->syscall_nr;
> - if (num < 0 || num >= NR_syscalls)
> - return;
> mutex_lock(&syscall_trace_lock);
> sys_refcount_exit--;
> clear_bit(num, enabled_exit_syscalls);
next prev parent reply other threads:[~2010-12-07 14:54 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1291696151-4336-1-git-send-email-imunsie@au1.ibm.com>
2010-12-07 4:29 ` [PATCH 1/6] ftrace syscalls: don't add events for unmapped syscalls Ian Munsie
2010-12-07 4:29 ` [PATCH 2/6] trace syscalls: Remove redundant syscall_nr checks Ian Munsie
2010-12-07 14:54 ` Steven Rostedt [this message]
2010-12-07 23:47 ` Ian Munsie
2010-12-07 4:29 ` [PATCH 3/6] ftrace syscalls: Make arch_syscall_addr weak Ian Munsie
2010-12-07 4:29 ` [PATCH 4/6] ftrace syscalls: Allow arch specific syscall symbol matching Ian Munsie
2010-12-07 4:56 ` Mike Frysinger
2010-12-07 5:06 ` Ian Munsie
2010-12-07 5:18 ` Steven Rostedt
2010-12-07 4:29 ` [PATCH 5/6] trace, powerpc: Implement raw syscall tracepoints on PowerPC Ian Munsie
2010-12-07 4:29 ` [PATCH 6/6] trace syscalls: Early terminate search for sys_ni_syscall Ian Munsie
2010-12-07 5:00 ` PowerPC, ftrace: Add PPC raw syscall tracepoints & ftrace fixes (subset from v2) Ian Munsie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1291733682.16223.244.camel@gandalf.stny.rr.com \
--to=rostedt@goodmis.org \
--cc=fweisbec@gmail.com \
--cc=imunsie@au1.ibm.com \
--cc=jbaron@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathur@linux.vnet.ibm.com \
--cc=mingo@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®