Ok - this is a big patch - and it may break smbd a bit (although
authorJeremy Allison <jra@samba.org>
Thu, 19 Oct 2000 02:58:24 +0000 (02:58 +0000)
committerJeremy Allison <jra@samba.org>
Thu, 19 Oct 2000 02:58:24 +0000 (02:58 +0000)
commit66a5c05ec46b641224fbe01b30bd7e83571a2a1b
treed5ca2ee7b2dc9a1b5c20474b8ac96d5728937168
parente40a0e2f52326199264d622c4f11877f20e4ebce
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.
source/include/proto.h
source/include/smb_macros.h
source/smbd/filename.c
source/smbd/nttrans.c
source/smbd/open.c
source/smbd/reply.c
source/smbd/statcache.c
source/smbd/trans2.c
source/smbd/vfs.c