diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-08-16 04:08:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-08-16 04:08:47 +0000 |
commit | 79755ce97004b787d7e83a8d18fc4c7c003b7231 (patch) | |
tree | cb1c891d4849c55c67bcd0ed73ee2e8cb024c3be /source/include/smb.h | |
parent | f573a65b67e7a57586fec57845598e49b157ee0a (diff) | |
download | samba-79755ce97004b787d7e83a8d18fc4c7c003b7231.tar.gz samba-79755ce97004b787d7e83a8d18fc4c7c003b7231.tar.xz samba-79755ce97004b787d7e83a8d18fc4c7c003b7231.zip |
got rid of the Files[] array completely (previously I'd just made it
private to files.c)
It now is a doubly linked list with a bitmap for allocated file
numbers. Similarly for the fd_ptr code. I also changed the default
maximum number of open files to 4096. The static cost is 1 bit per
file.
It all seems to work, and it passes the "does Sue scream" test, but if
you see weird behaviour then please investigate. With the volume of
new code that has gone in there are bound to be one or two bugs
lurking.
note that you must do a "make clean" before building this as many data
structures have changed in size.
Diffstat (limited to 'source/include/smb.h')
-rw-r--r-- | source/include/smb.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index 3b562b9d13a..e99eb300234 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -599,7 +599,6 @@ typedef struct files_struct BOOL granted_oplock; BOOL sent_oplock_break; BOOL is_directory; - BOOL reserved; char *fsp_name; } files_struct; |