summaryrefslogtreecommitdiff
path: root/viengoos/pager.c
blob: 8bddc5295605fe8ee8916c0d7653be38e0aa154b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/* pager.c - Pager implementation.
   Copyright (C) 2007 Free Software Foundation, Inc.
   Written by Neal H. Walfield <neal@gnu.org>.

   This file is part of the GNU Hurd.

   The GNU Hurd is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 3 of the
   License, or (at your option) any later version.

   The GNU Hurd is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see
   <http://www.gnu.org/licenses/>.  */

#include "memory.h"
#include "zalloc.h"
#include "activity.h"
#include "object.h"

/* We try to keep at least 1/8 (12.5%) of memory available for
   immediate allocation.  */
#define LOW_WATER_MARK (memory_total / 8)
/* When we start freeing, we try to get at least 3/16 (~19%) of memory
   available for immediate allocation.  */
#define HIGH_WATER_MARK (LOW_WATER_MARK + LOW_WATER_MARK / 2)

/* Free memory from the activity or activities with the largest
   disproportionate share of memory such that the number of clean
   pages plus the number of pages in the laundry exceed the low-memory
   threshold.  */
void
pager_collect (void)
{
  int available_pages = zalloc_memory
    + available_list_count (&available)
    /* We only count the pages on the laundry half as they won't be
       available immediately.  */
    + laundry_list_count (&laundry) / 2;

  if (available_pages > LOW_WATER_MARK)
    return;

  /* We've dipped below the low mark mark.  Free enough memory such
     that we are above the high water mark.  */

  int goal = HIGH_WATER_MARK - available_pages;

  debug (0, "Frames: %d, available: %d (%d%%) (dirty: %d), "
	 "low water: %d, goal: %d",
	 memory_total,
	 available_pages, (available_pages * 100) / memory_total,
	 laundry_list_count (&laundry),
	 LOW_WATER_MARK, goal);

  /* Find a victim.  */
  struct activity *victim = root_activity;
  struct activity *parent;

  struct activity_memory_policy victim_policy;
  int victim_frames;

  do
    {
      /* The total weight and the total number of frames of the lowest
	 priority group.  */
      int weight;
      int frames;

      parent = victim;
      victim_frames = victim->frames_local;
      victim_policy = victim->policy.child_rel;
      weight = victim_policy.weight;
      frames = victim_frames;

      struct activity *child;
      activity_for_each_inmemory_child
	(parent, child,
	 ({
	   if (child->policy.sibling_rel.priority < victim_policy.priority)
	     /* CHILD has a lower absolute priority.  */
	     {
	       victim = child;
	       victim_frames = victim->frames_total;
	       victim_policy = victim->policy.sibling_rel;

	       /* Reset the weight.  */
	       weight = victim_policy.weight;
	       frames = victim_frames;
	     }
	   else if (child->policy.sibling_rel.priority
		    == victim_policy.priority)
	     /* CHILD and VICTIM have equal priority.  Steal from the one
		which has the most pages taking into their respective
		weights.  */
	     {
	       weight += child->policy.sibling_rel.weight;
	       frames += child->frames_total;

	       int f = child->frames_total + victim_frames;
	       int w = child->policy.sibling_rel.weight + victim_policy.weight;

	       int child_excess = child->frames_total
		 - (child->policy.sibling_rel.weight * f) / w;
	       int victim_excess = victim_frames
		 - (victim_policy.weight * f) / w;

	       if (child_excess > victim_excess)
		 /* CHILD has more excess frames than VICTIM.  */
		 {
		   victim = child;
		   victim_frames = victim->frames_total;
		   victim_policy = victim->policy.sibling_rel;
		 }
	     }
	 }));

      if (frames >= goal)
	/* The number of frames at this priority level exceed the
	   goal.  Page all activity's at this priority level
	   out.  */
	{
	  /* XXX: Do it.  */
	}

      /* VICTIM's share of the frames allocated to all the activity's
	 at this priority level.  */
      int share;
      if (weight == 0)
	share = 0;
      else
	share = (frames * victim_policy.weight) / weight;

      /* VICTIM's share must be less than or equal to the frames
	 allocated to this priority as we know that this activity has
	 an excess and VICTIM is the most excessive.  */
      assertx (share < victim->frames_total,
	       "%d <= %d", share, victim->frames_total);

      if (victim->frames_total - share < goal)
	/* VICTIM's excess is less than the amount we want to reclaim.
	   Reclaim from the second worst offender after we finish
	   here.  */
	{
	  /* XXX: Do it.  */
	}

      if (victim->frames_total - share < goal)
	goal = victim->frames_total - share;

      debug (0, "Choosing activity " OID_FMT "%s, %d/%d frames, "
	     "share: %d, goal: %d",
	     OID_PRINTF (object_to_object_desc ((struct object *) victim)->oid),
	     victim->parent ? "" : " (root activity)",
	     victim->frames_total, victim->frames_local, share, goal);
    }
  while (victim != parent);
  assert (victim);

  /* We want to steal GOAL pages from VICTIM.  */

  int count = 0;
  int laundry_count = 0;

  /* XXX: Implement group dealloc.  */

  ss_mutex_lock (&lru_lock);

  /* First try objects with a priority lower than LRU.  */

  struct object_desc *desc;
  struct object_desc *next = hurd_btree_priorities_first (&victim->priorities);
  while (((desc = next)) && count < goal)
    {
      assert (! desc->eviction_candidate);

      assert (desc->policy.priority != OBJECT_PRIORITY_LRU);
      if (desc->policy.priority > OBJECT_PRIORITY_LRU)
	/* DESC's priority is higher than OBJECT_PRIORITY_LRU, prefer
	   LRU ordered pages.  */
	break;

      next = hurd_btree_priorities_next (desc);

      object_desc_unmap (desc);

      hurd_btree_priorities_detach (&victim->priorities, desc);

      desc->eviction_candidate = true;

      if (desc->dirty && ! desc->policy.discardable)
	{
	  if (! list_node_attached (&desc->laundry_node))
	    laundry_list_queue (&laundry, desc);

	  eviction_list_queue (&victim->eviction_dirty, desc);
	  laundry_count ++;
	}
      else
	{
	  assert (! list_node_attached (&desc->available_node));

	  available_list_queue (&available, desc);
	  eviction_list_queue (&victim->eviction_clean, desc);
	}

      count ++;
    }

  if (count < goal)
    /* VICTIM still has to yield pages.  Start stealing from the
       inactive LRU lists.  */
    {
      struct object_desc *clean, *dirty;

      /* For every clean page we steal, we queue a dirty page for
	 writeout.  */

      clean = activity_lru_list_head (&victim->inactive_clean);
      dirty = activity_lru_list_head (&victim->inactive_dirty);

      struct object_desc *next;

      while ((clean || dirty) && count < goal)
	{
	  if (clean)
	    {
	      assert (! clean->eviction_candidate);
	      assert (! clean->dirty || clean->policy.discardable);
	      assert (! list_node_attached (&clean->available_node));

	      next = activity_lru_list_next (clean);

	      activity_lru_list_unlink (&victim->inactive_clean, clean);

	      if (object_desc_unmap (clean))
		/* It is possible that the page was dirtied between
		   the last check and now.  */
		{
		  eviction_list_push (&victim->eviction_dirty, clean);

		  laundry_list_queue (&laundry, clean);
		}
	      else
		{
		  eviction_list_push (&victim->eviction_clean, clean);

		  available_list_queue (&available, clean);
		}

	      clean->eviction_candidate = true;

	      count ++;

	      clean = next;
	    }

	  if (count == goal)
	    break;

	  if (dirty)
	    {
	      assert (! dirty->eviction_candidate);
	      assert (dirty->dirty && ! dirty->policy.discardable);
	      assert (! list_node_attached (&dirty->laundry_node));

	      next = activity_lru_list_next (dirty);

	      object_desc_unmap (dirty);

	      dirty->eviction_candidate = true;

	      activity_lru_list_unlink (&victim->inactive_dirty, dirty);
	      eviction_list_push (&victim->eviction_dirty, dirty);

	      laundry_list_queue (&laundry, dirty);

	      laundry_count ++;
	      count ++;

	      dirty = next;
	    }
	}
    }

  if (count < goal)
    /* Still hasn't yielded enough.  Steal from the active list.  */
    {
      struct object_desc *desc;
      struct object_desc *next = activity_lru_list_head (&victim->active);

      while ((desc = next) && count < goal)
	{
	  assert (! desc->eviction_candidate);

	  next = activity_lru_list_next (desc);

	  object_desc_unmap (desc);

	  desc->eviction_candidate = true;

	  activity_lru_list_unlink (&victim->active, desc);

	  if (desc->dirty && ! desc->policy.discardable)
	    {
	      if (! list_node_attached (&desc->laundry_node))
		laundry_list_queue (&laundry, desc);

	      eviction_list_queue (&victim->eviction_dirty, desc);
	      laundry_count ++;
	    }
	  else
	    {
	      assert (! list_node_attached (&desc->available_node));

	      available_list_queue (&available, desc);
	      eviction_list_queue (&victim->eviction_clean, desc);
	    }

	  count ++;
	}
    }

  if (count < goal)
    /* We've cleared the low priority nodes, the inactive LRU lists
       and the active LRU list.  Steal from the high priority
       lists.  */
    {
      /* NEXT points to the first high priority object descriptor.  */

      while (count < goal && (desc = next))
	{
	  assert (! desc->eviction_candidate);
	  assert (desc->policy.priority > OBJECT_PRIORITY_LRU);

	  next = hurd_btree_priorities_next (desc);

	  object_desc_unmap (desc);

	  hurd_btree_priorities_detach (&victim->priorities, desc);

	  desc->eviction_candidate = true;

	  if (desc->dirty && ! desc->policy.discardable)
	    {
	      if (! list_node_attached (&desc->laundry_node))
		laundry_list_queue (&laundry, desc);

	      eviction_list_queue (&victim->eviction_dirty, desc);
	      laundry_count ++;
	    }
	  else
	    {
	      assert (! list_node_attached (&desc->available_node));

	      available_list_queue (&available, desc);
	      eviction_list_queue (&victim->eviction_clean, desc);
	    }

	  count ++;
	}
    }

  ACTIVITY_STAT_UPDATE (victim, evicted, count);

  debug (0, "Goal: %d, %d in laundry, %d made available",
	 goal, laundry_count, count - laundry_count);

  ss_mutex_unlock (&lru_lock);
}