]> git.baikalelectronics.ru Git - kernel.git/commit
mm/vmalloc: Fix calculation of direct map addr range
authorRick Edgecombe <rick.p.edgecombe@intel.com>
Mon, 27 May 2019 21:10:57 +0000 (14:10 -0700)
committerIngo Molnar <mingo@kernel.org>
Mon, 3 Jun 2019 09:47:25 +0000 (11:47 +0200)
commitec5f78597d2b72ac0880093eb7b6141b2af68120
tree2f698e3037318c76be78720d0e533bcc12847a42
parent31750888ad4ce9d2a30f744c4c2ab30aee07f569
mm/vmalloc: Fix calculation of direct map addr range

The calculation of the direct map address range to flush was wrong.
This could cause the RO direct map alias to not get flushed. Today
this shouldn't be a problem because this flush is only needed on x86
right now and the spurious fault handler will fix cached RO->RW
translations. In the future though, it could cause the permissions
to remain RO in the TLB for the direct map alias, and then the page
would return from the page allocator to some other component as RO
and cause a crash.

So fix fix the address range calculation so the flush will include the
direct map range.

Signed-off-by: Rick Edgecombe <rick.p.edgecombe@intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Meelis Roos <mroos@linux.ee>
Cc: Nadav Amit <namit@vmware.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: 953c582e7516 ("mm/vmalloc: Add flag for freeing of special permsissions")
Link: https://lkml.kernel.org/r/20190527211058.2729-2-rick.p.edgecombe@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
mm/vmalloc.c