projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bfe73c
)
[CIFS] Fix build break from recent DFS patch when DFS support not enabled
author
Steve French
<sfrench@us.ibm.com>
Fri, 3 Apr 2009 03:12:08 +0000
(
03:12
+0000)
committer
Steve French
<sfrench@us.ibm.com>
Fri, 17 Apr 2009 01:26:48 +0000
(
01:26
+0000)
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/connect.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/cifs/connect.c
b/fs/cifs/connect.c
index 2e7a4ea26ab9e6e63348fae1704f1444a4a01430..6926023af878a80e8f0aafd2f5d507886bdd35b3 100644
(file)
--- a/
fs/cifs/connect.c
+++ b/
fs/cifs/connect.c
@@
-2522,6
+2522,7
@@
remote_path_check:
/* get referral if needed */
if (rc == -EREMOTE) {
+#ifdef CONFIG_CIFS_DFS_UPCALL
/* convert forward to back slashes in prepath here if needed */
if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) == 0)
convert_delimiter(cifs_sb->prepath,
@@
-2557,6
+2558,9
@@
remote_path_check:
kfree(full_path);
goto try_mount_again;
}
+#else /* No DFS support, return error on mount */
+ rc = -EOPNOTSUPP;
+#endif
}
mount_fail_check: