return -ENOMEM;
/* If it is a root and its handle is cached then use it */
- if (!strlen(full_path)) {
- rc = open_shroot(xid, tcon, cifs_sb, &cfid);
- if (!rc) {
- if (tcon->crfid.file_all_info_is_valid) {
- move_smb2_info_to_cifs(data,
+ rc = open_shroot(xid, tcon, full_path, cifs_sb, &cfid);
+ if (!rc) {
+ if (tcon->crfid.file_all_info_is_valid) {
+ move_smb2_info_to_cifs(data,
&tcon->crfid.file_all_info);
- } else {
- rc = SMB2_query_info(xid, tcon,
+ } else {
+ rc = SMB2_query_info(xid, tcon,
cfid->fid->persistent_fid,
cfid->fid->volatile_fid, smb2_data);
- if (!rc)
- move_smb2_info_to_cifs(data, smb2_data);
- }
- close_shroot(cfid);
- goto out;
+ if (!rc)
+ move_smb2_info_to_cifs(data, smb2_data);
}
+ close_shroot(cfid);
+ goto out;
}
cifs_get_readable_path(tcon, full_path, &cfile);
* Open the directory at the root of a share
*/
int open_shroot(unsigned int xid, struct cifs_tcon *tcon,
+ const char *path,
struct cifs_sb_info *cifs_sb,
struct cached_fid **cfid)
{
if (tcon->nohandlecache)
return -ENOTSUPP;
+ if (strlen(path))
+ return -ENOTSUPP;
+
mutex_lock(&tcon->crfid.fid_mutex);
if (tcon->crfid.is_valid) {
cifs_dbg(FYI, "found a cached root file handle\n");
oparms.fid = &fid;
oparms.reconnect = false;
- rc = open_shroot(xid, tcon, cifs_sb, &cfid);
+ rc = open_shroot(xid, tcon, "", cifs_sb, &cfid);
if (rc == 0)
memcpy(&fid, cfid->fid, sizeof(struct cifs_fid));
else
struct mid_q_entry *mid);
extern int open_shroot(unsigned int xid, struct cifs_tcon *tcon,
+ const char *path,
struct cifs_sb_info *cifs_sb,
struct cached_fid **cfid);
extern void close_shroot(struct cached_fid *cfid);