diff options
author | Martin Schwidefsky | 2007-10-22 12:52:47 +0200 |
---|---|---|
committer | Martin Schwidefsky | 2007-10-22 12:52:49 +0200 |
commit | 3610cce87af0693603db171d5b6f6735f5e3dc5b (patch) | |
tree | 9aa7d9a0924b2f075c1b95ed57bb63ed512165c9 /include/asm-s390/tlbflush.h | |
parent | [S390] Introduce follow_table in uaccess_pt.c (diff) | |
download | kernel-qcow2-linux-3610cce87af0693603db171d5b6f6735f5e3dc5b.tar.gz kernel-qcow2-linux-3610cce87af0693603db171d5b6f6735f5e3dc5b.tar.xz kernel-qcow2-linux-3610cce87af0693603db171d5b6f6735f5e3dc5b.zip |
[S390] Cleanup page table definitions.
- De-confuse the defines for the address-space-control-elements
and the segment/region table entries.
- Create out of line functions for page table allocation / freeing.
- Simplify get_shadow_xxx functions.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'include/asm-s390/tlbflush.h')
-rw-r--r-- | include/asm-s390/tlbflush.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-s390/tlbflush.h b/include/asm-s390/tlbflush.h index 3a9985fbc8af..a69bd2490d52 100644 --- a/include/asm-s390/tlbflush.h +++ b/include/asm-s390/tlbflush.h @@ -61,7 +61,7 @@ static inline void __tlb_flush_mm(struct mm_struct * mm) * only ran on the local cpu. */ if (MACHINE_HAS_IDTE) { - pgd_t *shadow_pgd = get_shadow_pgd(mm->pgd); + pgd_t *shadow_pgd = get_shadow_table(mm->pgd); if (shadow_pgd) __tlb_flush_idte(shadow_pgd); |