summaryrefslogtreecommitdiffstats
path: root/src/nvme/api-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvme/api-types.h')
-rw-r--r--src/nvme/api-types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvme/api-types.h b/src/nvme/api-types.h
index 9f3604e..296a7b0 100644
--- a/src/nvme/api-types.h
+++ b/src/nvme/api-types.h
@@ -196,6 +196,9 @@ struct nvme_format_nvm_args {
* @nsid: Namespace identifier
* @sel: Type of management operation to perform
* @csi: Command Set Identifier
+ * @rsvd1: Reserved
+ * @rsvd2: Reserved
+ * @data: Host Software Specified Fields
*/
struct nvme_ns_mgmt_args {
__u32 *result;
@@ -206,6 +209,9 @@ struct nvme_ns_mgmt_args {
__u32 nsid;
enum nvme_ns_mgmt_sel sel;
__u8 csi;
+ __u8 rsvd1[3];
+ void *rsvd2;
+ struct nvme_ns_mgmt_host_sw_specified *data;
};
/**