[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1326265451_1659@mail4.comsite.net>
Date: Wed, 11 Jan 2012 01:04:11 -0600
From: Milton Miller <miltonm@....com>
To: Gilad Ben-Yossef <gilad@...yossef.com>,
<linux-kernel@...r.kernel.org>
Cc: Christoph Lameter <cl@...ux.com>,
Chris Metcalf <cmetcalf@...era.com>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Frederic Weisbecker <fweisbec@...il.com>,
Russell King <linux@....linux.org.uk>, <linux-mm@...ck.org>,
Pekka Enberg <penberg@...nel.org>,
Matt Mackall <mpm@...enic.com>, Rik van Riel <riel@...hat.com>,
Andi Kleen <andi@...stfloor.org>,
Sasha Levin <levinsasha928@...il.com>,
Mel Gorman <mel@....ul.ie>,
Andrew Morton <akpm@...ux-foundation.org>,
Alexander Viro <viro@...iv.linux.org.uk>,
<linux-fsdevel@...r.kernel.org>, Avi Kivity <avi@...hat.com>,
Michal Nazarewicz <mina86@...a86.org>,
Kosaki Motohiro <kosaki.motohiro@...il.com>
Subject: Re: [PATCH v6 2/8] arm: move arm over to generic on_each_cpu_mask
On Sun Jan 08 2012 about 11:28:02 EST, Gilad Ben-Yossef wrote:
> Note that the generic version is a little different then the Arm one:
>
> 1. It has the mask as first parameter
> 2. It calls the function on the calling CPU with interrupts disabled,
> but this should be OK since the function is called on the other CPUs
> with interrupts disabled anyway.
While the split is good for review, since this function uses the same
name we will need to combine 1-3 to avoid a bisection build error.
- on_each_cpu_mask(ipi_flush_tlb_page, &ta, 1, mm_cpumask(vma->vm_mm));
+ on_each_cpu_mask(mm_cpumask(vma->vm_mm), ipi_flush_tlb_page,
+ &ta, 1);
Since you are only rearranging the arguments and not adding any
characters, my first thought would be just leave the line long.
However, looking at the 80 column wrap I see how "mm));" is more
clearly wrapped text vs ", 1);".
My suggestion is to create a local var to shorten the line, probably
struct mm_struct *mm, but a cpumask_var_t would also work.
Overall a minor point, I'm ok if this doesn't happen.
milton
--
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