summaryrefslogtreecommitdiff
path: root/drivers/block/nvme-core.c
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2013-03-27 11:13:41 (GMT)
committerMatthew Wilcox <matthew.r.wilcox@intel.com>2013-03-27 11:17:49 (GMT)
commitf8ebf8409abfdaeeb8c847381629a2a8b8e3d816 (patch)
tree718ed21ac7182a75aab76eca6421da184edf0618 /drivers/block/nvme-core.c
parent13c3b0fcc8e33ba49f252378f6e7290b146042af (diff)
downloadlinux-fsl-qoriq-f8ebf8409abfdaeeb8c847381629a2a8b8e3d816.tar.xz
NVMe: Add definitions for format command
The SCSI emulation has the ability to send format commands, so we need to add the definition of the command. Also add a missing error code. Signed-off-by: Vishal Verma <vishal.l.verma@intel.com> Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Diffstat (limited to 'drivers/block/nvme-core.c')
-rw-r--r--drivers/block/nvme-core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/nvme-core.c b/drivers/block/nvme-core.c
index 1f98040..d0cfb85 100644
--- a/drivers/block/nvme-core.c
+++ b/drivers/block/nvme-core.c
@@ -93,6 +93,7 @@ static inline void _nvme_check_size(void)
BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
+ BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);