mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Fixed timing window created by daemonize function. Smbmount was going daemon
before the mount was actually completed. This caused weird problems when
used with autofs such as empty directories on first listing or files which
would appear in "ls" but would return "no such file or directory" under
"ls -l". Note to Volker: Initial attempt from CIFS conference didn't work.
Had to move daemonize function inside of loop after ioctl.
(This used to be commit 2f456be660
)
This commit is contained in:
parent
3a31d509a8
commit
9c3cbb8012
@ -358,18 +358,21 @@ static void cmd_mount(char *inbuf,char *outbuf)
|
||||
|
||||
DEBUG(3, ("mount command: %s\n", mount_command));
|
||||
|
||||
/*
|
||||
* Create the background process before trying the mount.
|
||||
* (We delay closing files to allow diagnostic messages.)
|
||||
*/
|
||||
daemonize();
|
||||
|
||||
/* The parent has exited here, the child handles the connection: */
|
||||
if ((retval = system(mount_command)) != 0)
|
||||
{
|
||||
DEBUG(0,("mount failed\n"));
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/*
|
||||
* Create the background process after trying the mount.
|
||||
* to avoid race conditions with automount and other processes.
|
||||
*/
|
||||
daemonize();
|
||||
|
||||
/* The parent has exited here, leave the daemon to deal with
|
||||
* disconnects and reconnects
|
||||
*/
|
||||
send_fs_socket(mount_point, inbuf, outbuf);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user