aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/highmem.h
diff options
context:
space:
mode:
authorMinfei Huang <mnfhuang@gmail.com>2014-10-29 07:38:37 -0400
committerThomas Gleixner <tglx@linutronix.de>2014-11-03 07:40:44 -0500
commit63e7b6d90c1ebdb73d82eedb945b62ceedc3f963 (patch)
treeb70608ec34780769c93d7a3d261d625999be6327 /arch/x86/include/asm/highmem.h
parent96e70f83285676d8794f62f3c294d0247bef6b21 (diff)
x86: mm: Re-use the early_ioremap fixed area
The temp fixed area is only used during boot for early_ioremap(), and it is unused when ioremap() is functional. vmalloc/pkmap area become available after early boot so the temp fixed area is available for re-use. The virtual address is more precious on i386, especially turning on high memory. So we can re-use the virtual address space. Remove the now unused defines FIXADDR_BOOT_START and FIXADDR_BOOT_SIZE. Signed-off-by: Minfei Huang <mnfhuang@gmail.com> Cc: pbonzini@redhat.com Cc: bp@suse.de Link: http://lkml.kernel.org/r/1414582717-32729-1-git-send-email-mnfhuang@gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/highmem.h')
-rw-r--r--arch/x86/include/asm/highmem.h25
1 files changed, 14 insertions, 11 deletions
diff --git a/arch/x86/include/asm/highmem.h b/arch/x86/include/asm/highmem.h
index 302a323b3f67..04e9d023168f 100644
--- a/arch/x86/include/asm/highmem.h
+++ b/arch/x86/include/asm/highmem.h
@@ -38,17 +38,20 @@ extern unsigned long highstart_pfn, highend_pfn;
38/* 38/*
39 * Ordering is: 39 * Ordering is:
40 * 40 *
41 * FIXADDR_TOP 41 * high memory on: high_memory off:
42 * fixed_addresses 42 * FIXADDR_TOP FIXADDR_TOP
43 * FIXADDR_START 43 * fixed addresses fixed addresses
44 * temp fixed addresses 44 * FIXADDR_START FIXADDR_START
45 * FIXADDR_BOOT_START 45 * temp fixed addresses/persistent kmap area VMALLOC_END
46 * Persistent kmap area 46 * PKMAP_BASE temp fixed addresses/vmalloc area
47 * PKMAP_BASE 47 * VMALLOC_END VMALLOC_START
48 * VMALLOC_END 48 * vmalloc area high_memory
49 * Vmalloc area 49 * VMALLOC_START
50 * VMALLOC_START 50 * high_memory
51 * high_memory 51 *
52 * The temp fixed area is only used during boot for early_ioremap(), and
53 * it is unused when the ioremap() is functional. vmalloc/pkmap area become
54 * available after early boot so the temp fixed area is available for re-use.
52 */ 55 */
53#define LAST_PKMAP_MASK (LAST_PKMAP-1) 56#define LAST_PKMAP_MASK (LAST_PKMAP-1)
54#define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT) 57#define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT)