Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38110
b: refs/heads/master
c: fbedac0
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Oct 3, 2006
1 parent bac7571 commit 2ce4830
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 94 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 999d816851c3e080412a19558f111d01852d2f04
refs/heads/master: fbedac04fa11d7f9f9f425c7ec253f55becaae57
9 changes: 0 additions & 9 deletions trunk/Documentation/feature-removal-schedule.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,6 @@ Who: Arjan van de Ven

---------------------------

What: START_ARRAY ioctl for md
When: July 2006
Files: drivers/md/md.c
Why: Not reliable by design - can fail when most needed.
Alternatives exist
Who: NeilBrown <neilb@suse.de>

---------------------------

What: eepro100 network driver
When: January 2007
Why: replaced by the e100 driver
Expand Down
82 changes: 0 additions & 82 deletions trunk/drivers/md/md.c
Original file line number Diff line number Diff line change
Expand Up @@ -3440,67 +3440,6 @@ static void autorun_devices(int part)
printk(KERN_INFO "md: ... autorun DONE.\n");
}

/*
* import RAID devices based on one partition
* if possible, the array gets run as well.
*/

static int autostart_array(dev_t startdev)
{
char b[BDEVNAME_SIZE];
int err = -EINVAL, i;
mdp_super_t *sb = NULL;
mdk_rdev_t *start_rdev = NULL, *rdev;

start_rdev = md_import_device(startdev, 0, 0);
if (IS_ERR(start_rdev))
return err;


/* NOTE: this can only work for 0.90.0 superblocks */
sb = (mdp_super_t*)page_address(start_rdev->sb_page);
if (sb->major_version != 0 ||
sb->minor_version != 90 ) {
printk(KERN_WARNING "md: can only autostart 0.90.0 arrays\n");
export_rdev(start_rdev);
return err;
}

if (test_bit(Faulty, &start_rdev->flags)) {
printk(KERN_WARNING
"md: can not autostart based on faulty %s!\n",
bdevname(start_rdev->bdev,b));
export_rdev(start_rdev);
return err;
}
list_add(&start_rdev->same_set, &pending_raid_disks);

for (i = 0; i < MD_SB_DISKS; i++) {
mdp_disk_t *desc = sb->disks + i;
dev_t dev = MKDEV(desc->major, desc->minor);

if (!dev)
continue;
if (dev == startdev)
continue;
if (MAJOR(dev) != desc->major || MINOR(dev) != desc->minor)
continue;
rdev = md_import_device(dev, 0, 0);
if (IS_ERR(rdev))
continue;

list_add(&rdev->same_set, &pending_raid_disks);
}

/*
* possibly return codes
*/
autorun_devices(0);
return 0;

}


static int get_version(void __user * arg)
{
mdu_version_t ver;
Expand Down Expand Up @@ -4259,27 +4198,6 @@ static int md_ioctl(struct inode *inode, struct file *file,
goto abort;
}


if (cmd == START_ARRAY) {
/* START_ARRAY doesn't need to lock the array as autostart_array
* does the locking, and it could even be a different array
*/
static int cnt = 3;
if (cnt > 0 ) {
printk(KERN_WARNING
"md: %s(pid %d) used deprecated START_ARRAY ioctl. "
"This will not be supported beyond July 2006\n",
current->comm, current->pid);
cnt--;
}
err = autostart_array(new_decode_dev(arg));
if (err) {
printk(KERN_WARNING "md: autostart failed!\n");
goto abort;
}
goto done;
}

err = mddev_lock(mddev);
if (err) {
printk(KERN_INFO
Expand Down
1 change: 0 additions & 1 deletion trunk/include/linux/compat_ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ COMPATIBLE_IOCTL(PROTECT_ARRAY)
ULONG_IOCTL(HOT_ADD_DISK)
ULONG_IOCTL(SET_DISK_FAULTY)
COMPATIBLE_IOCTL(RUN_ARRAY)
ULONG_IOCTL(START_ARRAY)
COMPATIBLE_IOCTL(STOP_ARRAY)
COMPATIBLE_IOCTL(STOP_ARRAY_RO)
COMPATIBLE_IOCTL(RESTART_ARRAY_RW)
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/raid/md_u.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

/* usage */
#define RUN_ARRAY _IOW (MD_MAJOR, 0x30, mdu_param_t)
#define START_ARRAY _IO (MD_MAJOR, 0x31)
/* 0x31 was START_ARRAY */
#define STOP_ARRAY _IO (MD_MAJOR, 0x32)
#define STOP_ARRAY_RO _IO (MD_MAJOR, 0x33)
#define RESTART_ARRAY_RW _IO (MD_MAJOR, 0x34)
Expand Down

0 comments on commit 2ce4830

Please sign in to comment.