mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02: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:
parent
a33e2d0aa4
commit
6cd52ae386
|
|
@ -281,6 +281,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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user