Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef691947 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge
Browse files

vmalloc: remove vmalloc_sync_all() from alloc_vm_area()



There's no need for it: it will get faulted into the current pagetable
as needed.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
parent 4a35c13c
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -2148,10 +2148,6 @@ struct vm_struct *alloc_vm_area(size_t size)
		return NULL;
	}

	/* Make sure the pagetables are constructed in process kernel
	   mappings */
	vmalloc_sync_all();

	return area;
}
EXPORT_SYMBOL_GPL(alloc_vm_area);