search for: smb_strict_allocate_options

Displaying 1 result from an estimated 1 matches for "smb_strict_allocate_options".

2008 Dec 23
0
[jra@samba.org: Patch to improve Samba write speeds on Linux ext3 with 3.2.x]
...MIT 0x200000 + #endif diff --git a/source/include/smb.h b/source/include/smb.h index bfada11..f1b6033 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -1966,4 +1966,10 @@ struct smb_extended_info { char samba_version_string[SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH]; }; +enum smb_strict_allocate_options { + STRICT_ALLOCATE_OFF=0, + STRICT_ALLOCATE_ON=1, + STRICT_ALLOCATE_PARTIAL=2 +}; + #endif /* _SMB_H */ diff --git a/source/modules/vfs_default.c b/source/modules/vfs_default.c index 88c7237..8a724ad 100644 --- a/source/modules/vfs_default.c +++ b/source/modules/vfs_default.c @@ -745,10 +745,14 @...