Toggle preemption while faulting pages

Change-Id: I74201061bb3e7c7c4032e3884658ace87cb85948
This commit is contained in:
Balazs Gerofi
2020-04-20 20:30:18 +09:00
committed by Masamichi Takagi
parent 3e254c06bf
commit d370e9241f
2 changed files with 4 additions and 0 deletions

View File

@@ -2816,6 +2816,7 @@ int populate_process_memory(struct process_vm *vm, void *start, size_t len)
uintptr_t addr;
end = (uintptr_t)start + len;
preempt_disable();
for (addr = (uintptr_t)start; addr < end; addr += PAGE_SIZE) {
error = page_fault_process_vm(vm, (void *)addr, reason);
if (error) {
@@ -2829,6 +2830,7 @@ int populate_process_memory(struct process_vm *vm, void *start, size_t len)
error = 0;
out:
preempt_enable();
return error;
}