[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A84E766.3070904@kernel.org>
Date: Fri, 14 Aug 2009 13:26:14 +0900
From: Tejun Heo <tj@...nel.org>
To: David Miller <davem@...emloft.net>
CC: mingo@...e.hu, linux-kernel@...r.kernel.org,
sparclinux@...r.kernel.org
Subject: Re: [PATCH 2/2 2.6.31-rc5 REPOST] percpu, sparc64: fix sparse possible
cpu map handling
David Miller wrote:
> From: Tejun Heo <tj@...nel.org>
> Date: Wed, 12 Aug 2009 15:10:29 +0900
>
>> Tejun Heo wrote:
>>> Ingo Molnar wrote:
>>>> for the x86 bits:
>>>>
>>>> Acked-by: Ingo Molnar <mingo@...e.hu>
>>>>
>>>> Once Dave acks it i suspect you can send it to Linus directly?
>> Aieeeee, no response.
>
> These patches look fine, and I've tested them also on my
> Niagara-2 box.
>
> Acked-by: David S. Miller <davem@...emloft.net>
>
> Sorry for the delay :)
Great. Oops, last review pass revealed a bug in the following chunk.
@@ -1259,9 +1259,16 @@ ssize_t __init pcpu_embed_first_chunk(size_t static_size, size_t reserved_size,
}
/* return the leftover and copy */
- for_each_possible_cpu(cpu) {
+ for (cpu = 0; cpu < nr_cpu_ids; cpu++) {
void *ptr = pcpue_ptr + cpu * pcpue_unit_size;
+ if (cpu_possible(cpu)) {
+ free_bootmem(__pa(ptr + pcpue_size),
+ pcpue_unit_size - pcpue_size);
+ memcpy(ptr, __per_cpu_load, static_size);
+ } else
+ free_bootmem(__pa(ptr), pcpue_unit_size);
+
free_bootmem(__pa(ptr + pcpue_size),
pcpue_unit_size - pcpue_size);
memcpy(ptr, __per_cpu_load, static_size);
The if-else block should replace the original free_bootmem()/memcpy()
not added in front of it. Fixed. Will reply with updated patch.
Thanks.
--
tejun
--
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