search for: strict_allocate_parti

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

2008 Dec 23
0
[jra@samba.org: Patch to improve Samba write speeds on Linux ext3 with 3.2.x]
...5ded..b0fd7cb 100644 --- a/source/include/local.h +++ b/source/include/local.h @@ -253,4 +253,8 @@ /* Windows minimum lock resolution timeout in ms */ #define WINDOWS_MINIMUM_LOCK_TIMEOUT_MS 200 +/* When strict allocate = partial, define the limit on how far + * ahead we will write. */ +#define STRICT_ALLOCATE_PARTIAL_LIMIT 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]; }; +...