[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.00.1206010905390.6634@router.home>
Date: Fri, 1 Jun 2012 09:10:11 -0500 (CDT)
From: Christoph Lameter <cl@...ux.com>
To: Pekka Enberg <penberg@...nel.org>
cc: David Rientjes <rientjes@...gle.com>,
Andi Kleen <andi@...stfloor.org>, linux-kernel@...r.kernel.org,
Andi Kleen <ak@...ux.intel.com>
Subject: Re: [PATCH] slab/mempolicy: always use local policy from interrupt
context v3
On Fri, 1 Jun 2012, Pekka Enberg wrote:
> > I think the version proposed by David Mackey is more clear, it makes it
> > obvious that we don't want to dereference current in interrupt context
> > whereas that relies on short-circuiting your conditional in your approach.
>
> I like it better also. Christoph, Andi?
I dont like the conditional in the assignment followed by a test for NULL
which is also not easy to read.
Would prefer that the control flow be redesigned.
Something like
if (in_interrupt())
return numa_node_id();
policy = current->mempolicy
if (!policy || ...)
return numa_node_id();
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists