diff options
author | 2012-04-19 16:01:22 +0900 | |
---|---|---|
committer | 2012-04-19 16:01:22 +0900 | |
commit | f5bdb003a2ee6df5ab9bfa119df905f949a66b52 (patch) | |
tree | 3c8b799ee7e069fb9befd1ba08ae350ec26a62e2 | |
parent | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security (diff) | |
parent | sh: Fix error synchronising kernel page tables (diff) | |
download | wireguard-linux-f5bdb003a2ee6df5ab9bfa119df905f949a66b52.tar.xz wireguard-linux-f5bdb003a2ee6df5ab9bfa119df905f949a66b52.zip |
Merge branch 'sh/st-integration' into sh/urgent
-rw-r--r-- | arch/sh/mm/fault_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/fault_32.c b/arch/sh/mm/fault_32.c index 324eef93c900..e99b104d967a 100644 --- a/arch/sh/mm/fault_32.c +++ b/arch/sh/mm/fault_32.c @@ -86,7 +86,7 @@ static noinline int vmalloc_fault(unsigned long address) pte_t *pte_k; /* Make sure we are in vmalloc/module/P3 area: */ - if (!(address >= VMALLOC_START && address < P3_ADDR_MAX)) + if (!(address >= P3SEG && address < P3_ADDR_MAX)) return -1; /* |