|
@@ -982,7 +982,7 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon,
|
|
|
rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL);
|
|
|
kfree(utf16_path);
|
|
|
if (rc) {
|
|
|
- cifs_dbg(VFS, "open dir failed\n");
|
|
|
+ cifs_dbg(FYI, "open dir failed rc=%d\n", rc);
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
@@ -992,7 +992,7 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon,
|
|
|
rc = SMB2_query_directory(xid, tcon, fid->persistent_fid,
|
|
|
fid->volatile_fid, 0, srch_inf);
|
|
|
if (rc) {
|
|
|
- cifs_dbg(VFS, "query directory failed\n");
|
|
|
+ cifs_dbg(FYI, "query directory failed rc=%d\n", rc);
|
|
|
SMB2_close(xid, tcon, fid->persistent_fid, fid->volatile_fid);
|
|
|
}
|
|
|
return rc;
|