search for: btrfs_ioc_ut_op_clonerange

Displaying 1 result from an estimated 1 matches for "btrfs_ioc_ut_op_clonerange".

2009 Nov 10
12
[RFC] big fat transaction ioctl
...ERNEL); + if (!fds) + return -ENOMEM; + + for (i = 0; i < ut->num_ops; i++) { + struct btrfs_ioctl_usertrans_op op; + int ret; + + err = -EFAULT; + if (copy_from_user(&op, &ops[i], sizeof(op))) + goto out; + + /* lookup fd args? */ + err = -EINVAL; + switch (op.op) { + case BTRFS_IOC_UT_OP_CLONERANGE: + if (op.args[1] < 0 || op.args[1] >= ut->num_fds) + goto out; + fd2 = fds[1]; + + case BTRFS_IOC_UT_OP_CLOSE: + case BTRFS_IOC_UT_OP_PWRITE: + if (op.args[0] < 0 || op.args[0] >= ut->num_fds) + goto out; + fd1 = fds[0]; + } + + /* do op */ + switch (op.op) { +...