diff options
| author | Steve Wise <[email protected]> | 2006-10-02 02:17:00 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-10-02 07:57:12 -0700 |
| commit | 322acc96d4bd3debea11cd0160b18bd5d7ff0d73 (patch) | |
| tree | 230e9c35e0ce4dac5bd1a49085152624045fb616 /include/linux | |
| parent | d834c16516d1ebec4766fc58c059bf01311e6045 (diff) | |
[PATCH] LIB: add gen_pool_destroy()
Modules using the genpool allocator need to be able to destroy the data
structure when unloading.
Signed-off-by: Steve Wise <[email protected]>
Cc: Randy Dunlap <[email protected]>
Cc: Dean Nelson <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/genalloc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/genalloc.h b/include/linux/genalloc.h index 690c42803d2e..9869ef3674ac 100644 --- a/include/linux/genalloc.h +++ b/include/linux/genalloc.h @@ -31,5 +31,6 @@ struct gen_pool_chunk { extern struct gen_pool *gen_pool_create(int, int); extern int gen_pool_add(struct gen_pool *, unsigned long, size_t, int); +extern void gen_pool_destroy(struct gen_pool *); extern unsigned long gen_pool_alloc(struct gen_pool *, size_t); extern void gen_pool_free(struct gen_pool *, unsigned long, size_t); |