md.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Tools that manage md devices can be found at
  2. http://www.<country>.kernel.org/pub/linux/utils/raid/....
  3. Boot time assembly of RAID arrays
  4. ---------------------------------
  5. You can boot with your md device with the following kernel command
  6. lines:
  7. for old raid arrays without persistent superblocks:
  8. md=<md device no.>,<raid level>,<chunk size factor>,<fault level>,dev0,dev1,...,devn
  9. for raid arrays with persistent superblocks
  10. md=<md device no.>,dev0,dev1,...,devn
  11. or, to assemble a partitionable array:
  12. md=d<md device no.>,dev0,dev1,...,devn
  13. md device no. = the number of the md device ...
  14. 0 means md0,
  15. 1 md1,
  16. 2 md2,
  17. 3 md3,
  18. 4 md4
  19. raid level = -1 linear mode
  20. 0 striped mode
  21. other modes are only supported with persistent super blocks
  22. chunk size factor = (raid-0 and raid-1 only)
  23. Set the chunk size as 4k << n.
  24. fault level = totally ignored
  25. dev0-devn: e.g. /dev/hda1,/dev/hdc1,/dev/sda1,/dev/sdb1
  26. A possible loadlin line (Harald Hoyer <HarryH@Royal.Net>) looks like this:
  27. e:\loadlin\loadlin e:\zimage root=/dev/md0 md=0,0,4,0,/dev/hdb2,/dev/hdc3 ro
  28. Boot time autodetection of RAID arrays
  29. --------------------------------------
  30. When md is compiled into the kernel (not as module), partitions of
  31. type 0xfd are scanned and automatically assembled into RAID arrays.
  32. This autodetection may be suppressed with the kernel parameter
  33. "raid=noautodetect". As of kernel 2.6.9, only drives with a type 0
  34. superblock can be autodetected and run at boot time.
  35. The kernel parameter "raid=partitionable" (or "raid=part") means
  36. that all auto-detected arrays are assembled as partitionable.
  37. Superblock formats
  38. ------------------
  39. The md driver can support a variety of different superblock formats.
  40. Currently, it supports superblock formats "0.90.0" and the "md-1" format
  41. introduced in the 2.5 development series.
  42. The kernel will autodetect which format superblock is being used.
  43. Superblock format '0' is treated differently to others for legacy
  44. reasons - it is the original superblock format.
  45. General Rules - apply for all superblock formats
  46. ------------------------------------------------
  47. An array is 'created' by writing appropriate superblocks to all
  48. devices.
  49. It is 'assembled' by associating each of these devices with an
  50. particular md virtual device. Once it is completely assembled, it can
  51. be accessed.
  52. An array should be created by a user-space tool. This will write
  53. superblocks to all devices. It will usually mark the array as
  54. 'unclean', or with some devices missing so that the kernel md driver
  55. can create appropriate redundancy (copying in raid1, parity
  56. calculation in raid4/5).
  57. When an array is assembled, it is first initialized with the
  58. SET_ARRAY_INFO ioctl. This contains, in particular, a major and minor
  59. version number. The major version number selects which superblock
  60. format is to be used. The minor number might be used to tune handling
  61. of the format, such as suggesting where on each device to look for the
  62. superblock.
  63. Then each device is added using the ADD_NEW_DISK ioctl. This
  64. provides, in particular, a major and minor number identifying the
  65. device to add.
  66. The array is started with the RUN_ARRAY ioctl.
  67. Once started, new devices can be added. They should have an
  68. appropriate superblock written to them, and then passed be in with
  69. ADD_NEW_DISK.
  70. Devices that have failed or are not yet active can be detached from an
  71. array using HOT_REMOVE_DISK.
  72. Specific Rules that apply to format-0 super block arrays, and
  73. arrays with no superblock (non-persistent).
  74. -------------------------------------------------------------
  75. An array can be 'created' by describing the array (level, chunksize
  76. etc) in a SET_ARRAY_INFO ioctl. This must has major_version==0 and
  77. raid_disks != 0.
  78. Then uninitialized devices can be added with ADD_NEW_DISK. The
  79. structure passed to ADD_NEW_DISK must specify the state of the device
  80. and it's role in the array.
  81. Once started with RUN_ARRAY, uninitialized spares can be added with
  82. HOT_ADD_DISK.