md: md_ioctl(): Fix misleading indentation.
authorAndre Noll <maan@systemlinux.org>
Fri, 25 Apr 2008 17:06:35 +0000 (19:06 +0200)
committerNeil Brown <neilb@suse.de>
Tue, 8 Jul 2008 00:51:29 +0000 (10:51 +1000)
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: Neil Brown <neilb@suse.de>
drivers/md/md.c

index 43d033d..912ed04 100644 (file)
@@ -4973,14 +4973,12 @@ static int md_ioctl(struct inode *inode, struct file *file,
         * here and hit the 'default' below, so only disallow
         * 'md' ioctls, and switch to rw mode if started auto-readonly.
         */
-       if (_IOC_TYPE(cmd) == MD_MAJOR &&
-           mddev->ro && mddev->pers) {
+       if (_IOC_TYPE(cmd) == MD_MAJOR && mddev->ro && mddev->pers) {
                if (mddev->ro == 2) {
                        mddev->ro = 0;
                        sysfs_notify(&mddev->kobj, NULL, "array_state");
                        set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
                        md_wakeup_thread(mddev->thread);
-
                } else {
                        err = -EROFS;
                        goto abort_unlock;