]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
NVMe: Passthrough IOCTL for IO commands
authorKeith Busch <keith.busch@intel.com>
Fri, 12 Sep 2014 22:07:20 +0000 (16:07 -0600)
committerJens Axboe <axboe@fb.com>
Tue, 4 Nov 2014 20:17:09 +0000 (13:17 -0700)
The NVME_IOCTL_SUBMIT_IO only works for IO commands with block data
transfers and isn't usable for other NVMe commands like flush,
data set management, or any sort of vendor unique command. The
NVME_IOCTL_ADMIN_CMD, however, can easily be modified to accept arbitrary
IO commands in addition to arbitrary admin commands without breaking
backward compatibility. This patch just adds a new IOCTL to distinguish
if the driver should submit the command on an IO or Admin queue.

Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/nvme-core.c
include/uapi/linux/nvme.h

index 93ee55ee37750ba5993b0de66c31299cf7132edc..70be3a151eb74fb2ec6dd3f777944c5968f7d247 100644 (file)
@@ -1732,10 +1732,10 @@ static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
        return status;
 }
 
-static int nvme_user_admin_cmd(struct nvme_dev *dev,
-                                       struct nvme_admin_cmd __user *ucmd)
+static int nvme_user_cmd(struct nvme_dev *dev,
+                       struct nvme_passthru_cmd __user *ucmd, bool ioq)
 {
-       struct nvme_admin_cmd cmd;
+       struct nvme_passthru_cmd cmd;
        struct nvme_command c;
        int status, length;
        struct nvme_iod *uninitialized_var(iod);
@@ -1774,6 +1774,9 @@ static int nvme_user_admin_cmd(struct nvme_dev *dev,
                                                                ADMIN_TIMEOUT;
        if (length != cmd.data_len)
                status = -ENOMEM;
+       else if (ioq)
+               status = nvme_submit_sync_cmd(dev, this_cpu_read(*dev->io_queue), &c,
+                                                       &cmd.result, timeout);
        else
                status = nvme_submit_sync_cmd(dev, 0, &c, &cmd.result, timeout);
 
@@ -1799,7 +1802,9 @@ static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
                force_successful_syscall_return();
                return ns->ns_id;
        case NVME_IOCTL_ADMIN_CMD:
-               return nvme_user_admin_cmd(ns->dev, (void __user *)arg);
+               return nvme_user_cmd(ns->dev, (void __user *)arg, false);
+       case NVME_IOCTL_IO_CMD:
+               return nvme_user_cmd(ns->dev, (void __user *)arg, true);
        case NVME_IOCTL_SUBMIT_IO:
                return nvme_submit_io(ns, (void __user *)arg);
        case SG_GET_VERSION_NUM:
@@ -2743,7 +2748,9 @@ static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
        struct nvme_dev *dev = f->private_data;
        switch (cmd) {
        case NVME_IOCTL_ADMIN_CMD:
-               return nvme_user_admin_cmd(dev, (void __user *)arg);
+               return nvme_user_cmd(dev, (void __user *)arg, false);
+       case NVME_IOCTL_IO_CMD:
+               return nvme_user_cmd(dev, (void __user *)arg, true);
        default:
                return -ENOTTY;
        }
index 134518b0100b741160c9bba63de14cd5c3b8122e..97106556408f129cad622f54241715d3e6b5a347 100644 (file)
@@ -503,7 +503,7 @@ struct nvme_user_io {
        __u16   appmask;
 };
 
-struct nvme_admin_cmd {
+struct nvme_passthru_cmd {
        __u8    opcode;
        __u8    flags;
        __u16   rsvd1;
@@ -524,8 +524,11 @@ struct nvme_admin_cmd {
        __u32   result;
 };
 
+#define nvme_admin_cmd nvme_passthru_cmd
+
 #define NVME_IOCTL_ID          _IO('N', 0x40)
 #define NVME_IOCTL_ADMIN_CMD   _IOWR('N', 0x41, struct nvme_admin_cmd)
 #define NVME_IOCTL_SUBMIT_IO   _IOW('N', 0x42, struct nvme_user_io)
+#define NVME_IOCTL_IO_CMD      _IOWR('N', 0x43, struct nvme_passthru_cmd)
 
 #endif /* _UAPI_LINUX_NVME_H */