From cb991b0fd709a635b21c6ea2314acb5345b1b72c Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 7 May 2017 13:41:26 +0200 Subject: ext2fs: Reduce verbosity of missing xattr support on the FS * ext2fs/xattr.c (ext2_list_xattr, ext2_get_xattr): Only warn about missing ext2fs support in debugging mode. --- ext2fs/xattr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext2fs') diff --git a/ext2fs/xattr.c b/ext2fs/xattr.c index 5ce84ce5..c7037176 100644 --- a/ext2fs/xattr.c +++ b/ext2fs/xattr.c @@ -512,7 +512,7 @@ ext2_list_xattr (struct node *np, char *buffer, size_t *len) if (!EXT2_HAS_COMPAT_FEATURE (sblock, EXT2_FEATURE_COMPAT_EXT_ATTR)) { - ext2_warning ("Filesystem has no support for extended attributes."); + ext2_debug ("Filesystem has no support for extended attributes."); return EOPNOTSUPP; } @@ -587,7 +587,7 @@ ext2_get_xattr (struct node *np, const char *name, char *value, size_t *len) if (!EXT2_HAS_COMPAT_FEATURE (sblock, EXT2_FEATURE_COMPAT_EXT_ATTR)) { - ext2_warning ("Filesystem has no support for extended attributes."); + ext2_debug ("Filesystem has no support for extended attributes."); return EOPNOTSUPP; } -- cgit v1.2.3