diff --git a/[refs] b/[refs] index e6a3f0a288a1..883de35fb55d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 3c9a024fde58b08745680863859d1483def64f74 +refs/heads/master: fc1481a956181d0360d3eb129965302489895a1b diff --git a/trunk/mm/percpu-km.c b/trunk/mm/percpu-km.c index 7037bc73bfa4..89633fefc6a2 100644 --- a/trunk/mm/percpu-km.c +++ b/trunk/mm/percpu-km.c @@ -35,7 +35,11 @@ static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size) { - /* noop */ + unsigned int cpu; + + for_each_possible_cpu(cpu) + memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size); + return 0; }