diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-05-07 13:41:26 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-05-07 13:41:26 +0200 |
commit | cb991b0fd709a635b21c6ea2314acb5345b1b72c (patch) | |
tree | 86c8084f52a5cd946ba58013a1336846684baf6b /ext2fs | |
parent | ef0399bad41e60cb30d5073129abeb206076394a (diff) | |
download | hurd-cb991b0fd709a635b21c6ea2314acb5345b1b72c.tar.gz hurd-cb991b0fd709a635b21c6ea2314acb5345b1b72c.tar.bz2 hurd-cb991b0fd709a635b21c6ea2314acb5345b1b72c.zip |
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.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |