mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Ingo Molnar <mingo@kernel.org>
Cc: Jia-Ju Bai <baijiaju1990@gmail.com>,
	mingo@redhat.com, hpa@zytor.com, jgross@suse.com,
	douly.fnst@cn.fujitsu.com, kkamagui@gmail.com,
	gregkh@linuxfoundation.org, mka@chromium.org,
	linux-kernel@vger.kernel.org, x86@kernel.org
Subject: Re: [PATCH] kernel: x86: apic: Replace GFP_ATOMIC with GFP_KERNEL in __add_pin_to_irq_node
Date: Tue, 13 Feb 2018 17:20:18 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.21.1802131720030.1130@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20180213161659.aribhtrooupdv4m4@gmail.com>

On Tue, 13 Feb 2018, Ingo Molnar wrote:
> * Thomas Gleixner <tglx@linutronix.de> wrote:
> > On Tue, 13 Feb 2018, Ingo Molnar wrote:
> > > * Jia-Ju Bai <baijiaju1990@gmail.com> wrote:
> > > 
> > > > The function __add_pin_to_irq_node is not called in atomic context.
> > > > Thus GFP_ATOMIC is not necessary, and it can be replaced with GFP_KERNEL.
> > > > 
> > > > Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
> > > > ---
> > > >  arch/x86/kernel/apic/io_apic.c |    2 +-
> > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > > 
> > > > diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
> > > > index 201579d..665c013 100644
> > > > --- a/arch/x86/kernel/apic/io_apic.c
> > > > +++ b/arch/x86/kernel/apic/io_apic.c
> > > > @@ -379,7 +379,7 @@ static int __add_pin_to_irq_node(struct mp_chip_data *data,
> > > >  		if (entry->apic == apic && entry->pin == pin)
> > > >  			return 0;
> > > >  
> > > > -	entry = kzalloc_node(sizeof(struct irq_pin_list), GFP_ATOMIC, node);
> > > > +	entry = kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
> > > >  	if (!entry) {
> > > >  		pr_err("can not alloc irq_pin_list (%d,%d,%d)\n",
> > > >  		       node, apic, pin);
> > > 
> > > NAK: this is called in an atomic section: with IRQs disabled ...
> > 
> > The only invocation where this happens with IRQs disabled is the early
> > check_timer() code which runs _before_ the scheduler is working. GFP_KERNEL
> > is valid during that phase. All other call sites have interrupts enabled.
> 
> Yeah, so at minimum there's a mismatch between the changelog:
> 
> > > > The function __add_pin_to_irq_node is not called in atomic context.
> 
> ... and actual behavior. What you wrote should be part of the changelog I suspect.

Fair enough.

      reply	other threads:[~2018-02-13 16:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-24  1:40 Jia-Ju Bai
2018-02-13 15:56 ` Ingo Molnar
2018-02-13 16:12   ` Thomas Gleixner
2018-02-13 16:16     ` Ingo Molnar
2018-02-13 16:20       ` Thomas Gleixner [this message]

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=alpine.DEB.2.21.1802131720030.1130@nanos.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=baijiaju1990@gmail.com \
    --cc=douly.fnst@cn.fujitsu.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hpa@zytor.com \
    --cc=jgross@suse.com \
    --cc=kkamagui@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=mingo@redhat.com \
    --cc=mka@chromium.org \
    --cc=x86@kernel.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

all inboxes | Powered by JetHome®