drivers: hv: Turn off write permission on the hypercall page

am: 4cdfa660c8

Change-Id: I417fd5e5734565e9d36bd0fc3dc48bf0d313c255
This commit is contained in:
K. Y. Srinivasan
2017-03-15 02:14:10 +00:00
committed by android-build-merger

View File

@@ -219,7 +219,7 @@ int hv_init(void)
/* See if the hypercall page is already set */
rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
virtaddr = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL_EXEC);
virtaddr = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL_RX);
if (!virtaddr)
goto cleanup;