]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Btrfs: fix sync subvol/snapshot creation
authorSage Weil <sage@newdream.net>
Fri, 10 Dec 2010 00:36:28 +0000 (00:36 +0000)
committerChris Mason <chris.mason@oracle.com>
Fri, 10 Dec 2010 21:29:10 +0000 (16:29 -0500)
We were incorrectly taking the async path even for the sync ioctls by
passing in &transid unconditionally.

There's ample room for further cleanup here, but this keeps the fix simple.

Signed-off-by: Sage Weil <sage@newdream.net>
Reviewed-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/ioctl.c

index f1c9bb4079ed8b3aaf2a01bb5211923f8e231986..7cc2e8e075b4f0c257960c7ea5c0d4f9a69d91c6 100644 (file)
@@ -964,6 +964,15 @@ static noinline int btrfs_ioctl_snap_create(struct file *file,
                name = async_vol_args->name;
                fd = async_vol_args->fd;
                async_vol_args->name[BTRFS_SNAPSHOT_NAME_MAX] = '\0';
+
+               ret = btrfs_ioctl_snap_create_transid(file, name, fd,
+                                                     subvol, &transid);
+
+               if (ret == 0 &&
+                   copy_to_user(arg +
+                                offsetof(struct btrfs_ioctl_async_vol_args,
+                                         transid), &transid, sizeof(transid)))
+                       ret = -EFAULT;
        } else {
                vol_args = memdup_user(arg, sizeof(*vol_args));
                if (IS_ERR(vol_args))
@@ -971,16 +980,9 @@ static noinline int btrfs_ioctl_snap_create(struct file *file,
                name = vol_args->name;
                fd = vol_args->fd;
                vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
-       }
 
-       ret = btrfs_ioctl_snap_create_transid(file, name, fd,
-                                             subvol, &transid);
-
-       if (!ret && async) {
-               if (copy_to_user(arg +
-                               offsetof(struct btrfs_ioctl_async_vol_args,
-                               transid), &transid, sizeof(transid)))
-                       return -EFAULT;
+               ret = btrfs_ioctl_snap_create_transid(file, name, fd,
+                                                     subvol, NULL);
        }
 
        kfree(vol_args);