diff options
Diffstat (limited to 'fs/reiserfs/bitmap.c')
-rw-r--r-- | fs/reiserfs/bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/reiserfs/bitmap.c b/fs/reiserfs/bitmap.c index 4646caa60455..98b92a3da14a 100644 --- a/fs/reiserfs/bitmap.c +++ b/fs/reiserfs/bitmap.c | |||
@@ -40,8 +40,8 @@ | |||
40 | 40 | ||
41 | #define SET_OPTION(optname) \ | 41 | #define SET_OPTION(optname) \ |
42 | do { \ | 42 | do { \ |
43 | reiserfs_warning(s, "reiserfs: option \"%s\" is set", #optname); \ | 43 | reiserfs_info(s, "block allocator option \"%s\" is set", #optname); \ |
44 | set_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)); \ | 44 | set_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)); \ |
45 | } while(0) | 45 | } while(0) |
46 | #define TEST_OPTION(optname, s) \ | 46 | #define TEST_OPTION(optname, s) \ |
47 | test_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)) | 47 | test_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)) |
@@ -636,7 +636,7 @@ int reiserfs_parse_alloc_options(struct super_block *s, char *options) | |||
636 | return 1; | 636 | return 1; |
637 | } | 637 | } |
638 | 638 | ||
639 | reiserfs_warning(s, "allocator options = [%08x]\n", SB_ALLOC_OPTS(s)); | 639 | reiserfs_info(s, "allocator options = [%08x]\n", SB_ALLOC_OPTS(s)); |
640 | return 0; | 640 | return 0; |
641 | } | 641 | } |
642 | 642 | ||