aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/device-mapper/striped.txt
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /Documentation/device-mapper/striped.txt
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'Documentation/device-mapper/striped.txt')
-rw-r--r--Documentation/device-mapper/striped.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/Documentation/device-mapper/striped.txt b/Documentation/device-mapper/striped.txt
new file mode 100644
index 000000000000..f34d3236b9da
--- /dev/null
+++ b/Documentation/device-mapper/striped.txt
@@ -0,0 +1,58 @@
1dm-stripe
2=========
3
4Device-Mapper's "striped" target is used to create a striped (i.e. RAID-0)
5device across one or more underlying devices. Data is written in "chunks",
6with consecutive chunks rotating among the underlying devices. This can
7potentially provide improved I/O throughput by utilizing several physical
8devices in parallel.
9
10Parameters: <num devs> <chunk size> [<dev path> <offset>]+
11 <num devs>: Number of underlying devices.
12 <chunk size>: Size of each chunk of data. Must be a power-of-2 and at
13 least as large as the system's PAGE_SIZE.
14 <dev path>: Full pathname to the underlying block-device, or a
15 "major:minor" device-number.
16 <offset>: Starting sector within the device.
17
18One or more underlying devices can be specified. The striped device size must
19be a multiple of the chunk size and a multiple of the number of underlying
20devices.
21
22
23Example scripts
24===============
25
26[[
27#!/usr/bin/perl -w
28# Create a striped device across any number of underlying devices. The device
29# will be called "stripe_dev" and have a chunk-size of 128k.
30
31my $chunk_size = 128 * 2;
32my $dev_name = "stripe_dev";
33my $num_devs = @ARGV;
34my @devs = @ARGV;
35my ($min_dev_size, $stripe_dev_size, $i);
36
37if (!$num_devs) {
38 die("Specify at least one device\n");
39}
40
41$min_dev_size = `blockdev --getsize $devs[0]`;
42for ($i = 1; $i < $num_devs; $i++) {
43 my $this_size = `blockdev --getsize $devs[$i]`;
44 $min_dev_size = ($min_dev_size < $this_size) ?
45 $min_dev_size : $this_size;
46}
47
48$stripe_dev_size = $min_dev_size * $num_devs;
49$stripe_dev_size -= $stripe_dev_size % ($chunk_size * $num_devs);
50
51$table = "0 $stripe_dev_size striped $num_devs $chunk_size";
52for ($i = 0; $i < $num_devs; $i++) {
53 $table .= " $devs[$i] 0";
54}
55
56`echo $table | dmsetup create $dev_name`;
57]]
58