fs: add ksys_open() wrapper; remove in-kernel calls to sys_open()
[linux-2.6-block.git] / init / do_mounts_md.c
index ebd4013d589e4d2189e72b2caa5f2bfd493b7c6e..76dcfaada3edcce82e834d1e333049552d0253a7 100644 (file)
@@ -181,7 +181,7 @@ static void __init md_setup_drive(void)
                        partitioned ? "_d" : "", minor,
                        md_setup_args[ent].device_names);
 
-               fd = sys_open(name, 0, 0);
+               fd = ksys_open(name, 0, 0);
                if (fd < 0) {
                        printk(KERN_ERR "md: open failed - cannot start "
                                        "array %s\n", name);
@@ -244,7 +244,7 @@ static void __init md_setup_drive(void)
                         * array without it
                         */
                        ksys_close(fd);
-                       fd = sys_open(name, 0, 0);
+                       fd = ksys_open(name, 0, 0);
                        sys_ioctl(fd, BLKRRPART, 0);
                }
                ksys_close(fd);
@@ -294,7 +294,7 @@ static void __init autodetect_raid(void)
 
        wait_for_device_probe();
 
-       fd = sys_open("/dev/md0", 0, 0);
+       fd = ksys_open("/dev/md0", 0, 0);
        if (fd >= 0) {
                sys_ioctl(fd, RAID_AUTORUN, raid_autopart);
                ksys_close(fd);