Blame view

Documentation/vm/highmem.rst 5.37 KB
eeb8a6426   Mike Rapoport   docs/vm: highmem....
1
  .. _highmem:
d65bfacb0   Peter Zijlstra   mm: highmem docum...
2

eeb8a6426   Mike Rapoport   docs/vm: highmem....
3
4
5
  ====================
  High Memory Handling
  ====================
d65bfacb0   Peter Zijlstra   mm: highmem docum...
6
7
  
  By: Peter Zijlstra <a.p.zijlstra@chello.nl>
eeb8a6426   Mike Rapoport   docs/vm: highmem....
8
  .. contents:: :local:
d65bfacb0   Peter Zijlstra   mm: highmem docum...
9

eeb8a6426   Mike Rapoport   docs/vm: highmem....
10
  What Is High Memory?
d65bfacb0   Peter Zijlstra   mm: highmem docum...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  ====================
  
  High memory (highmem) is used when the size of physical memory approaches or
  exceeds the maximum size of virtual memory.  At that point it becomes
  impossible for the kernel to keep all of the available physical memory mapped
  at all times.  This means the kernel needs to start using temporary mappings of
  the pieces of physical memory that it wants to access.
  
  The part of (physical) memory not covered by a permanent mapping is what we
  refer to as 'highmem'.  There are various architecture dependent constraints on
  where exactly that border lies.
  
  In the i386 arch, for example, we choose to map the kernel into every process's
  VM space so that we don't have to pay the full TLB invalidation costs for
  kernel entry/exit.  This means the available virtual memory space (4GiB on
  i386) has to be divided between user and kernel space.
  
  The traditional split for architectures using this approach is 3:1, 3GiB for
eeb8a6426   Mike Rapoport   docs/vm: highmem....
29
  userspace and the top 1GiB for kernel space::
d65bfacb0   Peter Zijlstra   mm: highmem docum...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  
  		+--------+ 0xffffffff
  		| Kernel |
  		+--------+ 0xc0000000
  		|        |
  		| User   |
  		|        |
  		+--------+ 0x00000000
  
  This means that the kernel can at most map 1GiB of physical memory at any one
  time, but because we need virtual address space for other things - including
  temporary maps to access the rest of the physical memory - the actual direct
  map will typically be less (usually around ~896MiB).
  
  Other architectures that have mm context tagged TLBs can have separate kernel
  and user maps.  Some hardware (like some ARMs), however, have limited virtual
  space when they use mm context tags.
eeb8a6426   Mike Rapoport   docs/vm: highmem....
47
  Temporary Virtual Mappings
d65bfacb0   Peter Zijlstra   mm: highmem docum...
48
49
50
  ==========================
  
  The kernel contains several ways of creating temporary mappings:
eeb8a6426   Mike Rapoport   docs/vm: highmem....
51
52
53
  * vmap().  This can be used to make a long duration mapping of multiple
    physical pages into a contiguous virtual space.  It needs global
    synchronization to unmap.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
54

eeb8a6426   Mike Rapoport   docs/vm: highmem....
55
56
57
58
  * kmap().  This permits a short duration mapping of a single page.  It needs
    global synchronization, but is amortized somewhat.  It is also prone to
    deadlocks when using in a nested fashion, and so it is not recommended for
    new code.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
59

eeb8a6426   Mike Rapoport   docs/vm: highmem....
60
61
62
63
  * kmap_atomic().  This permits a very short duration mapping of a single
    page.  Since the mapping is restricted to the CPU that issued it, it
    performs well, but the issuing task is therefore required to stay on that
    CPU until it has finished, lest some other task displace its mappings.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
64

eeb8a6426   Mike Rapoport   docs/vm: highmem....
65
66
    kmap_atomic() may also be used by interrupt contexts, since it is does not
    sleep and the caller may not sleep until after kunmap_atomic() is called.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
67

eeb8a6426   Mike Rapoport   docs/vm: highmem....
68
    It may be assumed that k[un]map_atomic() won't fail.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
69

eeb8a6426   Mike Rapoport   docs/vm: highmem....
70
  Using kmap_atomic
d65bfacb0   Peter Zijlstra   mm: highmem docum...
71
72
73
74
75
  =================
  
  When and where to use kmap_atomic() is straightforward.  It is used when code
  wants to access the contents of a page that might be allocated from high memory
  (see __GFP_HIGHMEM), for example a page in the pagecache.  The API has two
eeb8a6426   Mike Rapoport   docs/vm: highmem....
76
  functions, and they can be used in a manner similar to the following::
d65bfacb0   Peter Zijlstra   mm: highmem docum...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  
  	/* Find the page of interest. */
  	struct page *page = find_get_page(mapping, offset);
  
  	/* Gain access to the contents of that page. */
  	void *vaddr = kmap_atomic(page);
  
  	/* Do something to the contents of that page. */
  	memset(vaddr, 0, PAGE_SIZE);
  
  	/* Unmap that page. */
  	kunmap_atomic(vaddr);
  
  Note that the kunmap_atomic() call takes the result of the kmap_atomic() call
  not the argument.
  
  If you need to map two pages because you want to copy from one page to
eeb8a6426   Mike Rapoport   docs/vm: highmem....
94
  another you need to keep the kmap_atomic calls strictly nested, like::
d65bfacb0   Peter Zijlstra   mm: highmem docum...
95
96
97
98
99
100
101
102
  
  	vaddr1 = kmap_atomic(page1);
  	vaddr2 = kmap_atomic(page2);
  
  	memcpy(vaddr1, vaddr2, PAGE_SIZE);
  
  	kunmap_atomic(vaddr2);
  	kunmap_atomic(vaddr1);
eeb8a6426   Mike Rapoport   docs/vm: highmem....
103
  Cost of Temporary Mappings
d65bfacb0   Peter Zijlstra   mm: highmem docum...
104
105
106
107
108
109
110
111
112
113
114
115
  ==========================
  
  The cost of creating temporary mappings can be quite high.  The arch has to
  manipulate the kernel's page tables, the data TLB and/or the MMU's registers.
  
  If CONFIG_HIGHMEM is not set, then the kernel will try and create a mapping
  simply with a bit of arithmetic that will convert the page struct address into
  a pointer to the page contents rather than juggling mappings about.  In such a
  case, the unmap operation may be a null operation.
  
  If CONFIG_MMU is not set, then there can be no temporary mappings and no
  highmem.  In such a case, the arithmetic approach will also be used.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
116
117
118
119
120
  i386 PAE
  ========
  
  The i386 arch, under some circumstances, will permit you to stick up to 64GiB
  of RAM into your 32-bit machine.  This has a number of consequences:
eeb8a6426   Mike Rapoport   docs/vm: highmem....
121
122
  * Linux needs a page-frame structure for each page in the system and the
    pageframes need to live in the permanent mapping, which means:
d65bfacb0   Peter Zijlstra   mm: highmem docum...
123

eeb8a6426   Mike Rapoport   docs/vm: highmem....
124
125
126
127
  * you can have 896M/sizeof(struct page) page-frames at most; with struct
    page being 32-bytes that would end up being something in the order of 112G
    worth of pages; the kernel, however, needs to store more than just
    page-frames in that memory...
d65bfacb0   Peter Zijlstra   mm: highmem docum...
128

eeb8a6426   Mike Rapoport   docs/vm: highmem....
129
130
131
132
  * PAE makes your page tables larger - which slows the system down as more
    data has to be accessed to traverse in TLB fills and the like.  One
    advantage is that PAE has more PTE bits and can provide advanced features
    like NX and PAT.
d65bfacb0   Peter Zijlstra   mm: highmem docum...
133
134
135
136
137
  
  The general recommendation is that you don't use more than 8GiB on a 32-bit
  machine - although more might work for you and your workload, you're pretty
  much on your own - don't expect kernel developers to really care much if things
  come apart.