diff options
author | Jeff Mahoney <jeffm@suse.com> | 2009-03-30 14:02:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 15:16:35 -0400 |
commit | 1d889d9958490888b3fad1d486145d9a03559cbc (patch) | |
tree | 6fab5d559376dd8d9aa970efd179a7345f77ae2e /fs/reiserfs/xattr.c | |
parent | a5437152eec2c9171f6ab06e63135c5333f0a929 (diff) |
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>
Diffstat (limited to 'fs/reiserfs/xattr.c')
-rw-r--r-- | fs/reiserfs/xattr.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index ad92461cbfc3..e11b00472361 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c | |||
@@ -1182,12 +1182,10 @@ int reiserfs_xattr_init(struct super_block *s, int mount_flags) | |||
1182 | } | 1182 | } |
1183 | 1183 | ||
1184 | if (dentry && dentry->d_inode) | 1184 | if (dentry && dentry->d_inode) |
1185 | reiserfs_warning(s, | 1185 | reiserfs_info(s, "Created %s - " |
1186 | "Created %s on %s - reserved for " | 1186 | "reserved for xattr " |
1187 | "xattr storage.", | 1187 | "storage.\n", |
1188 | PRIVROOT_NAME, | 1188 | PRIVROOT_NAME); |
1189 | reiserfs_bdevname | ||
1190 | (inode->i_sb)); | ||
1191 | } else if (!dentry->d_inode) { | 1189 | } else if (!dentry->d_inode) { |
1192 | dput(dentry); | 1190 | dput(dentry); |
1193 | dentry = NULL; | 1191 | dentry = NULL; |