[CIFS] Fix UNC path prefix on QueryUnixPathInfo to have correct slash
authorSteve French <sfrench@us.ibm.com>
Fri, 18 Apr 2008 23:26:26 +0000 (23:26 +0000)
committerSteve French <sfrench@us.ibm.com>
Fri, 18 Apr 2008 23:26:26 +0000 (23:26 +0000)
commit076d8423a98659a92837b07aa494cb74bfefe77c
treeed6776db97202bac41f8a1f4ff68188e16373eec
parent2302aca8508ee727a0c5edde3a7518a4ee03da1b
[CIFS] Fix UNC path prefix on QueryUnixPathInfo to have correct slash

When a share was in DFS and the server was Unix/Linux, we were sending paths of the form
    \\server\share/dir/file
rather than
    //server/share/dir/file

There was some discussion between me and jra over whether we should use
    /server/share/dir/file
as MS sometimes says - but the documentation for this claims it should be
doubleslash for this type of UNC-like path format and that works, so leaving
it as doubleslash but converting the \ to / in the the //server/share portion.

This gets Samba to now correctly return STATUS_PATH_NOT_COVERED when it is
supposed to (Windows already did since the direction of the slash was not an issue
for them).  Still need another minor change to fully enable DFS (need to finish
some chages to SMBGetDFSRefer

Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/inode.c