~lefteris-nikoltsios/+junk/samba-lp1016895

« back to all changes in this revision

Viewing changes to docs-xml/manpages-3/vfs_aio_fork.8.xml

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
 
3
<refentry id="vfs_aio_fork.8">
 
4
 
 
5
<refmeta>
 
6
        <refentrytitle>vfs_aio_fork</refentrytitle>
 
7
        <manvolnum>8</manvolnum>
 
8
        <refmiscinfo class="source">Samba</refmiscinfo>
 
9
        <refmiscinfo class="manual">System Administration tools</refmiscinfo>
 
10
        <refmiscinfo class="version">3.6</refmiscinfo>
 
11
</refmeta>
 
12
 
 
13
 
 
14
<refnamediv>
 
15
        <refname>vfs_aio_fork</refname>
 
16
        <refpurpose>implement async I/O in Samba vfs</refpurpose>
 
17
</refnamediv>
 
18
 
 
19
<refsynopsisdiv>
 
20
        <cmdsynopsis>
 
21
                <command>vfs objects = aio_fork</command>
 
22
        </cmdsynopsis>
 
23
</refsynopsisdiv>
 
24
 
 
25
<refsect1>
 
26
        <title>DESCRIPTION</title>
 
27
 
 
28
        <para>This VFS module is part of the
 
29
        <citerefentry><refentrytitle>samba</refentrytitle>
 
30
        <manvolnum>7</manvolnum></citerefentry> suite.</para>
 
31
 
 
32
        <para>The <command>aio_fork</command> VFS module enables async
 
33
        I/O for Samba on platforms where the system level Posix AIO
 
34
        interface is insufficient. Posix AIO can suffer from severe
 
35
        limitations.  For example, on some Linux versions the
 
36
        real-time signals that it uses are broken under heavy load.
 
37
        Other systems only allow AIO when special kernel modules are
 
38
        loaded or only allow a certain system-wide amount of async
 
39
        requests being scheduled. Systems based on glibc (most Linux
 
40
        systems) only allow a single outstanding request per file
 
41
        descriptor.  </para>
 
42
 
 
43
        <para>To work around all these limitations, the aio_fork module
 
44
        was written. It uses forked helper processes instead of the
 
45
        internal Posix AIO interface to create asynchronousity for
 
46
        read and write calls. It has no parameters, it will create
 
47
        helper processes when async requests come in as needed. Idle
 
48
        helper processes will be removed every 30 seconds.
 
49
        </para>
 
50
 
 
51
        <para>This module is stackable.</para>
 
52
 
 
53
</refsect1>
 
54
 
 
55
 
 
56
<refsect1>
 
57
        <title>EXAMPLES</title>
 
58
 
 
59
        <para>Straight forward use:</para>
 
60
 
 
61
<programlisting>
 
62
        <smbconfsection name="[cooldata]"/>
 
63
        <smbconfoption name="path">/data/ice</smbconfoption>
 
64
        <smbconfoption name="vfs objects">aio_fork</smbconfoption>
 
65
</programlisting>
 
66
 
 
67
</refsect1>
 
68
 
 
69
<refsect1>
 
70
        <title>VERSION</title>
 
71
 
 
72
        <para>This man page is correct for version 3.6.0 of the Samba suite.
 
73
        </para>
 
74
</refsect1>
 
75
 
 
76
<refsect1>
 
77
        <title>AUTHOR</title>
 
78
 
 
79
        <para>The original Samba software and related utilities
 
80
        were created by Andrew Tridgell. Samba is now developed
 
81
        by the Samba Team as an Open Source project similar
 
82
        to the way the Linux kernel is developed.</para>
 
83
 
 
84
</refsect1>
 
85
 
 
86
</refentry>