1 #include <linux/delay.h>
2 #include <linux/raid/md_u.h>
3 #include <linux/raid/md_p.h>
8 * When md (and any require personalities) are compiled into the kernel
9 * (not a module), arrays can be assembles are boot time using with AUTODETECT
10 * where specially marked partitions are registered with md_autodetect_dev(),
11 * and with MD_BOOT where devices to be collected are given on the boot line
13 * The code for that is here.
16 #ifdef CONFIG_MD_AUTODETECT
17 static int __initdata raid_noautodetect;
19 static int __initdata raid_noautodetect=1;
21 static int __initdata raid_autopart;
29 } md_setup_args[256] __initdata;
31 static int md_setup_ents __initdata;
34 * Parse the command-line parameters given our kernel, but do not
35 * actually try to invoke the MD device now; that is handled by
36 * md_setup_drive after the low-level disk drivers have initialised.
38 * 27/11/1999: Fixed to work correctly with the 2.3 kernel (which
39 * assigns the task of parsing integer arguments to the
40 * invoked program now). Added ability to initialise all
41 * the MD devices (by specifying multiple "md=" lines)
42 * instead of just one. -- KTK
43 * 18May2000: Added support for persistent-superblock arrays:
44 * md=n,0,factor,fault,device-list uses RAID0 for device n
45 * md=n,-1,factor,fault,device-list uses LINEAR for device n
46 * md=n,device-list reads a RAID superblock from the devices
47 * elements in device-list are read by name_to_kdev_t so can be
48 * a hex number or something like /dev/hda1 /dev/sdb
49 * 2001-06-03: Dave Cinege <dcinege@psychosis.com>
50 * Shifted name_to_kdev_t() and related operations to md_set_drive()
51 * for later execution. Rewrote section to make devfs compatible.
53 static int __init md_setup(char *str)
55 int minor, level, factor, fault, partitioned = 0;
64 if (get_option(&str, &minor) != 2) { /* MD Number */
65 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
69 for (ent=0 ; ent< md_setup_ents ; ent++)
70 if (md_setup_args[ent].minor == minor &&
71 md_setup_args[ent].partitioned == partitioned) {
72 printk(KERN_WARNING "md: md=%s%d, Specified more than once. "
73 "Replacing previous definition.\n", partitioned?"d":"", minor);
76 if (ent >= ARRAY_SIZE(md_setup_args)) {
77 printk(KERN_WARNING "md: md=%s%d - too many md initialisations\n", partitioned?"d":"", minor);
80 if (ent >= md_setup_ents)
82 switch (get_option(&str, &level)) { /* RAID level */
83 case 2: /* could be 0 or -1.. */
84 if (level == 0 || level == LEVEL_LINEAR) {
85 if (get_option(&str, &factor) != 2 || /* Chunk Size */
86 get_option(&str, &fault) != 2) {
87 printk(KERN_WARNING "md: Too few arguments supplied to md=.\n");
90 md_setup_args[ent].level = level;
91 md_setup_args[ent].chunk = 1 << (factor+12);
92 if (level == LEVEL_LINEAR)
99 case 1: /* the first device is numeric */
103 md_setup_args[ent].level = LEVEL_NONE;
104 pername="super-block";
107 printk(KERN_INFO "md: Will configure md%d (%s) from %s, below.\n",
108 minor, pername, str);
109 md_setup_args[ent].device_names = str;
110 md_setup_args[ent].partitioned = partitioned;
111 md_setup_args[ent].minor = minor;
116 static void __init md_setup_drive(void)
118 int minor, i, ent, partitioned;
120 dev_t devices[MD_SB_DISKS+1];
122 for (ent = 0; ent < md_setup_ents ; ent++) {
126 mdu_disk_info_t dinfo;
129 minor = md_setup_args[ent].minor;
130 partitioned = md_setup_args[ent].partitioned;
131 devname = md_setup_args[ent].device_names;
133 sprintf(name, "/dev/md%s%d", partitioned?"_d":"", minor);
135 dev = MKDEV(mdp_major, minor << MdpMinorShift);
137 dev = MKDEV(MD_MAJOR, minor);
138 create_dev(name, dev);
139 for (i = 0; i < MD_SB_DISKS && devname != NULL; i++) {
144 p = strchr(devname, ',');
148 dev = name_to_dev_t(devname);
149 if (strncmp(devname, "/dev/", 5) == 0)
151 snprintf(comp_name, 63, "/dev/%s", devname);
152 rdev = bstat(comp_name);
154 dev = new_decode_dev(rdev);
156 printk(KERN_WARNING "md: Unknown device name: %s\n", devname);
169 printk(KERN_INFO "md: Loading md%s%d: %s\n",
170 partitioned ? "_d" : "", minor,
171 md_setup_args[ent].device_names);
173 fd = sys_open(name, 0, 0);
175 printk(KERN_ERR "md: open failed - cannot start "
179 if (sys_ioctl(fd, SET_ARRAY_INFO, 0) == -EBUSY) {
181 "md: Ignoring md=%d, already autodetected. (Use raid=noautodetect)\n",
187 if (md_setup_args[ent].level != LEVEL_NONE) {
189 mdu_array_info_t ainfo;
190 ainfo.level = md_setup_args[ent].level;
194 while (devices[ainfo.raid_disks])
196 ainfo.md_minor =minor;
197 ainfo.not_persistent = 1;
199 ainfo.state = (1 << MD_SB_CLEAN);
201 ainfo.chunk_size = md_setup_args[ent].chunk;
202 err = sys_ioctl(fd, SET_ARRAY_INFO, (long)&ainfo);
203 for (i = 0; !err && i <= MD_SB_DISKS; i++) {
209 dinfo.state = (1<<MD_DISK_ACTIVE)|(1<<MD_DISK_SYNC);
210 dinfo.major = MAJOR(dev);
211 dinfo.minor = MINOR(dev);
212 err = sys_ioctl(fd, ADD_NEW_DISK, (long)&dinfo);
216 for (i = 0; i <= MD_SB_DISKS; i++) {
220 dinfo.major = MAJOR(dev);
221 dinfo.minor = MINOR(dev);
222 sys_ioctl(fd, ADD_NEW_DISK, (long)&dinfo);
226 err = sys_ioctl(fd, RUN_ARRAY, 0);
228 printk(KERN_WARNING "md: starting md%d failed\n", minor);
230 /* reread the partition table.
231 * I (neilb) and not sure why this is needed, but I cannot
232 * boot a kernel with devfs compiled in from partitioned md
236 fd = sys_open(name, 0, 0);
237 sys_ioctl(fd, BLKRRPART, 0);
243 static int __init raid_setup(char *str)
247 len = strlen(str) + 1;
251 char *comma = strchr(str+pos, ',');
254 wlen = (comma-str)-pos;
255 else wlen = (len-1)-pos;
257 if (!strncmp(str, "noautodetect", wlen))
258 raid_noautodetect = 1;
259 if (!strncmp(str, "autodetect", wlen))
260 raid_noautodetect = 0;
261 if (strncmp(str, "partitionable", wlen)==0)
263 if (strncmp(str, "part", wlen)==0)
270 __setup("raid=", raid_setup);
271 __setup("md=", md_setup);
273 static void __init autodetect_raid(void)
278 * Since we don't want to detect and use half a raid array, we need to
279 * wait for the known devices to complete their probing
281 printk(KERN_INFO "md: Waiting for all devices to be available before autodetect\n");
282 printk(KERN_INFO "md: If you don't use raid, use raid=noautodetect\n");
284 wait_for_device_probe();
286 fd = sys_open("/dev/md0", 0, 0);
288 sys_ioctl(fd, RAID_AUTORUN, raid_autopart);
293 void __init md_run_setup(void)
295 create_dev("/dev/md0", MKDEV(MD_MAJOR, 0));
297 if (raid_noautodetect)
298 printk(KERN_INFO "md: Skipping autodetection of RAID arrays. (raid=autodetect will force)\n");