Call vm_unmap_aliases() every time we apply any changes to permission
attributes of mappings in the vmalloc region. This avoids any potential
issues resulting from lingering writable or executable aliases of
mappings that should be read-only or non-executable, respectively.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
        if (!numpages)
                return 0;
 
+       /*
+        * Get rid of potentially aliasing lazily unmapped vm areas that may
+        * have permissions set that deviate from the ones we are setting here.
+        */
+       vm_unmap_aliases();
+
        return __change_memory_common(start, size, set_mask, clear_mask);
 }