+typedef struct
+{
+ dk_format_capacity_t * capacities;
+ uint32_t capacitiesCount; /* use zero to probe count */
+
+#ifdef __LP64__
+ uint8_t reserved0096[4]; /* reserved, clear to zero */
+#else /* !__LP64__ */
+ uint8_t reserved0064[8]; /* reserved, clear to zero */
+#endif /* !__LP64__ */
+} dk_format_capacities_t;
+
+typedef struct
+{
+ dk_extent_t * extents;
+ uint32_t extentsCount;
+
+#ifdef __LP64__
+ uint8_t reserved0096[4]; /* reserved, clear to zero */
+#else /* !__LP64__ */
+ uint8_t reserved0064[8]; /* reserved, clear to zero */
+#endif /* !__LP64__ */
+} dk_unmap_t;
+
+#define DKIOCEJECT _IO('d', 21)
+#define DKIOCSYNCHRONIZECACHE _IO('d', 22)
+
+#define DKIOCFORMAT _IOW('d', 26, dk_format_capacity_t)
+#define DKIOCGETFORMATCAPACITIES _IOWR('d', 26, dk_format_capacities_t)
+
+#define DKIOCGETBLOCKSIZE _IOR('d', 24, uint32_t)
+#define DKIOCGETBLOCKCOUNT _IOR('d', 25, uint64_t)
+#define DKIOCGETFIRMWAREPATH _IOR('d', 28, dk_firmware_path_t)
+
+#define DKIOCISFORMATTED _IOR('d', 23, uint32_t)
+#define DKIOCISWRITABLE _IOR('d', 29, uint32_t)
+
+#define DKIOCREQUESTIDLE _IO('d', 30)
+#define DKIOCUNMAP _IOW('d', 31, dk_unmap_t)
+
+#define DKIOCGETMAXBLOCKCOUNTREAD _IOR('d', 64, uint64_t)
+#define DKIOCGETMAXBLOCKCOUNTWRITE _IOR('d', 65, uint64_t)
+#define DKIOCGETMAXBYTECOUNTREAD _IOR('d', 70, uint64_t)
+#define DKIOCGETMAXBYTECOUNTWRITE _IOR('d', 71, uint64_t)
+
+#define DKIOCGETMAXSEGMENTCOUNTREAD _IOR('d', 66, uint64_t)
+#define DKIOCGETMAXSEGMENTCOUNTWRITE _IOR('d', 67, uint64_t)
+#define DKIOCGETMAXSEGMENTBYTECOUNTREAD _IOR('d', 68, uint64_t)
+#define DKIOCGETMAXSEGMENTBYTECOUNTWRITE _IOR('d', 69, uint64_t)
+
+#define DKIOCGETMINSEGMENTALIGNMENTBYTECOUNT _IOR('d', 74, uint64_t)
+#define DKIOCGETMAXSEGMENTADDRESSABLEBITCOUNT _IOR('d', 75, uint64_t)
+
+#define DKIOCGETFEATURES _IOR('d', 76, uint32_t)
+#define DKIOCGETPHYSICALBLOCKSIZE _IOR('d', 77, uint32_t)
+#define DKIOCGETCOMMANDPOOLSIZE _IOR('d', 78, uint32_t)
+
+typedef struct
+{
+ uint64_t offset;
+ uint64_t length;