Subversion Repositories HelenOS-doc

Rev

Rev 68 | Rev 70 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68 Rev 69
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<chapter id="mm">
2
<chapter id="mm">
3
  <?dbhtml filename="mm.html"?>
3
  <?dbhtml filename="mm.html"?>
4
 
4
 
5
  <title>Memory management</title>
5
  <title>Memory management</title>
6
 
6
 
7
  <para>In previous chapters, this book described the scheduling subsystem as
7
  <para>In previous chapters, this book described the scheduling subsystem as
8
  the creator of the impression that threads execute in parallel. The memory
8
  the creator of the impression that threads execute in parallel. The memory
9
  management subsystem, on the other hand, creates the impression that there
9
  management subsystem, on the other hand, creates the impression that there
10
  is enough physical memory for the kernel and that userspace tasks have the
10
  is enough physical memory for the kernel and that userspace tasks have the
11
  entire address space only for themselves.</para>
11
  entire address space only for themselves.</para>
12
 
12
 
13
  <section>
13
  <section>
14
    <title>Physical memory management</title>
14
    <title>Physical memory management</title>
15
 
15
 
16
    <section id="zones_and_frames">
16
    <section id="zones_and_frames">
-
 
17
      <indexterm><primary>memory management</primary><secondary>memory zone</secondary></indexterm>
17
      <title>Zones and frames</title>
18
      <title>Zones and frames</title>
18
 
19
 
19
      <para>HelenOS represents continuous areas of physical memory in
20
      <para>HelenOS represents continuous areas of physical memory in
20
      structures called frame zones (abbreviated as zones). Each zone contains
21
      structures called frame zones (abbreviated as zones). Each zone contains
21
      information about the number of allocated and unallocated physical
22
      information about the number of allocated and unallocated physical
22
      memory frames as well as the physical base address of the zone and
23
      memory frames as well as the physical base address of the zone and
23
      number of frames contained in it. A zone also contains an array of frame
24
      number of frames contained in it. A zone also contains an array of frame
24
      structures describing each frame of the zone and, in the last, but not
25
      structures describing each frame of the zone and, in the last, but not
25
      the least important, front, each zone is equipped with a buddy system
26
      the least important, front, each zone is equipped with a buddy system
26
      that faciliates effective allocation of power-of-two sized block of
27
      that faciliates effective allocation of power-of-two sized block of
27
      frames.</para>
28
      frames.</para>
28
 
29
 
29
      <para>This organization of physical memory provides good preconditions
30
      <para>This organization of physical memory provides good preconditions
30
      for hot-plugging of more zones. There is also one currently unused zone
31
      for hot-plugging of more zones. There is also one currently unused zone
31
      attribute: <code>flags</code>. The attribute could be used to give a
32
      attribute: <code>flags</code>. The attribute could be used to give a
32
      special meaning to some zones in the future.</para>
33
      special meaning to some zones in the future.</para>
33
 
34
 
34
      <para>The zones are linked in a doubly-linked list. This might seem a
35
      <para>The zones are linked in a doubly-linked list. This might seem a
35
      bit ineffective because the zone list is walked everytime a frame is
36
      bit ineffective because the zone list is walked everytime a frame is
36
      allocated or deallocated. However, this does not represent a significant
37
      allocated or deallocated. However, this does not represent a significant
37
      performance problem as it is expected that the number of zones will be
38
      performance problem as it is expected that the number of zones will be
38
      rather low. Moreover, most architectures merge all zones into
39
      rather low. Moreover, most architectures merge all zones into
39
      one.</para>
40
      one.</para>
40
 
41
 
41
      <para>For each physical memory frame found in a zone, there is a frame
42
      <para>For each physical memory frame found in a zone, there is a frame
42
      structure that contains number of references and data used by buddy
43
      structure that contains number of references and data used by buddy
43
      system.</para>
44
      system.</para>
44
    </section>
45
    </section>
45
 
46
 
46
    <section id="frame_allocator">
47
    <section id="frame_allocator">
-
 
48
      <indexterm><primary>memory management</primary><secondary>frame allocator</secondary></indexterm>
47
      <title>Frame allocator</title>
49
      <title>Frame allocator</title>
48
 
50
 
49
      <para>The frame allocator satisfies kernel requests to allocate
51
      <para>The frame allocator satisfies kernel requests to allocate
50
      power-of-two sized blocks of physical memory. Because of zonal
52
      power-of-two sized blocks of physical memory. Because of zonal
51
      organization of physical memory, the frame allocator is always working
53
      organization of physical memory, the frame allocator is always working
52
      within a context of some frame zone. In order to carry out the
54
      within a context of some frame zone. In order to carry out the
53
      allocation requests, the frame allocator is tightly integrated with the
55
      allocation requests, the frame allocator is tightly integrated with the
54
      buddy system belonging to the zone. The frame allocator is also
56
      buddy system belonging to the zone. The frame allocator is also
55
      responsible for updating information about the number of free and busy
57
      responsible for updating information about the number of free and busy
56
      frames in the zone. <figure>
58
      frames in the zone. <figure>
57
          <mediaobject id="frame_alloc">
59
          <mediaobject id="frame_alloc">
58
            <imageobject role="html">
60
            <imageobject role="html">
59
              <imagedata fileref="images/frame_alloc.png" format="PNG" />
61
              <imagedata fileref="images/frame_alloc.png" format="PNG" />
60
            </imageobject>
62
            </imageobject>
61
 
63
 
62
            <imageobject role="fop">
64
            <imageobject role="fop">
63
              <imagedata fileref="images.vector/frame_alloc.svg" format="SVG" />
65
              <imagedata fileref="images.vector/frame_alloc.svg" format="SVG" />
64
            </imageobject>
66
            </imageobject>
65
          </mediaobject>
67
          </mediaobject>
66
 
68
 
67
          <title>Frame allocator scheme.</title>
69
          <title>Frame allocator scheme.</title>
68
        </figure></para>
70
        </figure></para>
69
 
71
 
70
      <formalpara>
72
      <formalpara>
71
        <title>Allocation / deallocation</title>
73
        <title>Allocation / deallocation</title>
72
 
74
 
73
        <para>Upon allocation request via function <code>frame_alloc</code>,
75
        <para>Upon allocation request via function <code>frame_alloc</code>,
74
        the frame allocator first tries to find a zone that can satisfy the
76
        the frame allocator first tries to find a zone that can satisfy the
75
        request (i.e. has the required amount of free frames). Once a suitable
77
        request (i.e. has the required amount of free frames). Once a suitable
76
        zone is found, the frame allocator uses the buddy allocator on the
78
        zone is found, the frame allocator uses the buddy allocator on the
77
        zone's buddy system to perform the allocation. During deallocation,
79
        zone's buddy system to perform the allocation. During deallocation,
78
        which is triggered by a call to <code>frame_free</code>, the frame
80
        which is triggered by a call to <code>frame_free</code>, the frame
79
        allocator looks up the respective zone that contains the frame being
81
        allocator looks up the respective zone that contains the frame being
80
        deallocated. Afterwards, it calls the buddy allocator again, this time
82
        deallocated. Afterwards, it calls the buddy allocator again, this time
81
        to take care of deallocation within the zone's buddy system.</para>
83
        to take care of deallocation within the zone's buddy system.</para>
82
      </formalpara>
84
      </formalpara>
83
    </section>
85
    </section>
84
 
86
 
85
    <section id="buddy_allocator">
87
    <section id="buddy_allocator">
-
 
88
      <indexterm><primary>memory management</primary><secondary>buddy system</secondary></indexterm>
86
      <title>Buddy allocator</title>
89
      <title>Buddy allocator</title>
87
 
90
 
88
      <para>In the buddy system, the memory is broken down into power-of-two
91
      <para>In the buddy system, the memory is broken down into power-of-two
89
      sized naturally aligned blocks. These blocks are organized in an array
92
      sized naturally aligned blocks. These blocks are organized in an array
90
      of lists, in which the list with index i contains all unallocated blocks
93
      of lists, in which the list with index i contains all unallocated blocks
91
      of size <mathphrase>2<superscript>i</superscript></mathphrase>. The
94
      of size <mathphrase>2<superscript>i</superscript></mathphrase>. The
92
      index i is called the order of block. Should there be two adjacent
95
      index i is called the order of block. Should there be two adjacent
93
      equally sized blocks in the list i<mathphrase />(i.e. buddies), the
96
      equally sized blocks in the list i<mathphrase />(i.e. buddies), the
94
      buddy allocator would coalesce them and put the resulting block in list
97
      buddy allocator would coalesce them and put the resulting block in list
95
      <mathphrase>i + 1</mathphrase>, provided that the resulting block would
98
      <mathphrase>i + 1</mathphrase>, provided that the resulting block would
96
      be naturally aligned. Similarily, when the allocator is asked to
99
      be naturally aligned. Similarily, when the allocator is asked to
97
      allocate a block of size
100
      allocate a block of size
98
      <mathphrase>2<superscript>i</superscript></mathphrase>, it first tries
101
      <mathphrase>2<superscript>i</superscript></mathphrase>, it first tries
99
      to satisfy the request from the list with index i. If the request cannot
102
      to satisfy the request from the list with index i. If the request cannot
100
      be satisfied (i.e. the list i is empty), the buddy allocator will try to
103
      be satisfied (i.e. the list i is empty), the buddy allocator will try to
101
      allocate and split a larger block from the list with index i + 1. Both
104
      allocate and split a larger block from the list with index i + 1. Both
102
      of these algorithms are recursive. The recursion ends either when there
105
      of these algorithms are recursive. The recursion ends either when there
103
      are no blocks to coalesce in the former case or when there are no blocks
106
      are no blocks to coalesce in the former case or when there are no blocks
104
      that can be split in the latter case.</para>
107
      that can be split in the latter case.</para>
105
 
108
 
106
      <para>This approach greatly reduces external fragmentation of memory and
109
      <para>This approach greatly reduces external fragmentation of memory and
107
      helps in allocating bigger continuous blocks of memory aligned to their
110
      helps in allocating bigger continuous blocks of memory aligned to their
108
      size. On the other hand, the buddy allocator suffers increased internal
111
      size. On the other hand, the buddy allocator suffers increased internal
109
      fragmentation of memory and is not suitable for general kernel
112
      fragmentation of memory and is not suitable for general kernel
110
      allocations. This purpose is better addressed by the <link
113
      allocations. This purpose is better addressed by the <link
111
      linkend="slab">slab allocator</link>.<figure>
114
      linkend="slab">slab allocator</link>.<figure>
112
          <mediaobject id="buddy_alloc">
115
          <mediaobject id="buddy_alloc">
113
            <imageobject role="html">
116
            <imageobject role="html">
114
              <imagedata fileref="images/buddy_alloc.png" format="PNG" />
117
              <imagedata fileref="images/buddy_alloc.png" format="PNG" />
115
            </imageobject>
118
            </imageobject>
116
 
119
 
117
            <imageobject role="fop">
120
            <imageobject role="fop">
118
              <imagedata fileref="images.vector/buddy_alloc.svg" format="SVG" />
121
              <imagedata fileref="images.vector/buddy_alloc.svg" format="SVG" />
119
            </imageobject>
122
            </imageobject>
120
          </mediaobject>
123
          </mediaobject>
121
 
124
 
122
          <title>Buddy system scheme.</title>
125
          <title>Buddy system scheme.</title>
123
        </figure></para>
126
        </figure></para>
124
 
127
 
125
      <section>
128
      <section>
126
        <title>Implementation</title>
129
        <title>Implementation</title>
127
 
130
 
128
        <para>The buddy allocator is, in fact, an abstract framework wich can
131
        <para>The buddy allocator is, in fact, an abstract framework wich can
129
        be easily specialized to serve one particular task. It knows nothing
132
        be easily specialized to serve one particular task. It knows nothing
130
        about the nature of memory it helps to allocate. In order to beat the
133
        about the nature of memory it helps to allocate. In order to beat the
131
        lack of this knowledge, the buddy allocator exports an interface that
134
        lack of this knowledge, the buddy allocator exports an interface that
132
        each of its clients is required to implement. When supplied with an
135
        each of its clients is required to implement. When supplied with an
133
        implementation of this interface, the buddy allocator can use
136
        implementation of this interface, the buddy allocator can use
134
        specialized external functions to find a buddy for a block, split and
137
        specialized external functions to find a buddy for a block, split and
135
        coalesce blocks, manipulate block order and mark blocks busy or
138
        coalesce blocks, manipulate block order and mark blocks busy or
136
        available.</para>
139
        available.</para>
137
 
140
 
138
        <formalpara>
141
        <formalpara>
139
          <title>Data organization</title>
142
          <title>Data organization</title>
140
 
143
 
141
          <para>Each entity allocable by the buddy allocator is required to
144
          <para>Each entity allocable by the buddy allocator is required to
142
          contain space for storing block order number and a link variable
145
          contain space for storing block order number and a link variable
143
          used to interconnect blocks within the same order.</para>
146
          used to interconnect blocks within the same order.</para>
144
 
147
 
145
          <para>Whatever entities are allocated by the buddy allocator, the
148
          <para>Whatever entities are allocated by the buddy allocator, the
146
          first entity within a block is used to represent the entire block.
149
          first entity within a block is used to represent the entire block.
147
          The first entity keeps the order of the whole block. Other entities
150
          The first entity keeps the order of the whole block. Other entities
148
          within the block are assigned the magic value
151
          within the block are assigned the magic value
149
          <constant>BUDDY_INNER_BLOCK</constant>. This is especially important
152
          <constant>BUDDY_INNER_BLOCK</constant>. This is especially important
150
          for effective identification of buddies in a one-dimensional array
153
          for effective identification of buddies in a one-dimensional array
151
          because the entity that represents a potential buddy cannot be
154
          because the entity that represents a potential buddy cannot be
152
          associated with <constant>BUDDY_INNER_BLOCK</constant> (i.e. if it
155
          associated with <constant>BUDDY_INNER_BLOCK</constant> (i.e. if it
153
          is associated with <constant>BUDDY_INNER_BLOCK</constant> then it is
156
          is associated with <constant>BUDDY_INNER_BLOCK</constant> then it is
154
          not a buddy).</para>
157
          not a buddy).</para>
155
        </formalpara>
158
        </formalpara>
156
      </section>
159
      </section>
157
    </section>
160
    </section>
158
 
161
 
159
    <section id="slab">
162
    <section id="slab">
-
 
163
    <indexterm><primary>memory management</primary><secondary>slab</secondary></indexterm>      
160
      <title>Slab allocator</title>
164
    <title>Slab allocator</title>
161
 
165
 
162
      <para>The majority of memory allocation requests in the kernel is for
166
      <para>The majority of memory allocation requests in the kernel is for
163
      small, frequently used data structures. The basic idea behind the slab
167
      small, frequently used data structures. The basic idea behind the slab
164
      allocator is that commonly used objects are preallocated in continuous
168
      allocator is that commonly used objects are preallocated in continuous
165
      areas of physical memory called slabs<footnote>
169
      areas of physical memory called slabs<footnote>
166
          <para>Slabs are in fact blocks of physical memory frames allocated
170
          <para>Slabs are in fact blocks of physical memory frames allocated
167
          from the frame allocator.</para>
171
          from the frame allocator.</para>
168
        </footnote>. Whenever an object is to be allocated, the slab allocator
172
        </footnote>. Whenever an object is to be allocated, the slab allocator
169
      returns the first available item from a suitable slab corresponding to
173
      returns the first available item from a suitable slab corresponding to
170
      the object type<footnote>
174
      the object type<footnote>
171
          <para>The mechanism is rather more complicated, see the next
175
          <para>The mechanism is rather more complicated, see the next
172
          paragraph.</para>
176
          paragraph.</para>
173
        </footnote>. Due to the fact that the sizes of the requested and
177
        </footnote>. Due to the fact that the sizes of the requested and
174
      allocated object match, the slab allocator significantly reduces
178
      allocated object match, the slab allocator significantly reduces
175
      internal fragmentation.</para>
179
      internal fragmentation.</para>
176
 
180
 
177
      <para>Slabs of one object type are organized in a structure called slab
181
      <para>Slabs of one object type are organized in a structure called slab
178
      cache. There are ususally more slabs in the slab cache, depending on
182
      cache. There are ususally more slabs in the slab cache, depending on
179
      previous allocations. If the the slab cache runs out of available slabs,
183
      previous allocations. If the the slab cache runs out of available slabs,
180
      new slabs are allocated. In order to exploit parallelism and to avoid
184
      new slabs are allocated. In order to exploit parallelism and to avoid
181
      locking of shared spinlocks, slab caches can have variants of
185
      locking of shared spinlocks, slab caches can have variants of
182
      processor-private slabs called magazines. On each processor, there is a
186
      processor-private slabs called magazines. On each processor, there is a
183
      two-magazine cache. Full magazines that are not part of any
187
      two-magazine cache. Full magazines that are not part of any
184
      per-processor magazine cache are stored in a global list of full
188
      per-processor magazine cache are stored in a global list of full
185
      magazines.</para>
189
      magazines.</para>
186
 
190
 
187
      <para>Each object begins its life in a slab. When it is allocated from
191
      <para>Each object begins its life in a slab. When it is allocated from
188
      there, the slab allocator calls a constructor that is registered in the
192
      there, the slab allocator calls a constructor that is registered in the
189
      respective slab cache. The constructor initializes and brings the object
193
      respective slab cache. The constructor initializes and brings the object
190
      into a known state. The object is then used by the user. When the user
194
      into a known state. The object is then used by the user. When the user
191
      later frees the object, the slab allocator puts it into a processor
195
      later frees the object, the slab allocator puts it into a processor
192
      private magazine cache, from where it can be precedently allocated
196
      private magazine cache, from where it can be precedently allocated
193
      again. Note that allocations satisfied from a magazine are already
197
      again. Note that allocations satisfied from a magazine are already
194
      initialized by the constructor. When both of the processor cached
198
      initialized by the constructor. When both of the processor cached
195
      magazines get full, the allocator will move one of the magazines to the
199
      magazines get full, the allocator will move one of the magazines to the
196
      list of full magazines. Similarily, when allocating from an empty
200
      list of full magazines. Similarily, when allocating from an empty
197
      processor magazine cache, the kernel will reload only one magazine from
201
      processor magazine cache, the kernel will reload only one magazine from
198
      the list of full magazines. In other words, the slab allocator tries to
202
      the list of full magazines. In other words, the slab allocator tries to
199
      keep the processor magazine cache only half-full in order to prevent
203
      keep the processor magazine cache only half-full in order to prevent
200
      thrashing when allocations and deallocations interleave on magazine
204
      thrashing when allocations and deallocations interleave on magazine
201
      boundaries.</para>
205
      boundaries.</para>
202
 
206
 
203
      <para>Should HelenOS run short of memory, it would start deallocating
207
      <para>Should HelenOS run short of memory, it would start deallocating
204
      objects from magazines, calling slab cache destructor on them and
208
      objects from magazines, calling slab cache destructor on them and
205
      putting them back into slabs. When a slab contanins no allocated object,
209
      putting them back into slabs. When a slab contanins no allocated object,
206
      it is immediately freed.</para>
210
      it is immediately freed.</para>
207
 
211
 
208
      <para><figure>
212
      <para><figure>
209
          <mediaobject id="slab_alloc">
213
          <mediaobject id="slab_alloc">
210
            <imageobject role="html">
214
            <imageobject role="html">
211
              <imagedata fileref="images/slab_alloc.png" format="PNG" />
215
              <imagedata fileref="images/slab_alloc.png" format="PNG" />
212
            </imageobject>
216
            </imageobject>
213
          </mediaobject>
217
          </mediaobject>
214
 
218
 
215
          <title>Slab allocator scheme.</title>
219
          <title>Slab allocator scheme.</title>
216
        </figure></para>
220
        </figure></para>
217
 
221
 
218
      <section>
222
      <section>
219
        <title>Implementation</title>
223
        <title>Implementation</title>
220
 
224
 
221
        <para>The slab allocator is closely modelled after OpenSolaris slab
225
        <para>The slab allocator is closely modelled after OpenSolaris slab
222
        allocator by Jeff Bonwick and Jonathan Adams with the following
226
        allocator by Jeff Bonwick and Jonathan Adams with the following
223
        exceptions:<itemizedlist>
227
        exceptions:<itemizedlist>
224
            <listitem>
228
            <listitem>
225
               empty slabs are immediately deallocated
229
               empty slabs are immediately deallocated
226
            </listitem>
230
            </listitem>
227
 
231
 
228
            <listitem>
232
            <listitem>
229
              <para>empty magazines are deallocated when not needed</para>
233
              <para>empty magazines are deallocated when not needed</para>
230
            </listitem>
234
            </listitem>
231
          </itemizedlist> Following features are not currently supported but
235
          </itemizedlist> Following features are not currently supported but
232
        would be easy to do: <itemizedlist>
236
        would be easy to do: <itemizedlist>
233
            <listitem>
237
            <listitem>
234
               cache coloring
238
               cache coloring
235
            </listitem>
239
            </listitem>
236
 
240
 
237
            <listitem>
241
            <listitem>
238
               dynamic magazine grow (different magazine sizes are already supported, but the allocation strategy would need to be adjusted)
242
               dynamic magazine grow (different magazine sizes are already supported, but the allocation strategy would need to be adjusted)
239
            </listitem>
243
            </listitem>
240
          </itemizedlist></para>
244
          </itemizedlist></para>
241
 
245
 
242
        <section>
246
        <section>
-
 
247
        <indexterm><primary>memory management</primary><secondary>slab magazine</secondary></indexterm>
243
          <title>Magazine layer</title>
248
        <title>Magazine layer</title>
244
 
249
 
245
          <para>Due to the extensive bottleneck on SMP architures, caused by
250
          <para>Due to the extensive bottleneck on SMP architures, caused by
246
          global slab locking mechanism, making processing of all slab
251
          global slab locking mechanism, making processing of all slab
247
          allocation requests serialized, a new layer was introduced to the
252
          allocation requests serialized, a new layer was introduced to the
248
          classic slab allocator design. Slab allocator was extended to
253
          classic slab allocator design. Slab allocator was extended to
249
          support per-CPU caches 'magazines' to achieve good SMP scaling.
254
          support per-CPU caches 'magazines' to achieve good SMP scaling.
250
          <termdef>Slab SMP perfromance bottleneck was resolved by introducing
255
          <termdef>Slab SMP perfromance bottleneck was resolved by introducing
251
          a per-CPU caching scheme called as <glossterm>magazine
256
          a per-CPU caching scheme called as <glossterm>magazine
252
          layer</glossterm></termdef>.</para>
257
          layer</glossterm></termdef>.</para>
253
 
258
 
254
          <para>Magazine is a N-element cache of objects, so each magazine can
259
          <para>Magazine is a N-element cache of objects, so each magazine can
255
          satisfy N allocations. Magazine behaves like a automatic weapon
260
          satisfy N allocations. Magazine behaves like a automatic weapon
256
          magazine (LIFO, stack), so the allocation/deallocation become simple
261
          magazine (LIFO, stack), so the allocation/deallocation become simple
257
          push/pop pointer operation. Trick is that CPU does not access global
262
          push/pop pointer operation. Trick is that CPU does not access global
258
          slab allocator data during the allocation from its magazine, thus
263
          slab allocator data during the allocation from its magazine, thus
259
          making possible parallel allocations between CPUs.</para>
264
          making possible parallel allocations between CPUs.</para>
260
 
265
 
261
          <para>Implementation also requires adding another feature as the
266
          <para>Implementation also requires adding another feature as the
262
          CPU-bound magazine is actually a pair of magazines to avoid
267
          CPU-bound magazine is actually a pair of magazines to avoid
263
          thrashing when during allocation/deallocatiion of 1 item at the
268
          thrashing when during allocation/deallocatiion of 1 item at the
264
          magazine size boundary. LIFO order is enforced, which should avoid
269
          magazine size boundary. LIFO order is enforced, which should avoid
265
          fragmentation as much as possible.</para>
270
          fragmentation as much as possible.</para>
266
 
271
 
267
          <para>Another important entity of magazine layer is the common full
272
          <para>Another important entity of magazine layer is the common full
268
          magazine list (also called a depot), that stores full magazines that
273
          magazine list (also called a depot), that stores full magazines that
269
          may be used by any of the CPU magazine caches to reload active CPU
274
          may be used by any of the CPU magazine caches to reload active CPU
270
          magazine. This list of magazines can be pre-filled with full
275
          magazine. This list of magazines can be pre-filled with full
271
          magazines during initialization, but in current implementation it is
276
          magazines during initialization, but in current implementation it is
272
          filled during object deallocation, when CPU magazine becomes
277
          filled during object deallocation, when CPU magazine becomes
273
          full.</para>
278
          full.</para>
274
 
279
 
275
          <para>Slab allocator control structures are allocated from special
280
          <para>Slab allocator control structures are allocated from special
276
          slabs, that are marked by special flag, indicating that it should
281
          slabs, that are marked by special flag, indicating that it should
277
          not be used for slab magazine layer. This is done to avoid possible
282
          not be used for slab magazine layer. This is done to avoid possible
278
          infinite recursions and deadlock during conventional slab allocaiton
283
          infinite recursions and deadlock during conventional slab allocaiton
279
          requests.</para>
284
          requests.</para>
280
        </section>
285
        </section>
281
 
286
 
282
        <section>
287
        <section>
283
          <title>Allocation/deallocation</title>
288
          <title>Allocation/deallocation</title>
284
 
289
 
285
          <para>Every cache contains list of full slabs and list of partialy
290
          <para>Every cache contains list of full slabs and list of partialy
286
          full slabs. Empty slabs are immediately freed (thrashing will be
291
          full slabs. Empty slabs are immediately freed (thrashing will be
287
          avoided because of magazines).</para>
292
          avoided because of magazines).</para>
288
 
293
 
289
          <para>The SLAB allocator allocates lots of space and does not free
294
          <para>The SLAB allocator allocates lots of space and does not free
290
          it. When frame allocator fails to allocate the frame, it calls
295
          it. When frame allocator fails to allocate the frame, it calls
291
          slab_reclaim(). It tries 'light reclaim' first, then brutal reclaim.
296
          slab_reclaim(). It tries 'light reclaim' first, then brutal reclaim.
292
          The light reclaim releases slabs from cpu-shared magazine-list,
297
          The light reclaim releases slabs from cpu-shared magazine-list,
293
          until at least 1 slab is deallocated in each cache (this algorithm
298
          until at least 1 slab is deallocated in each cache (this algorithm
294
          should probably change). The brutal reclaim removes all cached
299
          should probably change). The brutal reclaim removes all cached
295
          objects, even from CPU-bound magazines.</para>
300
          objects, even from CPU-bound magazines.</para>
296
 
301
 
297
          <formalpara>
302
          <formalpara>
298
            <title>Allocation</title>
303
            <title>Allocation</title>
299
 
304
 
300
            <para><emphasis>Step 1.</emphasis> When it comes to the allocation
305
            <para><emphasis>Step 1.</emphasis> When it comes to the allocation
301
            request, slab allocator first of all checks availability of memory
306
            request, slab allocator first of all checks availability of memory
302
            in local CPU-bound magazine. If it is there, we would just "pop"
307
            in local CPU-bound magazine. If it is there, we would just "pop"
303
            the CPU magazine and return the pointer to object.</para>
308
            the CPU magazine and return the pointer to object.</para>
304
 
309
 
305
            <para><emphasis>Step 2.</emphasis> If the CPU-bound magazine is
310
            <para><emphasis>Step 2.</emphasis> If the CPU-bound magazine is
306
            empty, allocator will attempt to reload magazin, swapping it with
311
            empty, allocator will attempt to reload magazin, swapping it with
307
            second CPU magazine and returns to the first step.</para>
312
            second CPU magazine and returns to the first step.</para>
308
 
313
 
309
            <para><emphasis>Step 3.</emphasis> Now we are in the situation
314
            <para><emphasis>Step 3.</emphasis> Now we are in the situation
310
            when both CPU-bound magazines are empty, which makes allocator to
315
            when both CPU-bound magazines are empty, which makes allocator to
311
            access shared full-magazines depot to reload CPU-bound magazines.
316
            access shared full-magazines depot to reload CPU-bound magazines.
312
            If reload is succesful (meaning there are full magazines in depot)
317
            If reload is succesful (meaning there are full magazines in depot)
313
            algoritm continues at Step 1.</para>
318
            algoritm continues at Step 1.</para>
314
 
319
 
315
            <para><emphasis>Step 4.</emphasis> Final step of the allocation.
320
            <para><emphasis>Step 4.</emphasis> Final step of the allocation.
316
            In this step object is allocated from the conventional slab layer
321
            In this step object is allocated from the conventional slab layer
317
            and pointer is returned.</para>
322
            and pointer is returned.</para>
318
          </formalpara>
323
          </formalpara>
319
 
324
 
320
          <formalpara>
325
          <formalpara>
321
            <title>Deallocation</title>
326
            <title>Deallocation</title>
322
 
327
 
323
            <para><emphasis>Step 1.</emphasis> During deallocation request,
328
            <para><emphasis>Step 1.</emphasis> During deallocation request,
324
            slab allocator will check if the local CPU-bound magazine is not
329
            slab allocator will check if the local CPU-bound magazine is not
325
            full. In this case we will just push the pointer to this
330
            full. In this case we will just push the pointer to this
326
            magazine.</para>
331
            magazine.</para>
327
 
332
 
328
            <para><emphasis>Step 2.</emphasis> If the CPU-bound magazine is
333
            <para><emphasis>Step 2.</emphasis> If the CPU-bound magazine is
329
            full, allocator will attempt to reload magazin, swapping it with
334
            full, allocator will attempt to reload magazin, swapping it with
330
            second CPU magazine and returns to the first step.</para>
335
            second CPU magazine and returns to the first step.</para>
331
 
336
 
332
            <para><emphasis>Step 3.</emphasis> Now we are in the situation
337
            <para><emphasis>Step 3.</emphasis> Now we are in the situation
333
            when both CPU-bound magazines are full, which makes allocator to
338
            when both CPU-bound magazines are full, which makes allocator to
334
            access shared full-magazines depot to put one of the magazines to
339
            access shared full-magazines depot to put one of the magazines to
335
            the depot and creating new empty magazine. Algoritm continues at
340
            the depot and creating new empty magazine. Algoritm continues at
336
            Step 1.</para>
341
            Step 1.</para>
337
          </formalpara>
342
          </formalpara>
338
        </section>
343
        </section>
339
      </section>
344
      </section>
340
    </section>
345
    </section>
341
 
346
 
342
    <!-- End of Physmem -->
347
    <!-- End of Physmem -->
343
  </section>
348
  </section>
344
 
349
 
345
  <section>
350
  <section>
346
    <title>Virtual memory management</title>
351
    <title>Virtual memory management</title>
347
 
352
 
348
    <section>
353
    <section>
349
      <title>Introduction</title>
354
      <title>Introduction</title>
350
 
355
 
351
      <para>Virtual memory is a special memory management technique, used by
356
      <para>Virtual memory is a special memory management technique, used by
352
      kernel to achieve a bunch of mission critical goals. <itemizedlist>
357
      kernel to achieve a bunch of mission critical goals. <itemizedlist>
353
          <listitem>
358
          <listitem>
354
             Isolate each task from other tasks that are running on the system at the same time.
359
             Isolate each task from other tasks that are running on the system at the same time.
355
          </listitem>
360
          </listitem>
356
 
361
 
357
          <listitem>
362
          <listitem>
358
             Allow to allocate more memory, than is actual physical memory size of the machine.
363
             Allow to allocate more memory, than is actual physical memory size of the machine.
359
          </listitem>
364
          </listitem>
360
 
365
 
361
          <listitem>
366
          <listitem>
362
             Allowing, in general, to load and execute two programs that are linked on the same address without complicated relocations.
367
             Allowing, in general, to load and execute two programs that are linked on the same address without complicated relocations.
363
          </listitem>
368
          </listitem>
364
        </itemizedlist></para>
369
        </itemizedlist></para>
365
 
370
 
366
      <para><!--
371
      <para><!--
367
 
372
 
368
                <para>
373
                <para>
369
                        Address spaces. Address space area (B+ tree). Only for uspace. Set of syscalls (shrink/extend etc).
374
                        Address spaces. Address space area (B+ tree). Only for uspace. Set of syscalls (shrink/extend etc).
370
                        Special address space area type - device - prohibits shrink/extend syscalls to call on it.
375
                        Special address space area type - device - prohibits shrink/extend syscalls to call on it.
371
                        Address space has link to mapping tables (hierarchical - per Address space, hash - global tables).
376
                        Address space has link to mapping tables (hierarchical - per Address space, hash - global tables).
372
                </para>
377
                </para>
373
 
378
 
374
--></para>
379
--></para>
375
    </section>
380
    </section>
376
 
381
 
377
    <section>
382
    <section>
378
      <title>Address spaces</title>
383
      <title>Address spaces</title>
379
 
384
 
380
      <section>
385
      <section>
-
 
386
    <indexterm><primary>memory management</primary><secondary>address space area</secondary></indexterm>
381
        <title>Address space areas</title>
387
    <title>Address space areas</title>
382
 
388
 
383
        <para>Each address space consists of mutually disjunctive continuous
389
        <para>Each address space consists of mutually disjunctive continuous
384
        address space areas. Address space area is precisely defined by its
390
        address space areas. Address space area is precisely defined by its
385
        base address and the number of frames/pages is contains.</para>
391
        base address and the number of frames/pages is contains.</para>
386
 
392
 
387
        <para>Address space area , that define behaviour and permissions on
393
        <para>Address space area , that define behaviour and permissions on
388
        the particular area. <itemizedlist>
394
        the particular area. <itemizedlist>
389
            <listitem>
395
            <listitem>
390
               
396
               
391
 
397
 
392
              <emphasis>AS_AREA_READ</emphasis>
398
              <emphasis>AS_AREA_READ</emphasis>
393
 
399
 
394
               flag indicates reading permission.
400
               flag indicates reading permission.
395
            </listitem>
401
            </listitem>
396
 
402
 
397
            <listitem>
403
            <listitem>
398
               
404
               
399
 
405
 
400
              <emphasis>AS_AREA_WRITE</emphasis>
406
              <emphasis>AS_AREA_WRITE</emphasis>
401
 
407
 
402
               flag indicates writing permission.
408
               flag indicates writing permission.
403
            </listitem>
409
            </listitem>
404
 
410
 
405
            <listitem>
411
            <listitem>
406
               
412
               
407
 
413
 
408
              <emphasis>AS_AREA_EXEC</emphasis>
414
              <emphasis>AS_AREA_EXEC</emphasis>
409
 
415
 
410
               flag indicates code execution permission. Some architectures do not support execution persmission restriction. In this case this flag has no effect.
416
               flag indicates code execution permission. Some architectures do not support execution persmission restriction. In this case this flag has no effect.
411
            </listitem>
417
            </listitem>
412
 
418
 
413
            <listitem>
419
            <listitem>
414
               
420
               
415
 
421
 
416
              <emphasis>AS_AREA_DEVICE</emphasis>
422
              <emphasis>AS_AREA_DEVICE</emphasis>
417
 
423
 
418
               marks area as mapped to the device memory.
424
               marks area as mapped to the device memory.
419
            </listitem>
425
            </listitem>
420
          </itemizedlist></para>
426
          </itemizedlist></para>
421
 
427
 
422
        <para>Kernel provides possibility tasks create/expand/shrink/share its
428
        <para>Kernel provides possibility tasks create/expand/shrink/share its
423
        address space via the set of syscalls.</para>
429
        address space via the set of syscalls.</para>
424
      </section>
430
      </section>
425
 
431
 
426
      <section>
432
      <section>
-
 
433
    <indexterm><primary>memory management</primary><secondary>asid</secondary></indexterm>
427
        <title>Address Space ID (ASID)</title>
434
        <title>Address Space ID (ASID)</title>
428
 
435
 
429
        <para>When switching to the different task, kernel also require to
436
        <para>When switching to the different task, kernel also require to
430
        switch mappings to the different address space. In case TLB cannot
437
        switch mappings to the different address space. In case TLB cannot
431
        distinguish address space mappings, all mapping information in TLB
438
        distinguish address space mappings, all mapping information in TLB
432
        from the old address space must be flushed, which can create certain
439
        from the old address space must be flushed, which can create certain
433
        uncessary overhead during the task switching. To avoid this, some
440
        uncessary overhead during the task switching. To avoid this, some
434
        architectures have capability to segregate different address spaces on
441
        architectures have capability to segregate different address spaces on
435
        hardware level introducing the address space identifier as a part of
442
        hardware level introducing the address space identifier as a part of
436
        TLB record, telling the virtual address space translation unit to
443
        TLB record, telling the virtual address space translation unit to
437
        which address space this record is applicable.</para>
444
        which address space this record is applicable.</para>
438
 
445
 
439
        <para>HelenOS kernel can take advantage of this hardware supported
446
        <para>HelenOS kernel can take advantage of this hardware supported
440
        identifier by having an ASID abstraction which is somehow related to
447
        identifier by having an ASID abstraction which is somehow related to
441
        the corresponding architecture identifier. I.e. on ia64 kernel ASID is
448
        the corresponding architecture identifier. I.e. on ia64 kernel ASID is
442
        derived from RID (region identifier) and on the mips32 kernel ASID is
449
        derived from RID (region identifier) and on the mips32 kernel ASID is
443
        actually the hardware identifier. As expected, this ASID information
450
        actually the hardware identifier. As expected, this ASID information
444
        record is the part of <emphasis>as_t</emphasis> structure.</para>
451
        record is the part of <emphasis>as_t</emphasis> structure.</para>
445
 
452
 
446
        <para>Due to the hardware limitations, hardware ASID has limited
453
        <para>Due to the hardware limitations, hardware ASID has limited
447
        length from 8 bits on ia64 to 24 bits on mips32, which makes it
454
        length from 8 bits on ia64 to 24 bits on mips32, which makes it
448
        impossible to use it as unique address space identifier for all tasks
455
        impossible to use it as unique address space identifier for all tasks
449
        running in the system. In such situations special ASID stealing
456
        running in the system. In such situations special ASID stealing
450
        algoritm is used, which takes ASID from inactive task and assigns it
457
        algoritm is used, which takes ASID from inactive task and assigns it
451
        to the active task.</para>
458
        to the active task.</para>
452
 
459
 
453
        <para><classname>ASID stealing algoritm here.</classname></para>
460
        <para><classname>ASID stealing algoritm here.</classname></para>
454
      </section>
461
      </section>
455
    </section>
462
    </section>
456
 
463
 
457
    <section>
464
    <section>
458
      <title>Virtual address translation</title>
465
      <title>Virtual address translation</title>
459
 
466
 
460
      <section id="paging">
467
      <section id="paging">
461
        <title>Paging</title>
468
        <title>Paging</title>
462
 
469
 
463
        <section>
470
        <section>
464
          <title>Introduction</title>
471
          <title>Introduction</title>
465
 
472
 
466
          <para>Virtual memory is usually using paged memory model, where
473
          <para>Virtual memory is usually using paged memory model, where
467
          virtual memory address space is divided into the
474
          virtual memory address space is divided into the
468
          <emphasis>pages</emphasis> (usually having size 4096 bytes) and
475
          <emphasis>pages</emphasis> (usually having size 4096 bytes) and
469
          physical memory is divided into the frames (same sized as a page, of
476
          physical memory is divided into the frames (same sized as a page, of
470
          course). Each page may be mapped to some frame and then, upon memory
477
          course). Each page may be mapped to some frame and then, upon memory
471
          access to the virtual address, CPU performs <emphasis>address
478
          access to the virtual address, CPU performs <emphasis>address
472
          translation</emphasis> during the instruction execution.
479
          translation</emphasis> during the instruction execution.
473
          Non-existing mapping generates page fault exception, calling kernel
480
          Non-existing mapping generates page fault exception, calling kernel
474
          exception handler, thus allowing kernel to manipulate rules of
481
          exception handler, thus allowing kernel to manipulate rules of
475
          memory access. Information for pages mapping is stored by kernel in
482
          memory access. Information for pages mapping is stored by kernel in
476
          the <link linkend="page_tables">page tables</link></para>
483
          the page tables</para>
477
 
484
 
478
          <para>The majority of the architectures use multi-level page tables,
485
          <para>The majority of the architectures use multi-level page tables,
479
          which means need to access physical memory several times before
486
          which means need to access physical memory several times before
480
          getting physical address. This fact would make serios performance
487
          getting physical address. This fact would make serios performance
481
          overhead in virtual memory management. To avoid this <link
488
          overhead in virtual memory management. To avoid this <link
482
          linkend="tlb">Traslation Lookaside Buffer (TLB)</link> is
489
          linkend="tlb">Traslation Lookaside Buffer (TLB)</link> is
483
          used.</para>
490
          used.</para>
484
 
491
 
485
          <para>HelenOS kernel has two different approaches to the paging
492
          <para>HelenOS kernel has two different approaches to the paging
486
          implementation: <emphasis>4 level page tables</emphasis> and
493
          implementation: <emphasis>4 level page tables</emphasis> and
487
          <emphasis>global hash table</emphasis>, which are accessible via
494
          <emphasis>global hash table</emphasis>, which are accessible via
488
          generic paging abstraction layer. Such different functionality was
495
          generic paging abstraction layer. Such different functionality was
489
          caused by the major architectural differences between supported
496
          caused by the major architectural differences between supported
490
          platforms. This abstraction is implemented with help of the global
497
          platforms. This abstraction is implemented with help of the global
491
          structure of pointers to basic mapping functions
498
          structure of pointers to basic mapping functions
492
          <emphasis>page_mapping_operations</emphasis>. To achieve different
499
          <emphasis>page_mapping_operations</emphasis>. To achieve different
493
          functionality of page tables, corresponding layer must implement
500
          functionality of page tables, corresponding layer must implement
494
          functions, declared in
501
          functions, declared in
495
          <emphasis>page_mapping_operations</emphasis></para>
502
          <emphasis>page_mapping_operations</emphasis></para>
496
 
503
 
497
          <para>Thanks to the abstract paging interface, there was a place
504
          <para>Thanks to the abstract paging interface, there was a place
498
          left for more paging implementations (besides already implemented
505
          left for more paging implementations (besides already implemented
499
          hieararchical page tables and hash table), for example B-Tree based
506
          hieararchical page tables and hash table), for example B-Tree based
500
          page tables.</para>
507
          page tables.</para>
501
        </section>
508
        </section>
502
 
509
 
503
        <section>
510
        <section>
504
          <title>Hierarchical 4-level page tables</title>
511
          <title>Hierarchical 4-level page tables</title>
505
 
512
 
506
          <para>Hierarchical 4-level page tables are the generalization of the
513
          <para>Hierarchical 4-level page tables are the generalization of the
507
          hardware capabilities of most architectures. Each address space has
514
          hardware capabilities of most architectures. Each address space has
508
          its own page tables.<itemizedlist>
515
          its own page tables.<itemizedlist>
509
              <listitem>
516
              <listitem>
510
                 ia32 uses 2-level page tables, with full hardware support.
517
                 ia32 uses 2-level page tables, with full hardware support.
511
              </listitem>
518
              </listitem>
512
 
519
 
513
              <listitem>
520
              <listitem>
514
                 amd64 uses 4-level page tables, also coming with full hardware support.
521
                 amd64 uses 4-level page tables, also coming with full hardware support.
515
              </listitem>
522
              </listitem>
516
 
523
 
517
              <listitem>
524
              <listitem>
518
                 mips and ppc32 have 2-level tables, software simulated support.
525
                 mips and ppc32 have 2-level tables, software simulated support.
519
              </listitem>
526
              </listitem>
520
            </itemizedlist></para>
527
            </itemizedlist></para>
521
        </section>
528
        </section>
522
 
529
 
523
        <section>
530
        <section>
-
 
531
      <indexterm><primary>memory management</primary><secondary>hash table</secondary></indexterm>          
524
          <title>Global hash table</title>
532
      <title>Global hash table</title>
525
 
533
 
526
          <para>Implementation of the global hash table was encouraged by the
534
          <para>Implementation of the global hash table was encouraged by the
527
          ia64 architecture support. One of the major differences between
535
          ia64 architecture support. One of the major differences between
528
          global hash table and hierarchical tables is that global hash table
536
          global hash table and hierarchical tables is that global hash table
529
          exists only once in the system and the hierarchical tables are
537
          exists only once in the system and the hierarchical tables are
530
          maintained per address space.</para>
538
          maintained per address space.</para>
531
 
539
 
532
          <para>Thus, hash table contains information about all address spaces
540
          <para>Thus, hash table contains information about all address spaces
533
          mappings in the system, so, the hash of an entry must contain
541
          mappings in the system, so, the hash of an entry must contain
534
          information of both address space pointer or id and the virtual
542
          information of both address space pointer or id and the virtual
535
          address of the page. Generic hash table implementation assumes that
543
          address of the page. Generic hash table implementation assumes that
536
          the addresses of the pointers to the address spaces are likely to be
544
          the addresses of the pointers to the address spaces are likely to be
537
          on the close addresses, so it uses least significant bits for hash;
545
          on the close addresses, so it uses least significant bits for hash;
538
          also it assumes that the virtual page addresses have roughly the
546
          also it assumes that the virtual page addresses have roughly the
539
          same probability of occurring, so the least significant bits of VPN
547
          same probability of occurring, so the least significant bits of VPN
540
          compose the hash index.</para>
548
          compose the hash index.</para>
541
 
549
 
542
          <para>Collision chains ...</para>
550
          <para>Collision chains ...</para>
543
        </section>
551
        </section>
544
      </section>
552
      </section>
545
 
553
 
546
      <section id="tlb">
554
      <section id="tlb">
-
 
555
        <indexterm><primary>memory management</primary><secondary>tlb</secondary></indexterm>
547
        <title>Translation Lookaside buffer</title>
556
        <title>Translation Lookaside buffer</title>
548
 
557
 
549
        <para>Due to the extensive overhead during the page mapping lookup in
558
        <para>Due to the extensive overhead during the page mapping lookup in
550
        the page tables, all architectures has fast assotiative cache memory
559
        the page tables, all architectures has fast assotiative cache memory
551
        built-in CPU. This memory called TLB stores recently used page table
560
        built-in CPU. This memory called TLB stores recently used page table
552
        entries.</para>
561
        entries.</para>
553
 
562
 
554
        <section id="tlb_shootdown">
563
        <section id="tlb_shootdown">
555
          <title>TLB consistency. TLB shootdown algorithm.</title>
564
          <title>TLB consistency. TLB shootdown algorithm.</title>
556
 
565
 
557
          <para>Operating system is responsible for keeping TLB consistent by
566
          <para>Operating system is responsible for keeping TLB consistent by
558
          invalidating the contents of TLB, whenever there is some change in
567
          invalidating the contents of TLB, whenever there is some change in
559
          page tables. Those changes may occur when page or group of pages
568
          page tables. Those changes may occur when page or group of pages
560
          were unmapped, mapping is changed or system switching active address
569
          were unmapped, mapping is changed or system switching active address
561
          space to schedule a new system task. Moreover, this invalidation
570
          space to schedule a new system task. Moreover, this invalidation
562
          operation must be done an all system CPUs because each CPU has its
571
          operation must be done an all system CPUs because each CPU has its
563
          own independent TLB cache. Thus maintaining TLB consistency on SMP
572
          own independent TLB cache. Thus maintaining TLB consistency on SMP
564
          configuration as not as trivial task as it looks on the first
573
          configuration as not as trivial task as it looks on the first
565
          glance. Naive solution would assume that is the CPU which wants to
574
          glance. Naive solution would assume that is the CPU which wants to
566
          invalidate TLB will invalidate TLB caches on other CPUs. It is not
575
          invalidate TLB will invalidate TLB caches on other CPUs. It is not
567
          possible on the most of the architectures, because of the simple
576
          possible on the most of the architectures, because of the simple
568
          fact - flushing TLB is allowed only on the local CPU and there is no
577
          fact - flushing TLB is allowed only on the local CPU and there is no
569
          possibility to access other CPUs' TLB caches, thus invalidate TLB
578
          possibility to access other CPUs' TLB caches, thus invalidate TLB
570
          remotely.</para>
579
          remotely.</para>
571
 
580
 
572
          <para>Technique of remote invalidation of TLB entries is called "TLB
581
          <para>Technique of remote invalidation of TLB entries is called "TLB
573
          shootdown". HelenOS uses a variation of the algorithm described by
582
          shootdown". HelenOS uses a variation of the algorithm described by
574
          D. Black et al., "Translation Lookaside Buffer Consistency: A
583
          D. Black et al., "Translation Lookaside Buffer Consistency: A
575
          Software Approach," Proc. Third Int'l Conf. Architectural Support
584
          Software Approach," Proc. Third Int'l Conf. Architectural Support
576
          for Programming Languages and Operating Systems, 1989, pp.
585
          for Programming Languages and Operating Systems, 1989, pp.
577
          113-122.</para>
586
          113-122.</para>
578
 
587
 
579
          <para>As the situation demands, you will want partitial invalidation
588
          <para>As the situation demands, you will want partitial invalidation
580
          of TLB caches. In case of simple memory mapping change it is
589
          of TLB caches. In case of simple memory mapping change it is
581
          necessary to invalidate only one or more adjacent pages. In case if
590
          necessary to invalidate only one or more adjacent pages. In case if
582
          the architecture is aware of ASIDs, when kernel needs to dump some
591
          the architecture is aware of ASIDs, when kernel needs to dump some
583
          ASID to use by another task, it invalidates only entries from this
592
          ASID to use by another task, it invalidates only entries from this
584
          particular address space. Final option of the TLB invalidation is
593
          particular address space. Final option of the TLB invalidation is
585
          the complete TLB cache invalidation, which is the operation that
594
          the complete TLB cache invalidation, which is the operation that
586
          flushes all entries in TLB.</para>
595
          flushes all entries in TLB.</para>
587
 
596
 
588
          <para>TLB shootdown is performed in two phases.</para>
597
          <para>TLB shootdown is performed in two phases.</para>
589
 
598
 
590
          <formalpara>
599
          <formalpara>
591
            <title>Phase 1.</title>
600
            <title>Phase 1.</title>
592
 
601
 
593
            <para>First, initiator locks a global TLB spinlock, then request
602
            <para>First, initiator locks a global TLB spinlock, then request
594
            is being put to the local request cache of every other CPU in the
603
            is being put to the local request cache of every other CPU in the
595
            system protected by its spinlock. In case the cache is full, all
604
            system protected by its spinlock. In case the cache is full, all
596
            requests in the cache are replaced by one request, indicating
605
            requests in the cache are replaced by one request, indicating
597
            global TLB flush. Then the initiator thread sends an IPI message
606
            global TLB flush. Then the initiator thread sends an IPI message
598
            indicating the TLB shootdown request to the rest of the CPUs and
607
            indicating the TLB shootdown request to the rest of the CPUs and
599
            waits actively until all CPUs confirm TLB invalidating action
608
            waits actively until all CPUs confirm TLB invalidating action
600
            execution by setting up a special flag. After setting this flag
609
            execution by setting up a special flag. After setting this flag
601
            this thread is blocked on the TLB spinlock, held by the
610
            this thread is blocked on the TLB spinlock, held by the
602
            initiator.</para>
611
            initiator.</para>
603
          </formalpara>
612
          </formalpara>
604
 
613
 
605
          <formalpara>
614
          <formalpara>
606
            <title>Phase 2.</title>
615
            <title>Phase 2.</title>
607
 
616
 
608
            <para>All CPUs are waiting on the TLB spinlock to execute TLB
617
            <para>All CPUs are waiting on the TLB spinlock to execute TLB
609
            invalidation action and have indicated their intention to the
618
            invalidation action and have indicated their intention to the
610
            initiator. Initiator continues, cleaning up its TLB and releasing
619
            initiator. Initiator continues, cleaning up its TLB and releasing
611
            the global TLB spinlock. After this all other CPUs gain and
620
            the global TLB spinlock. After this all other CPUs gain and
612
            immidiately release TLB spinlock and perform TLB invalidation
621
            immidiately release TLB spinlock and perform TLB invalidation
613
            actions.</para>
622
            actions.</para>
614
          </formalpara>
623
          </formalpara>
615
        </section>
624
        </section>
616
      </section>
625
      </section>
617
    </section>
626
    </section>
618
  </section>
627
  </section>
619
</chapter>
628
</chapter>