diff options
author | Mingming Cao <cmm@us.ibm.com> | 2007-10-17 02:38:25 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2007-10-18 02:49:57 +0400 |
commit | 2d917969bc8dbde45900f5cbc2558e2cf1f8ec32 (patch) | |
tree | 4478fb3bcaa3d5fcae71cde791f15b7cae0991d8 /include | |
parent | a5005da204289ce01ca37be59e902100ef247a4d (diff) | |
download | linux-2d917969bc8dbde45900f5cbc2558e2cf1f8ec32.tar.xz |
JBD2: replace jbd_kmalloc with kmalloc directly.
This patch cleans up jbd_kmalloc and replace it with kmalloc directly
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/jbd2.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index e3677929884a..5f8b876c6677 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -71,13 +71,6 @@ extern u8 jbd2_journal_enable_debug; #define jbd_debug(f, a...) /**/ #endif -extern void * __jbd2_kmalloc (const char *where, size_t size, gfp_t flags, int retry); -#define jbd_kmalloc(size, flags) \ - __jbd2_kmalloc(__FUNCTION__, (size), (flags), journal_oom_retry) -#define jbd_rep_kmalloc(size, flags) \ - __jbd2_kmalloc(__FUNCTION__, (size), (flags), 1) - - static inline void *jbd2_alloc(size_t size, gfp_t flags) { return (void *)__get_free_pages(flags, get_order(size)); |