diff options
author | Ed Cashin <ecashin@coraid.com> | 2012-10-04 20:16:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:05:30 -0400 |
commit | 5b8c4be381a81617b60488ac3bd1b3e5cda32218 (patch) | |
tree | 819879dc69962d7f73f9a97aa11e0e11c8ceeb16 /Documentation/aoe/aoe.txt | |
parent | 1ac9e602625817b0c16cc70ea496875f7bd58a4d (diff) |
aoe: update documentation to better reflect aoe-plus-udev usage
Signed-off-by: Ed Cashin <ecashin@coraid.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/aoe/aoe.txt')
-rw-r--r-- | Documentation/aoe/aoe.txt | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/Documentation/aoe/aoe.txt b/Documentation/aoe/aoe.txt index b3e47560346a..bfc9cb19abcd 100644 --- a/Documentation/aoe/aoe.txt +++ b/Documentation/aoe/aoe.txt | |||
@@ -1,3 +1,8 @@ | |||
1 | ATA over Ethernet is a network protocol that provides simple access to | ||
2 | block storage on the LAN. | ||
3 | |||
4 | http://support.coraid.com/documents/AoEr11.txt | ||
5 | |||
1 | The EtherDrive (R) HOWTO for 2.6 and 3.x kernels is found at ... | 6 | The EtherDrive (R) HOWTO for 2.6 and 3.x kernels is found at ... |
2 | 7 | ||
3 | http://support.coraid.com/support/linux/EtherDrive-2.6-HOWTO.html | 8 | http://support.coraid.com/support/linux/EtherDrive-2.6-HOWTO.html |
@@ -26,20 +31,12 @@ CREATING DEVICE NODES | |||
26 | There is a udev-install.sh script that shows how to install these | 31 | There is a udev-install.sh script that shows how to install these |
27 | rules on your system. | 32 | rules on your system. |
28 | 33 | ||
29 | If you are not using udev, two scripts are provided in | ||
30 | Documentation/aoe as examples of static device node creation for | ||
31 | using the aoe driver. | ||
32 | |||
33 | rm -rf /dev/etherd | ||
34 | sh Documentation/aoe/mkdevs.sh /dev/etherd | ||
35 | |||
36 | ... or to make just one shelf's worth of block device nodes ... | ||
37 | |||
38 | sh Documentation/aoe/mkshelf.sh /dev/etherd 0 | ||
39 | |||
40 | There is also an autoload script that shows how to edit | 34 | There is also an autoload script that shows how to edit |
41 | /etc/modprobe.d/aoe.conf to ensure that the aoe module is loaded when | 35 | /etc/modprobe.d/aoe.conf to ensure that the aoe module is loaded when |
42 | necessary. | 36 | necessary. Preloading the aoe module is preferable to autoloading, |
37 | however, because AoE discovery takes a few seconds. It can be | ||
38 | confusing when an AoE device is not present the first time the a | ||
39 | command is run but appears a second later. | ||
43 | 40 | ||
44 | USING DEVICE NODES | 41 | USING DEVICE NODES |
45 | 42 | ||
@@ -54,9 +51,9 @@ USING DEVICE NODES | |||
54 | "echo > /dev/etherd/discover" tells the driver to find out what AoE | 51 | "echo > /dev/etherd/discover" tells the driver to find out what AoE |
55 | devices are available. | 52 | devices are available. |
56 | 53 | ||
57 | These character devices may disappear and be replaced by sysfs | 54 | In the future these character devices may disappear and be replaced |
58 | counterparts. Using the commands in aoetools insulates users from | 55 | by sysfs counterparts. Using the commands in aoetools insulates |
59 | these implementation details. | 56 | users from these implementation details. |
60 | 57 | ||
61 | The block devices are named like this: | 58 | The block devices are named like this: |
62 | 59 | ||
@@ -79,8 +76,8 @@ USING SYSFS | |||
79 | The netif attribute is the network interface on the localhost | 76 | The netif attribute is the network interface on the localhost |
80 | through which we are communicating with the remote AoE device. | 77 | through which we are communicating with the remote AoE device. |
81 | 78 | ||
82 | There is a script in this directory that formats this information | 79 | There is a script in this directory that formats this information in |
83 | in a convenient way. Users with aoetools can use the aoe-stat | 80 | a convenient way. Users with aoetools should use the aoe-stat |
84 | command. | 81 | command. |
85 | 82 | ||
86 | root@makki root# sh Documentation/aoe/status.sh | 83 | root@makki root# sh Documentation/aoe/status.sh |
@@ -124,3 +121,21 @@ DRIVER OPTIONS | |||
124 | usage example for the module parameter. | 121 | usage example for the module parameter. |
125 | 122 | ||
126 | modprobe aoe_iflist="eth1 eth3" | 123 | modprobe aoe_iflist="eth1 eth3" |
124 | |||
125 | The aoe_deadsecs module parameter determines the maximum number of | ||
126 | seconds that the driver will wait for an AoE device to provide a | ||
127 | response to an AoE command. After aoe_deadsecs seconds have | ||
128 | elapsed, the AoE device will be marked as "down". | ||
129 | |||
130 | The aoe_maxout module parameter has a default of 128. This is the | ||
131 | maximum number of unresponded packets that will be sent to an AoE | ||
132 | target at one time. | ||
133 | |||
134 | The aoe_dyndevs module parameter defaults to 1, meaning that the | ||
135 | driver will assign a block device minor number to a discovered AoE | ||
136 | target based on the order of its discovery. With dynamic minor | ||
137 | device numbers in use, a greater range of AoE shelf and slot | ||
138 | addresses can be supported. Users with udev will never have to | ||
139 | think about minor numbers. Using aoe_dyndevs=0 allows device nodes | ||
140 | to be pre-created using a static minor-number scheme with the | ||
141 | aoe-mkshelf script in the aoetools. | ||