]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/genalloc.h
include/linux/genalloc.h: add multiple-inclusion guards
[mirror_ubuntu-bionic-kernel.git] / include / linux / genalloc.h
CommitLineData
f14f75b8
JS
1/*
2 * Basic general purpose allocator for managing special purpose memory
3 * not managed by the regular kmalloc/kfree interface.
4 * Uses for this includes on-device special memory, uncached memory
5 * etc.
6 *
f14f75b8
JS
7 * This source code is licensed under the GNU General Public License,
8 * Version 2. See the file COPYING for more details.
9 */
10
f14f75b8 11
6aae6e03
JCPV
12#ifndef __GENALLOC_H__
13#define __GENALLOC_H__
f14f75b8 14/*
929f9727 15 * General purpose special memory pool descriptor.
f14f75b8 16 */
929f9727
DN
17struct gen_pool {
18 rwlock_t lock;
19 struct list_head chunks; /* list of chunks in this pool */
20 int min_alloc_order; /* minimum allocation order */
f14f75b8
JS
21};
22
23/*
929f9727 24 * General purpose special memory pool chunk descriptor.
f14f75b8 25 */
929f9727 26struct gen_pool_chunk {
f14f75b8 27 spinlock_t lock;
929f9727
DN
28 struct list_head next_chunk; /* next chunk in pool */
29 unsigned long start_addr; /* starting address of memory chunk */
30 unsigned long end_addr; /* ending address of memory chunk */
31 unsigned long bits[0]; /* bitmap for allocating memory chunk */
f14f75b8
JS
32};
33
929f9727
DN
34extern struct gen_pool *gen_pool_create(int, int);
35extern int gen_pool_add(struct gen_pool *, unsigned long, size_t, int);
322acc96 36extern void gen_pool_destroy(struct gen_pool *);
929f9727
DN
37extern unsigned long gen_pool_alloc(struct gen_pool *, size_t);
38extern void gen_pool_free(struct gen_pool *, unsigned long, size_t);
6aae6e03 39#endif /* __GENALLOC_H__ */