aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nvme.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h
index 7c3f85bc10f1..f0f95c719685 100644
--- a/include/linux/nvme.h
+++ b/include/linux/nvme.h
@@ -74,12 +74,16 @@ enum {
74struct nvme_dev { 74struct nvme_dev {
75 struct list_head node; 75 struct list_head node;
76 struct nvme_queue __rcu **queues; 76 struct nvme_queue __rcu **queues;
77 unsigned short __percpu *io_queue;
77 u32 __iomem *dbs; 78 u32 __iomem *dbs;
78 struct pci_dev *pci_dev; 79 struct pci_dev *pci_dev;
79 struct dma_pool *prp_page_pool; 80 struct dma_pool *prp_page_pool;
80 struct dma_pool *prp_small_pool; 81 struct dma_pool *prp_small_pool;
81 int instance; 82 int instance;
82 int queue_count; 83 unsigned queue_count;
84 unsigned online_queues;
85 unsigned max_qid;
86 int q_depth;
83 u32 db_stride; 87 u32 db_stride;
84 u32 ctrl_config; 88 u32 ctrl_config;
85 struct msix_entry *entry; 89 struct msix_entry *entry;