Commit d036f50f authored by Steve French's avatar Steve French

[CIFS] Fix build break from recent DFS patch when DFS support not enabled

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 1bfe73c2
...@@ -2522,6 +2522,7 @@ remote_path_check: ...@@ -2522,6 +2522,7 @@ remote_path_check:
/* get referral if needed */ /* get referral if needed */
if (rc == -EREMOTE) { if (rc == -EREMOTE) {
#ifdef CONFIG_CIFS_DFS_UPCALL
/* convert forward to back slashes in prepath here if needed */ /* convert forward to back slashes in prepath here if needed */
if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) == 0) if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) == 0)
convert_delimiter(cifs_sb->prepath, convert_delimiter(cifs_sb->prepath,
...@@ -2557,6 +2558,9 @@ remote_path_check: ...@@ -2557,6 +2558,9 @@ remote_path_check:
kfree(full_path); kfree(full_path);
goto try_mount_again; goto try_mount_again;
} }
#else /* No DFS support, return error on mount */
rc = -EOPNOTSUPP;
#endif
} }
mount_fail_check: mount_fail_check:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment