CVS update: samba/source/smbd

Jeremy Allison jra at au2.samba.org
Thu Oct 19 13:58:24 EST 2000


Date:	Thursday October 19, 2000 @ 12:58
Author:	jra

Update of /data/cvs/samba/source/smbd
In directory samba:/tmp/cvs-serv21559/smbd

Modified Files:
	filename.c nttrans.c open.c reply.c statcache.c trans2.c vfs.c 
Log Message:
Ok - this is a big patch - and it may break smbd a bit (although
I hope not). If you encounter strange file-serving behavior after this
patch then back it out. I analysed our stat() usage and realised we
were doing approx. 3 stat calls per open, and 2 per getattr/setattr.
This patch should fix all that. It causes the stat struct returned
from unix_convert() (which now *must* be passed a valid SMB_STRUCT_STAT
pointer) to be passed through into the open code. This should prevent
the multiple stats that were being done so as not to violate layer
encapsulation in the API's.

Herb - if you could run a NetBench test with this code and do a
padc/par syscall test and also run with the current 2.2.0 code
and test the padc/par syscalls I'd appreciate it - you should
find the number of stat calls reduced - not sure by how much.

The patch depends on unix_convert() actually finding the file
and returning a stat struct, or returning a zero'd out stat
struct if the file didn't exist. I believe we can guarentee this
to be the case - I just wasn't confident enough to make this
an assertion before.

Ok ok - I did write this whilst at the Miami conference.....
sometimes you get a little free time at these things :-).

Jeremy.





More information about the samba-cvs mailing list