From 05c364c6588fb8e61cf075863919a40250172ba0 Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Sun, 8 Jan 2017 23:01:11 +0100 Subject: ext2fs: downgrade warnings about old translator records to debug messages ext2fs/inode.c (diskfs_set_translator): Replace call to ext2_warning with ext2_debug. (diskfs_get_translator): Likewise. --- ext2fs/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext2fs/inode.c') diff --git a/ext2fs/inode.c b/ext2fs/inode.c index fe163ae1..17dded6a 100644 --- a/ext2fs/inode.c +++ b/ext2fs/inode.c @@ -574,7 +574,7 @@ diskfs_set_translator (struct node *np, const char *name, unsigned namelen, /* If a legacy translator record found, clear it */ if (blkno) { - ext2_warning ("Old translator record found, clear it"); + ext2_debug ("Old translator record found, clear it"); /* Clear block for translator going away. */ di->i_translator = 0; @@ -717,7 +717,7 @@ diskfs_get_translator (struct node *np, char **namep, unsigned *namelen) /* If xattr is no supported by this filesystem, don't report a warning */ if (EXT2_HAS_COMPAT_FEATURE (sblock, EXT2_FEATURE_COMPAT_EXT_ATTR) && use_xattr_translator_records) - ext2_warning ("This is an old translator record, please update it"); + ext2_debug ("This is an old translator record, please update it"); transloc = disk_cache_block_ref (blkno); datalen = -- cgit v1.2.3