svn commit: samba r3106 - in branches/SAMBA_4_0/source/ntvfs/cifs: .

tridge at samba.org tridge at samba.org
Thu Oct 21 06:34:18 GMT 2004


Author: tridge
Date: 2004-10-21 06:34:17 +0000 (Thu, 21 Oct 2004)
New Revision: 3106

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/ntvfs/cifs&rev=3106&nolog=1

Log:
don't call a tree disconnect in the cifs backend, as during a smbd
server shutdown we don't want a synchronous operation which may block
to be called, thus delaying the shutdown.






Modified:
   branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c	2004-10-21 03:49:17 UTC (rev 3105)
+++ branches/SAMBA_4_0/source/ntvfs/cifs/vfs_cifs.c	2004-10-21 06:34:17 UTC (rev 3106)
@@ -168,8 +168,7 @@
 {
 	struct cvfs_private *private = ntvfs->private_data;
 
-	smb_tree_disconnect(private->tree);
-	talloc_free(private->tree);
+	talloc_free(private);
 
 	return NT_STATUS_OK;
 }



More information about the samba-cvs mailing list