diff options
Diffstat (limited to 'include/linux/genalloc.h')
| -rw-r--r-- | include/linux/genalloc.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/genalloc.h b/include/linux/genalloc.h index 5e98eeb2af3b..dd7c569aacad 100644 --- a/include/linux/genalloc.h +++ b/include/linux/genalloc.h | |||
| @@ -29,6 +29,20 @@ | |||
| 29 | 29 | ||
| 30 | #ifndef __GENALLOC_H__ | 30 | #ifndef __GENALLOC_H__ |
| 31 | #define __GENALLOC_H__ | 31 | #define __GENALLOC_H__ |
| 32 | /** | ||
| 33 | * Allocation callback function type definition | ||
| 34 | * @map: Pointer to bitmap | ||
| 35 | * @size: The bitmap size in bits | ||
| 36 | * @start: The bitnumber to start searching at | ||
| 37 | * @nr: The number of zeroed bits we're looking for | ||
| 38 | * @data: optional additional data used by @genpool_algo_t | ||
| 39 | */ | ||
| 40 | typedef unsigned long (*genpool_algo_t)(unsigned long *map, | ||
| 41 | unsigned long size, | ||
| 42 | unsigned long start, | ||
| 43 | unsigned int nr, | ||
| 44 | void *data); | ||
| 45 | |||
| 32 | /* | 46 | /* |
| 33 | * General purpose special memory pool descriptor. | 47 | * General purpose special memory pool descriptor. |
| 34 | */ | 48 | */ |
| @@ -36,6 +50,9 @@ struct gen_pool { | |||
| 36 | spinlock_t lock; | 50 | spinlock_t lock; |
| 37 | struct list_head chunks; /* list of chunks in this pool */ | 51 | struct list_head chunks; /* list of chunks in this pool */ |
| 38 | int min_alloc_order; /* minimum allocation order */ | 52 | int min_alloc_order; /* minimum allocation order */ |
| 53 | |||
| 54 | genpool_algo_t algo; /* allocation function */ | ||
| 55 | void *data; | ||
| 39 | }; | 56 | }; |
| 40 | 57 | ||
| 41 | /* | 58 | /* |
| @@ -78,4 +95,14 @@ extern void gen_pool_for_each_chunk(struct gen_pool *, | |||
| 78 | void (*)(struct gen_pool *, struct gen_pool_chunk *, void *), void *); | 95 | void (*)(struct gen_pool *, struct gen_pool_chunk *, void *), void *); |
| 79 | extern size_t gen_pool_avail(struct gen_pool *); | 96 | extern size_t gen_pool_avail(struct gen_pool *); |
| 80 | extern size_t gen_pool_size(struct gen_pool *); | 97 | extern size_t gen_pool_size(struct gen_pool *); |
| 98 | |||
| 99 | extern void gen_pool_set_algo(struct gen_pool *pool, genpool_algo_t algo, | ||
| 100 | void *data); | ||
| 101 | |||
| 102 | extern unsigned long gen_pool_first_fit(unsigned long *map, unsigned long size, | ||
| 103 | unsigned long start, unsigned int nr, void *data); | ||
| 104 | |||
| 105 | extern unsigned long gen_pool_best_fit(unsigned long *map, unsigned long size, | ||
| 106 | unsigned long start, unsigned int nr, void *data); | ||
| 107 | |||
| 81 | #endif /* __GENALLOC_H__ */ | 108 | #endif /* __GENALLOC_H__ */ |
