Commit 2c512397ca060f6dbcb3957174a91e29a3b769be

Authored by Adrian Bunk
Committed by Al Viro
1 parent f696a3659f

[patch 1/3] FS_MBCACHE: don't needlessly make it built-in

Assume you have:
- one or more of ext2/3/4 statically built into your kernel
- none of these with extended attributes enabled and
- want to add onother one of ext2/3/4 modular and with
  extended attributes enabled

then you currently have to reboot to use it since this results in
CONFIG_FS_MBCACHE=y.

That's not a common issue, but I just ran into it and since there's no
reason to get a built-in mbcache in this case this patch fixes it.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Cc: Andreas Gruenbacher <agruen@suse.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Showing 1 changed file with 4 additions and 3 deletions Side-by-side Diff

... ... @@ -22,9 +22,10 @@
22 22 config FS_MBCACHE
23 23 # Meta block cache for Extended Attributes (ext2/ext3/ext4)
24 24 tristate
25   - depends on EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
26   - default y if EXT2_FS=y || EXT3_FS=y || EXT4_FS=y
27   - default m if EXT2_FS=m || EXT3_FS=m || EXT4_FS=m
  25 + default y if EXT2_FS=y && EXT2_FS_XATTR
  26 + default y if EXT3_FS=y && EXT3_FS_XATTR
  27 + default y if EXT4_FS=y && EXT4_FS_XATTR
  28 + default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
28 29  
29 30 config REISERFS_FS
30 31 tristate "Reiserfs support"