public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jesper Dangaard Brouer <brouer@redhat.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Matthew Wilcox <willy@infradead.org>,
	Pankaj Gupta <pagupta@redhat.com>,
	Tariq Toukan <ttoukan.linux@gmail.com>,
	Mel Gorman <mgorman@techsingularity.net>,
	Tariq Toukan <tariqt@mellanox.com>,
	netdev@vger.kernel.org, akpm@linux-foundation.org,
	linux-mm <linux-mm@kvack.org>,
	Saeed Mahameed <saeedm@mellanox.com>,
	linux-kernel@vger.kernel.org,
	Thomas Gleixner <tglx@linutronix.de>,
	brouer@redhat.com
Subject: Re: in_irq_or_nmi() and RFC patch
Date: Thu, 30 Mar 2017 11:46:50 +0200	[thread overview]
Message-ID: <20170330114650.297573a4@redhat.com> (raw)
In-Reply-To: <20170330073502.4wl66zyz7e4z4aes@hirez.programming.kicks-ass.net>

On Thu, 30 Mar 2017 09:35:02 +0200
Peter Zijlstra <peterz@infradead.org> wrote:

> On Thu, Mar 30, 2017 at 09:12:23AM +0200, Jesper Dangaard Brouer wrote:
> > On Thu, 30 Mar 2017 08:49:58 +0200
> > Peter Zijlstra <peterz@infradead.org> wrote:
> >   
> > > On Wed, Mar 29, 2017 at 09:44:41PM +0200, Jesper Dangaard Brouer wrote:  
> > > > @@ -2481,7 +2481,11 @@ void free_hot_cold_page(struct page *page, bool cold)
> > > >  	unsigned long pfn = page_to_pfn(page);
> > > >  	int migratetype;
> > > >  
> > > > -	if (in_interrupt()) {
> > > > +	/*
> > > > +	 * Exclude (hard) IRQ and NMI context from using the pcplists.
> > > > +	 * But allow softirq context, via disabling BH.
> > > > +	 */
> > > > +	if (in_irq() || irqs_disabled()) {    
> > > 
> > > Why do you need irqs_disabled() ?   
> > 
> > Because further down I call local_bh_enable(), which calls
> > __local_bh_enable_ip() which triggers a warning during early boot on:
> > 
> >   WARN_ON_ONCE(in_irq() || irqs_disabled());
> > 
> > It looks like it is for supporting CONFIG_TRACE_IRQFLAGS.  
> 
> Ah, no. Its because when you do things like:
> 
> 	local_irq_disable();
> 	local_bh_enable();
> 	local_irq_enable();
> 
> you can loose a pending softirq.
> 
> Bugger.. that irqs_disabled() is something we could do without.

Yes, I really don't like adding this irqs_disabled() check here.

> I'm thinking that when tglx finishes his soft irq disable patches for
> x86 (same thing ppc also does) we can go revert all these patches.
> 
> Thomas, see:
> 
>   https://lkml.kernel.org/r/20170301144845.783f8cad@redhat.com

The summary is Mel and I found a way to optimized the page allocator,
by avoiding a local_irq_{save,restore} operation, see commit
374ad05ab64d ("mm, page_alloc: only use per-cpu allocator for irq-safe
requests")  [1] https://git.kernel.org/davem/net-next/c/374ad05ab64d696

But Tariq discovered that this caused a regression for 100Gbit/s NICs,
as the patch excluded softirq from using the per-cpu-page (PCP) lists.
As DMA RX page-refill happens in softirq context.

Now we are trying to re-enable allowing softirq to use the PCP.
My proposal is: https://lkml.kernel.org/r/20170329214441.08332799@redhat.com
The alternative is to revert this optimization.

-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Principal Kernel Engineer at Red Hat
  LinkedIn: http://www.linkedin.com/in/brouer

  reply	other threads:[~2017-03-30  9:47 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20170322234004.kffsce4owewgpqnm@techsingularity.net>
     [not found] ` <20170323144347.1e6f29de@redhat.com>
     [not found]   ` <20170323145133.twzt4f5ci26vdyut@techsingularity.net>
     [not found]     ` <779ab72d-94b9-1a28-c192-377e91383b4e@gmail.com>
     [not found]       ` <1fc7338f-2b36-75f7-8a7e-8321f062207b@gmail.com>
     [not found]         ` <2123321554.7161128.1490599967015.JavaMail.zimbra@redhat.com>
     [not found]           ` <20170327105514.1ed5b1ba@redhat.com>
     [not found]             ` <20170327143947.4c237e54@redhat.com>
     [not found]               ` <20170327141518.GB27285@bombadil.infradead.org>
     [not found]                 ` <20170327171500.4beef762@redhat.com>
2017-03-27 16:58                   ` in_irq_or_nmi() Matthew Wilcox
2017-03-29  8:12                     ` in_irq_or_nmi() Peter Zijlstra
2017-03-29  8:59                       ` in_irq_or_nmi() Jesper Dangaard Brouer
2017-03-29  9:19                         ` in_irq_or_nmi() Peter Zijlstra
2017-03-29 18:12                           ` in_irq_or_nmi() Matthew Wilcox
2017-03-29 19:11                             ` in_irq_or_nmi() Jesper Dangaard Brouer
2017-03-29 19:44                               ` in_irq_or_nmi() and RFC patch Jesper Dangaard Brouer
2017-03-30  6:49                                 ` Peter Zijlstra
2017-03-30  7:12                                   ` Jesper Dangaard Brouer
2017-03-30  7:35                                     ` Peter Zijlstra
2017-03-30  9:46                                       ` Jesper Dangaard Brouer [this message]
2017-03-30 13:04                                 ` Mel Gorman
2017-03-30 15:07                                   ` Jesper Dangaard Brouer
2017-04-03 12:05                                     ` Mel Gorman
2017-04-05  8:53                                       ` Mel Gorman

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=20170330114650.297573a4@redhat.com \
    --to=brouer@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mgorman@techsingularity.net \
    --cc=netdev@vger.kernel.org \
    --cc=pagupta@redhat.com \
    --cc=peterz@infradead.org \
    --cc=saeedm@mellanox.com \
    --cc=tariqt@mellanox.com \
    --cc=tglx@linutronix.de \
    --cc=ttoukan.linux@gmail.com \
    --cc=willy@infradead.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