mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
percpu: acquire pcpu_lock when updating pcpu_nr_empty_pop_pages
commit320661b08dupstream. 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:b539b87fed("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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e08f608ab4
commit
d88b83e66b
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user