diff options
author | Jeremy Allison <jra@samba.org> | 2010-04-06 15:43:35 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-04-06 15:43:35 -0700 |
commit | 9c410118cb8b53a6a7194b6768f433cac056e4d2 (patch) | |
tree | da4bbc2c88538adf1ed265684ca140dfa1021d94 /docs-xml | |
parent | 027adf88eaf8c3a7375da7c0f9c0397db46668e6 (diff) | |
download | samba-9c410118cb8b53a6a7194b6768f433cac056e4d2.tar.gz samba-9c410118cb8b53a6a7194b6768f433cac056e4d2.tar.bz2 samba-9c410118cb8b53a6a7194b6768f433cac056e4d2.zip |
Parameterize "smb2 max read", "smb2 max write", "smb2 max trans".
Set to 64k by default.
Jeremy.
Diffstat (limited to 'docs-xml')
-rw-r--r-- | docs-xml/smbdotconf/tuning/smb2maxread.xml | 13 | ||||
-rw-r--r-- | docs-xml/smbdotconf/tuning/smb2maxtrans.xml | 13 | ||||
-rw-r--r-- | docs-xml/smbdotconf/tuning/smb2maxwrite.xml | 13 |
3 files changed, 39 insertions, 0 deletions
diff --git a/docs-xml/smbdotconf/tuning/smb2maxread.xml b/docs-xml/smbdotconf/tuning/smb2maxread.xml new file mode 100644 index 0000000000..a3abbbc4ca --- /dev/null +++ b/docs-xml/smbdotconf/tuning/smb2maxread.xml @@ -0,0 +1,13 @@ +<samba:parameter name="smb2 max read" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> + <para>This sets the maximum read size in bytes for a single SMB2 read request. + It exists to allow the Samba developers to experiment with different + size requests for tuning purposes. + </para> +</description> + +<value type="default">65536</value> +</samba:parameter> diff --git a/docs-xml/smbdotconf/tuning/smb2maxtrans.xml b/docs-xml/smbdotconf/tuning/smb2maxtrans.xml new file mode 100644 index 0000000000..4e6fee0e75 --- /dev/null +++ b/docs-xml/smbdotconf/tuning/smb2maxtrans.xml @@ -0,0 +1,13 @@ +<samba:parameter name="smb2 max trans" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> + <para>This sets the maximum read size in bytes for a single SMB2 transact request. + It exists to allow the Samba developers to experiment with different + size requests for tuning purposes. + </para> +</description> + +<value type="default">65536</value> +</samba:parameter> diff --git a/docs-xml/smbdotconf/tuning/smb2maxwrite.xml b/docs-xml/smbdotconf/tuning/smb2maxwrite.xml new file mode 100644 index 0000000000..5085dba435 --- /dev/null +++ b/docs-xml/smbdotconf/tuning/smb2maxwrite.xml @@ -0,0 +1,13 @@ +<samba:parameter name="smb2 max write" + context="G" + advanced="1" developer="1" + xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> +<description> + <para>This sets the maximum read size in bytes for a single SMB2 write request. + It exists to allow the Samba developers to experiment with different + size requests for tuning purposes. + </para> +</description> + +<value type="default">65536</value> +</samba:parameter> |