aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/jbd2.h
diff options
context:
space:
mode:
authorMingming Cao <cmm@us.ibm.com>2007-10-16 18:38:25 -0400
committerTheodore Ts'o <tytso@mit.edu>2007-10-17 18:49:57 -0400
commit2d917969bc8dbde45900f5cbc2558e2cf1f8ec32 (patch)
tree4478fb3bcaa3d5fcae71cde791f15b7cae0991d8 /include/linux/jbd2.h
parentJBD: replace jbd_kmalloc with kmalloc directly (diff)
downloadlinux-dev-2d917969bc8dbde45900f5cbc2558e2cf1f8ec32.tar.xz
linux-dev-2d917969bc8dbde45900f5cbc2558e2cf1f8ec32.zip
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/jbd2.h')
-rw-r--r--include/linux/jbd2.h7
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));