aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/nvme/host/nvme.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2015-11-26 09:08:36 +0100
committerJens Axboe <axboe@fb.com>2015-12-01 10:59:38 -0700
commit21d34711e1b5970acfb22bddf1fefbfbd7e0123b (patch)
tree3b5c0d963a5a0f0bd5dc3382a9c1fb1e31ae9c0c /drivers/nvme/host/nvme.h
parentnvme: move struct nvme_iod to pci.c (diff)
downloadlinux-dev-21d34711e1b5970acfb22bddf1fefbfbd7e0123b.tar.xz
linux-dev-21d34711e1b5970acfb22bddf1fefbfbd7e0123b.zip
nvme: split command submission helpers out of pci.c
Create a new core.c and start by adding the command submission helpers to it, which are already abstracted away from the actual hardware queues by the block layer. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme/host/nvme.h')
-rw-r--r--drivers/nvme/host/nvme.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h
index 2cead2c98163..a53977cc9fc2 100644
--- a/drivers/nvme/host/nvme.h
+++ b/drivers/nvme/host/nvme.h
@@ -22,6 +22,9 @@
extern unsigned char nvme_io_timeout;
#define NVME_IO_TIMEOUT (nvme_io_timeout * HZ)
+extern unsigned char admin_timeout;
+#define ADMIN_TIMEOUT (admin_timeout * HZ)
+
enum {
NVME_NS_LBA = 0,
NVME_NS_LIGHTNVM = 1,