All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
To: Andrew Morton <akpm@osdl.org>
Cc: Christoph Lameter <clameter@engr.sgi.com>,
	torvalds@osdl.org, kravetz@us.ibm.com, raybry@mpdtxmail.amd.com,
	lee.schermerhorn@hp.com, linux-kernel@vger.kernel.org,
	magnus.damm@gmail.com, pj@sgi.com, haveblue@us.ibm.com,
	kamezawa.hiroyu@jp.fujitsu.com
Subject: Re: [PATCH 1/5] Swap Migration V5: LRU operations
Date: Sat, 31 Dec 2005 05:32:31 -0200	[thread overview]
Message-ID: <20051231073231.GA12526@dmt.cnet> (raw)
In-Reply-To: <20051115104605.5020764d.akpm@osdl.org>

On Tue, Nov 15, 2005 at 10:46:05AM -0800, Andrew Morton wrote:
> Christoph Lameter <clameter@engr.sgi.com> wrote:
> >
> > On Tue, 15 Nov 2005, Andrew Morton wrote:
> > 
> > > But lru_add_drain_per_cpu() will be called from interrupt context: the IPI
> > > handler.
> > 
> > Ahh.. thought you meant the lru_add_drain run on the local processor.
> >  
> > > I'm asking whether it is safe for the IPI handler to reenable interupts on
> > > all architectures.  It might be so, but I don't recall ever having seen it
> > > discussed, nor have I seen code which does it.
> > 
> > smp_call_function is also used by the slab allocator to drain the 
> > pages. All the spinlocks in there and those of the page allocator (called 
> > for freeing pages) use spin_lock_irqsave. Why is this not used for 
> > lru_add_drain() and friends?
> 
> It's a microoptimisation - lru_add_drain() is always called with local irqs
> enabled, so no need for irqsave.
> 
> I don't think spin_lock_irqsave() is notably more expensive than
> spin_lock_irq() - the cost is in the irq disabling and in the atomic
> operation.

Pardon me, but spin_lock_irqsave() needs to write data to the stack,
which is likely to be cache-cold, so you have to fault the cacheline in 
from slow memory.

And thats much slower than the atomic operation, isnt it?

  reply	other threads:[~2005-12-31  7:32 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-01  3:12 [PATCH 0/5] Swap Migration V5: Overview Christoph Lameter
2005-11-01  3:12 ` [PATCH 1/5] Swap Migration V5: LRU operations Christoph Lameter
2005-11-07  7:35   ` Magnus Damm
2005-11-07 17:41     ` Christoph Lameter
2005-11-07 18:12       ` Christoph Lameter
2005-11-15  5:44   ` Andrew Morton
2005-11-15 16:38     ` Christoph Lameter
2005-11-15 16:43       ` SKB tutorial, Blog, and NET TODO Surya Satyavolu
2005-11-15 18:02       ` [PATCH 1/5] Swap Migration V5: LRU operations Andrew Morton
2005-11-15 18:22         ` Christoph Lameter
2005-11-15 18:46           ` Andrew Morton
2005-12-31  7:32             ` Marcelo Tosatti [this message]
2005-11-15 18:08       ` Lee Schermerhorn
2005-11-01  3:12 ` [PATCH 2/5] Swap Migration V5: PF_SWAPWRITE to allow writing to swap Christoph Lameter
2005-11-01  3:12 ` [PATCH 3/5] Swap Migration V5: migrate_pages() function Christoph Lameter
2005-11-01  8:06   ` Rob Landley
2005-11-01  8:59     ` Dave Hansen
2005-11-01  3:12 ` [PATCH 4/5] Swap Migration V5: MPOL_MF_MOVE interface Christoph Lameter
2005-11-01  3:13 ` [PATCH 5/5] Swap Migration V5: sys_migrate_pages interface Christoph Lameter
2005-11-01  5:27   ` Andrew Morton
2005-11-01 12:00     ` linux-os (Dick Johnson)
2005-11-01 18:10       ` Christoph Lameter
2005-11-01 17:39     ` Christoph Lameter
2005-11-01  3:25 ` [PATCH 0/5] Swap Migration V5: Overview Andrew Morton
2005-11-01  8:08   ` Rob Landley
2005-11-01 17:44     ` Christoph Lameter
2005-11-02  5:30       ` Hirokazu Takahashi
2005-11-02  8:31         ` Christoph Lameter
2005-11-02  8:45           ` Hirokazu Takahashi
2005-11-02 12:26           ` Hirokazu Takahashi
2005-11-02 13:08             ` Hirokazu Takahashi
2005-11-02 14:11             ` Kamezawa Hiroyuki
2005-11-02 15:48             ` Christoph Lameter
2005-11-02 20:00     ` Christoph Lameter
2005-11-01 10:22   ` KAMEZAWA Hiroyuki
2005-11-01 17:19   ` Christoph Lameter

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=20051231073231.GA12526@dmt.cnet \
    --to=marcelo.tosatti@cyclades.com \
    --cc=akpm@osdl.org \
    --cc=clameter@engr.sgi.com \
    --cc=haveblue@us.ibm.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kravetz@us.ibm.com \
    --cc=lee.schermerhorn@hp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    --cc=pj@sgi.com \
    --cc=raybry@mpdtxmail.amd.com \
    --cc=torvalds@osdl.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.