summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorTahsin Erdogan <tahsin@google.com>2017-02-25 13:00:19 -0800
committerSasha Levin <alexander.levin@verizon.com>2017-05-17 15:07:00 -0400
commit86525f9f44749350e61f31fdcf9c6ea8408652a7 (patch)
treec37ac66925b3420aca49be129e47d5d49d0e828f /mm
parent42ece5f5009813df9cb12f5cbc26277af496d149 (diff)
percpu: acquire pcpu_lock when updating pcpu_nr_empty_pop_pages
[ Upstream commit 320661b08dd6f1746d5c7ab4eb435ec64b97cd45 ] Update to pcpu_nr_empty_pop_pages in pcpu_alloc() is currently done without holding pcpu_lock. This can lead to bad updates to the variable. Add missing lock calls. Fixes: b539b87fed37 ("percpu: implmeent pcpu_nr_empty_pop_pages and chunk->nr_populated") Signed-off-by: Tahsin Erdogan <tahsin@google.com> Signed-off-by: Tejun Heo <tj@kernel.org> Cc: stable@vger.kernel.org # v3.18+ Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Diffstat (limited to 'mm')
-rw-r--r--mm/percpu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mm/percpu.c b/mm/percpu.c
index b97617587620..a40d5e04a3d1 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -1012,8 +1012,11 @@ area_found:
mutex_unlock(&pcpu_alloc_mutex);
}
- if (chunk != pcpu_reserved_chunk)
+ if (chunk != pcpu_reserved_chunk) {
+ spin_lock_irqsave(&pcpu_lock, flags);
pcpu_nr_empty_pop_pages -= occ_pages;
+ spin_unlock_irqrestore(&pcpu_lock, flags);
+ }
if (pcpu_nr_empty_pop_pages < PCPU_EMPTY_POP_PAGES_LOW)
pcpu_schedule_balance_work();