-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 319575 b: refs/heads/master c: 97d0660 h: refs/heads/master i: 319573: 30e7f01 319571: 0ea2957 319567: 368bc4d v: v3
- Loading branch information
Christoph Lameter
authored and
Pekka Enberg
committed
Jul 9, 2012
1 parent
92639f6
commit f3fce7d
Showing
7 changed files
with
63 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 039363f38bfe5f6281e9eae5e0518b11577d9d50 | ||
refs/heads/master: 97d06609158e61f6bdf538c4a6788e2de492236f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#ifndef MM_SLAB_H | ||
#define MM_SLAB_H | ||
/* | ||
* Internal slab definitions | ||
*/ | ||
|
||
/* | ||
* State of the slab allocator. | ||
* | ||
* This is used to describe the states of the allocator during bootup. | ||
* Allocators use this to gradually bootstrap themselves. Most allocators | ||
* have the problem that the structures used for managing slab caches are | ||
* allocated from slab caches themselves. | ||
*/ | ||
enum slab_state { | ||
DOWN, /* No slab functionality yet */ | ||
PARTIAL, /* SLUB: kmem_cache_node available */ | ||
PARTIAL_ARRAYCACHE, /* SLAB: kmalloc size for arraycache available */ | ||
PARTIAL_L3, /* SLAB: kmalloc size for l3 struct available */ | ||
UP, /* Slab caches usable but not all extras yet */ | ||
FULL /* Everything is working */ | ||
}; | ||
|
||
extern enum slab_state slab_state; | ||
|
||
struct kmem_cache *__kmem_cache_create(const char *name, size_t size, | ||
size_t align, unsigned long flags, void (*ctor)(void *)); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters