aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAihua Zhang <zhangaihua1@huawei.com>2016-03-13 17:18:12 -0400
committerTheodore Ts'o <tytso@mit.edu>2016-03-13 17:18:12 -0400
commita2821e34df141ac6019552618b57fa09227ff0dd (patch)
treeb6987a42e55f4c5f6123c67653d2d0c83f531128
parent7915a861c01839a05eb7346023741742c4d2135e (diff)
ext4: fix compile error while opening the macro DOUBLE_CHECK
the error is: fs/ext4/mballoc.c:475:43: error: 'struct ext4_group_info' has no member named 'bb_bitmap'. so, the definition of macro DOUBLE_CHECK should before 'struct ext4_group_info', I fixed it, and I moved the macro AGGRESSIVE_CHECK together, because I think they shoule be together. Signed-off-by: Aihua Zhang <zhangaihua1@huawei.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--fs/ext4/ext4.h12
-rw-r--r--fs/ext4/mballoc.h12
2 files changed, 12 insertions, 12 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
index 5623eec7fd22..393689dfa1af 100644
--- a/fs/ext4/ext4.h
+++ b/fs/ext4/ext4.h
@@ -42,6 +42,18 @@
42 */ 42 */
43 43
44/* 44/*
45 * with AGGRESSIVE_CHECK allocator runs consistency checks over
46 * structures. these checks slow things down a lot
47 */
48#define AGGRESSIVE_CHECK__
49
50/*
51 * with DOUBLE_CHECK defined mballoc creates persistent in-core
52 * bitmaps, maintains and uses them to check for double allocations
53 */
54#define DOUBLE_CHECK__
55
56/*
45 * Define EXT4FS_DEBUG to produce debug messages 57 * Define EXT4FS_DEBUG to produce debug messages
46 */ 58 */
47#undef EXT4FS_DEBUG 59#undef EXT4FS_DEBUG
diff --git a/fs/ext4/mballoc.h b/fs/ext4/mballoc.h
index d634e183b4d4..3ef1df6ae9ec 100644
--- a/fs/ext4/mballoc.h
+++ b/fs/ext4/mballoc.h
@@ -23,18 +23,6 @@
23#include "ext4.h" 23#include "ext4.h"
24 24
25/* 25/*
26 * with AGGRESSIVE_CHECK allocator runs consistency checks over
27 * structures. these checks slow things down a lot
28 */
29#define AGGRESSIVE_CHECK__
30
31/*
32 * with DOUBLE_CHECK defined mballoc creates persistent in-core
33 * bitmaps, maintains and uses them to check for double allocations
34 */
35#define DOUBLE_CHECK__
36
37/*
38 */ 26 */
39#ifdef CONFIG_EXT4_DEBUG 27#ifdef CONFIG_EXT4_DEBUG
40extern ushort ext4_mballoc_debug; 28extern ushort ext4_mballoc_debug;