From: Oleg Nesterov <oleg@redhat.com>
To: Matt Fleming <matt@console-pimps.org>
Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>,
linux-kernel@vger.kernel.org,
Matt Fleming <matt.fleming@linux.intel.com>
Subject: Re: [PATCH] avr32: Don't acquire siglock when reading sighand action
Date: Sat, 2 Apr 2011 18:37:22 +0200 [thread overview]
Message-ID: <20110402163722.GA2973@redhat.com> (raw)
In-Reply-To: <1301511856-9370-1-git-send-email-matt@console-pimps.org>
On 03/30, Matt Fleming wrote:
>
> From: Matt Fleming <matt.fleming@linux.intel.com>
>
> There's no need to acquire the siglock when simply reading the action
> handler. We would need to lock it if we were modifying the handler or
> we were protecting it from modification across function calls, but if
> we're just reading it, there's no need to lock it
Agreed, ->siglock buys nothing.
But,
> --- a/arch/avr32/kernel/traps.c
> +++ b/arch/avr32/kernel/traps.c
> @@ -106,9 +106,7 @@ void _exception(long signr, struct pt_regs *regs, int code,
> if (is_global_init(current)) {
is_global_init() is not right in theory, /sbin/init can be multithreaded.
And, this doesn't cover the sub-namespace inits... I'd suggest to check
SIGNAL_UNKILLABLE, but looking closer I think you can simply remove this
code.
The comment says:
/*
* Init gets no signals that it doesn't have a handler for.
* That's all very well, but if it has caused a synchronous
* exception and we ignore the resulting signal, it will just
* generate the same exception over and over again and we get
* nowhere. Better to kill it and let the kernel panic.
*/
This is correct, but please look at force_sig_info(), it already does
what you need:
* We don't want to have recursive SIGSEGV's etc, for example,
* that is why we also clear SIGNAL_UNKILLABLE.
Oleg.
next prev parent reply other threads:[~2011-04-02 16:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-30 19:04 [PATCH] avr32: Don't acquire siglock when reading sighand action Matt Fleming
2011-04-02 16:37 ` Oleg Nesterov [this message]
2011-04-04 14:15 ` Matt Fleming
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=20110402163722.GA2973@redhat.com \
--to=oleg@redhat.com \
--cc=hans-christian.egtvedt@atmel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matt.fleming@linux.intel.com \
--cc=matt@console-pimps.org \
/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