reiserfs: make some warnings informational
In several places, reiserfs_warning is used when there is no warning, just a notice. This patch changes some of them to indicate that the message is merely informational. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
a5437152ee
commit
1d889d9958
@@ -40,8 +40,8 @@
|
||||
|
||||
#define SET_OPTION(optname) \
|
||||
do { \
|
||||
reiserfs_warning(s, "reiserfs: option \"%s\" is set", #optname); \
|
||||
set_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)); \
|
||||
reiserfs_info(s, "block allocator option \"%s\" is set", #optname); \
|
||||
set_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)); \
|
||||
} while(0)
|
||||
#define TEST_OPTION(optname, s) \
|
||||
test_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s))
|
||||
@@ -636,7 +636,7 @@ int reiserfs_parse_alloc_options(struct super_block *s, char *options)
|
||||
return 1;
|
||||
}
|
||||
|
||||
reiserfs_warning(s, "allocator options = [%08x]\n", SB_ALLOC_OPTS(s));
|
||||
reiserfs_info(s, "allocator options = [%08x]\n", SB_ALLOC_OPTS(s));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user