f2fs: introduce f2fs_kmalloc to wrap kmalloc
[deliverable/linux.git] / fs / f2fs / f2fs.h
index 6a482411e6d4771b1ede641e8abf639cc05e8443..879e4d77a1bca9aa85b6040291ce2ddce7a1b189 100644 (file)
@@ -1644,6 +1644,11 @@ static inline bool f2fs_may_extent_tree(struct inode *inode)
        return S_ISREG(inode->i_mode);
 }
 
+static inline void *f2fs_kmalloc(size_t size, gfp_t flags)
+{
+       return kmalloc(size, flags);
+}
+
 static inline void *f2fs_kvmalloc(size_t size, gfp_t flags)
 {
        void *ret;
This page took 0.023603 seconds and 5 git commands to generate.