The branch, master has been updated via fde7c2a... s3:docs: Document "aio write behind". via 9478ec3... s3:docs: Document "ldap page size". from 62a2732... s3: Fix crash in free_file_list().
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit fde7c2ab19bc7442d8ee9d85ab2fe54e0cfb4782 Author: Karolin Seeger <ksee...@samba.org> Date: Mon Nov 30 13:34:34 2009 +0100 s3:docs: Document "aio write behind". Part of a fix for bug #6890 (Some smb.conf parameters are undocumented). Karolin commit 9478ec35b5349f50a61bbe2aa88af88577918e91 Author: Karolin Seeger <ksee...@samba.org> Date: Mon Nov 30 12:29:27 2009 +0100 s3:docs: Document "ldap page size". Part of a fix for bug #6890 (Some smb.conf parameters are undocumented). Karolin ----------------------------------------------------------------------- Summary of changes: docs-xml/smbdotconf/ldap/ldappagesize.xml | 18 ++++++++++++++++++ docs-xml/smbdotconf/tuning/aiowritebehind.xml | 23 +++++++++++++++++++++++ 2 files changed, 41 insertions(+), 0 deletions(-) create mode 100644 docs-xml/smbdotconf/ldap/ldappagesize.xml create mode 100644 docs-xml/smbdotconf/tuning/aiowritebehind.xml Changeset truncated at 500 lines: diff --git a/docs-xml/smbdotconf/ldap/ldappagesize.xml b/docs-xml/smbdotconf/ldap/ldappagesize.xml new file mode 100644 index 0000000..bc09b98 --- /dev/null +++ b/docs-xml/smbdotconf/ldap/ldappagesize.xml @@ -0,0 +1,18 @@ +<samba:parameter name="ldap page size" + context="G" + type="integer" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> + <para> + This parameter specifies the number of entries per page. + </para> + + <para>If the LDAP server supports paged results, clients can + request subsets of search results (pages) instead of the entire list. + This parameter specifies the size of these pages. + </para> +</description> +<value type="default">1024</value> +<value type="example">512</value> +</samba:parameter> diff --git a/docs-xml/smbdotconf/tuning/aiowritebehind.xml b/docs-xml/smbdotconf/tuning/aiowritebehind.xml new file mode 100644 index 0000000..c88cd97 --- /dev/null +++ b/docs-xml/smbdotconf/tuning/aiowritebehind.xml @@ -0,0 +1,23 @@ +<samba:parameter name="aio write behind" + context="S" + type="string" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> + <para>If Samba has been built with asynchronous I/O support, + Samba will not wait until write requests are finished before returning + the result to the client for files listed in this parameter. + Instead, Samba will immediately return that the write + request has been finished successfully, no matter if the + operation will succeed or not. This might speed up clients without + aio support, but is really dangerous, because data could be lost + and files could be damaged. + </para> + <para> + The syntax is identical to the <smbconfoption name="veto files"/> + parameter. + </para> +</description> + +<value type="default"/> +<value type="example">/*.tmp/</value> +</samba:parameter> -- Samba Shared Repository