mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
dm writecache: add cond_resched to loop in persistent_memory_claim()
commitd35bd764e6upstream. Add cond_resched() to a loop that fills in the mapper memory area because the loop can be executed many times. Fixes:48debafe4f("dm: add writecache target") Cc: stable@vger.kernel.org Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Sasha Levin
parent
22551da148
commit
edb930b4ea
@@ -286,6 +286,8 @@ static int persistent_memory_claim(struct dm_writecache *wc)
|
||||
while (daa-- && i < p) {
|
||||
pages[i++] = pfn_t_to_page(pfn);
|
||||
pfn.val++;
|
||||
if (!(i & 15))
|
||||
cond_resched();
|
||||
}
|
||||
} while (i < p);
|
||||
wc->memory_map = vmap(pages, p, VM_MAP, PAGE_KERNEL);
|
||||
|
||||
Reference in New Issue
Block a user