Commit a2821e34 authored by Aihua Zhang's avatar Aihua Zhang Committed by Theodore Ts'o

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: default avatarAihua Zhang <zhangaihua1@huawei.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 7915a861
...@@ -41,6 +41,18 @@ ...@@ -41,6 +41,18 @@
* The fourth extended filesystem constants/structures * The fourth extended filesystem constants/structures
*/ */
/*
* with AGGRESSIVE_CHECK allocator runs consistency checks over
* structures. these checks slow things down a lot
*/
#define AGGRESSIVE_CHECK__
/*
* with DOUBLE_CHECK defined mballoc creates persistent in-core
* bitmaps, maintains and uses them to check for double allocations
*/
#define DOUBLE_CHECK__
/* /*
* Define EXT4FS_DEBUG to produce debug messages * Define EXT4FS_DEBUG to produce debug messages
*/ */
......
...@@ -22,18 +22,6 @@ ...@@ -22,18 +22,6 @@
#include "ext4_jbd2.h" #include "ext4_jbd2.h"
#include "ext4.h" #include "ext4.h"
/*
* with AGGRESSIVE_CHECK allocator runs consistency checks over
* structures. these checks slow things down a lot
*/
#define AGGRESSIVE_CHECK__
/*
* with DOUBLE_CHECK defined mballoc creates persistent in-core
* bitmaps, maintains and uses them to check for double allocations
*/
#define DOUBLE_CHECK__
/* /*
*/ */
#ifdef CONFIG_EXT4_DEBUG #ifdef CONFIG_EXT4_DEBUG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment