diff options
author | Steve French <stfrench@microsoft.com> | 2020-04-09 01:07:38 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-04-09 13:28:24 -0500 |
commit | 1dc94b7381bd5f71aa417487abaf3bd3d70938c4 (patch) | |
tree | ae390d0a76558b9b6c0aeb9a28d3397a015f0e64 /fs | |
parent | 2bcb4fd6ba9152c699d873ffa4593d5a4fe1f8d4 (diff) | |
download | linux-1dc94b7381bd5f71aa417487abaf3bd3d70938c4.tar.bz2 |
smb3: change noisy error message to FYI
The noisy posix error message in readdir was supposed
to be an FYI (not enabled by default)
CIFS VFS: XXX dev 66306, reparse 0, mode 755
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/readdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 19e4a5d3b4ca..50f776a8d4ba 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c @@ -246,7 +246,7 @@ cifs_posix_to_fattr(struct cifs_fattr *fattr, struct smb2_posix_info *info, */ fattr->cf_mode = le32_to_cpu(info->Mode) & ~S_IFMT; - cifs_dbg(VFS, "XXX dev %d, reparse %d, mode %o", + cifs_dbg(FYI, "posix fattr: dev %d, reparse %d, mode %o", le32_to_cpu(info->DeviceId), le32_to_cpu(info->ReparseTag), le32_to_cpu(info->Mode)); |