diff options
| author | Mingming Cao <cmm@us.ibm.com> | 2007-10-16 18:38:25 -0400 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2007-10-17 18:49:57 -0400 |
| commit | 2d917969bc8dbde45900f5cbc2558e2cf1f8ec32 (patch) | |
| tree | 4478fb3bcaa3d5fcae71cde791f15b7cae0991d8 /include/linux | |
| parent | a5005da204289ce01ca37be59e902100ef247a4d (diff) | |
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/linux')
| -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 e367792988..5f8b876c66 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
| @@ -71,13 +71,6 @@ extern u8 jbd2_journal_enable_debug; | |||
| 71 | #define jbd_debug(f, a...) /**/ | 71 | #define jbd_debug(f, a...) /**/ |
| 72 | #endif | 72 | #endif |
| 73 | 73 | ||
| 74 | extern void * __jbd2_kmalloc (const char *where, size_t size, gfp_t flags, int retry); | ||
| 75 | #define jbd_kmalloc(size, flags) \ | ||
| 76 | __jbd2_kmalloc(__FUNCTION__, (size), (flags), journal_oom_retry) | ||
| 77 | #define jbd_rep_kmalloc(size, flags) \ | ||
| 78 | __jbd2_kmalloc(__FUNCTION__, (size), (flags), 1) | ||
| 79 | |||
| 80 | |||
| 81 | static inline void *jbd2_alloc(size_t size, gfp_t flags) | 74 | static inline void *jbd2_alloc(size_t size, gfp_t flags) |
| 82 | { | 75 | { |
| 83 | return (void *)__get_free_pages(flags, get_order(size)); | 76 | return (void *)__get_free_pages(flags, get_order(size)); |
