summaryrefslogtreecommitdiffstats
path: root/completions/_nvme
blob: e90fc4288b4445d4a8c86135ffb42e9d82ecf577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
#compdef _nvme nvme
# SPDX-License-Identifier: GPL-2.0-or-later

# zsh completions for the nvme command-line interface,
# very loosely based on git and adb command completion
# Kelly Kaoudis kelly.n.kaoudis at intel.com, June 2015

_nvme () {
	local -a _cmds
	_cmds=(
	'list:identify basic information for all NVMe namespaces'
	'list-subsys:identify information for subsystems'
	'id-ctrl:display information about the controller'
	'id-ns:display information about the namespace'
	'id-ns-granularity:display namespace granularity list'
	'id-ns-lba-format:display information about the namespace capability fields for specific LBA format'
	'list-ns:identify all namespace(s) attached'
	'cmdset-ind-id-ns:display I/O Command Set Independent information about the namespace'
	'id-iocs:display information about I/O command sets'
	'id-domain:display information about domain list'
	'create-ns:create a new namespace before attachment'
	'delete-ns:delete a detached namespace'
	'attach-ns:attach namespace to controller'
	'detach-ns:detach namespace from controller'
	'list-ctrl:identify all controller(s) attached'
	'nvm-id-ctrl:display information about the nvm command set'
	'nvm-id-ns:display information about the namespace of nvm command set'
	'nvm-id-ns-lba-format:display information about the namespace of nvm command set capability fields for specific LBA format'
	'primary-ctrl-caps:display primary controller capabilities'
	'list-secondary:identify secondary controller list associated with the primary controller'
	'ns-descs:display namespace identification descriptors'
	'id-nvmset:display entries for NVM Set identifiers'
	'id-uuid:display list of supported Vendor Specific UUIDs'
	'list-endgrp:display information about nvme endurance group list'
	'get-ns-id:get namespace id of opened block device'
	'get-log:retrieve any log in raw format'
	'predictable-lat-log:retrieve predictable latency per nvmset log'
	'pred-lat-event-agg-log:retrieve predictable latency event aggregate log'
	'persistent-event-log:retrieve persistent event log'
	'telemetry-log:retrieve telemetry log'
	'fw-log:retrieve fw log'
	'changed-ns-list-log:retrieve changed namespaces log'
	'smart-log:retrieve SMART log'
	'smart-log-add:retrieve additional SMART log'
	'ana-log:retrieve ANA log'
	'error-log:retrieve error log'
	'effects-log:retrieve command effects log page and print the table'
	'endurance-log:retrieves endurance groups log page and prints the log'
	'endurance-event-agg-log:retrieve endurance group event aggregate log'
	'lba-status-log:retrieve lba status log'
	'resv-notif-log:retrieve reservation notification log'
	'get-feature:display a controller feature'
	'device-self-test:implementing the device self-test feature'
	'self-test-log:retrieve the self-test log'
	'set-feature:set a controller feature and show results'
	'set-property:writes and shows the defined NVMe controller property for NVMe over Fabric'
	'get-property:Reads and shows the defined NVMe controller property for NVMe over Fabric'
	'format:apply new block format to namespace'
	'fw-activate:activate a firmware on the device'
	'fw-download:download a firmware to the device'
	'admin-passthru:submit a passthrough admin command IOCTL'
	'io-passthru:submit a passthrough io command IOCTL'
	'security-send:send security/secure data to controller'
	'security-recv:ask for security/secure data from controller'
	'get-lba-status:display information about potentially unrecoverable LBAs'
	'resv-acquire:acquire reservation on a namespace'
	'resv-register:register reservation on a namespace'
	'resv-release:release reservation on a namespace'
	'resv-report:report reservation on a namespace'
	'dsm:submit a Data Set Management command'
	'copy:submit a simple copy command'
	'flush:submit a flush'
	'compare:compare data on device to data elsewhere'
	'read:submit a read command'
	'write:submit a write command'
	'capacity-mgmt:submit capacity management command'
	'write-zeroes:submit an NVMe write zeroes command'
	'write-uncor:submit an NVMe write uncorrectable command'
	'verify:submit an NVMe Verify command'
	'sanitize:submit a sanitize command'
	'sanitize-log:retrieve sanitize log and show it'
	'reset:reset the NVMe controller'
	'subsystem-reset:reset the NVMe subsystem'
	'ns-rescan:rescan the NVMe namespaces'
	'show-regs:show the controller registers; require admin character device'
	'boot-part-log:retrieve boot partition log'
	'fid-support-effects-log:retrieve fid support and effects log'
	'supported-log-pages:retrieve support log pages details'
	'lockdown:submit a lockdown command'
	'media-unit-stat-log:retrieve media unit status log pages details'
	'supported-cap-config-log:retrieve the list of Supported Capacity Configuration Descriptors'
	'discover:send Get Log Page request to Discovery Controller'
	'connect-all:discover NVMeoF subsystems and connect to them'
	'connect:connect to NVMeoF subsystem'
	'dim:send Discovery Information Management command to a Discovery Controller (DC)'
	'disconnect:disconnect from NVMeoF subsystem'
	'disconnect-all:disconnect from all connected NVMeoF subsystems'
	'gen-hostnqn:generate a host NVMe Qualified Name'
	'show-hostnqn:show the host NQN configured for the system'
	'dir-receive:read directive parameters of the specified directive type'
	'dir-send:set directive parameters of the specified directive type'
	'virt-mgmt:submit a Virtualization Management command'
	'rpmb:submit an NVMe RPMB command'
	'show-topology:show subsystem topology'
	'nvme-mi-recv:send a NVMe-MI receive command'
	'nvme-mi-send:send a NVMe-MI send command'
	'version:show the program version'
	'ocp:OCP cloud SSD extensions'
	'solidigm:Solidigm plug-in extensions'
	'help:print brief descriptions of all nvme commands'
	'json:dump output in json format'
	)

	local expl

	_arguments '*:: :->subcmds' && return 0

	if (( CURRENT == 1 )); then
		_describe -t commands "nvme subcommands" _cmds
		return
	elif (( CURRENT > 2 )); then
		case ${words[1]} in
		(ocp)
			case ${words[2]} in
			(smart-add-log)
				local _smart_add_log
				_smart_add_log=(
				/dev/nvme':supply a device to use (required)'
				--output-format=':Output format: normal|json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp smart-add-log options" _smart_add_log
				;;
			(latency-monitor-log)
				local _latency_monitor_log
				_latency_monitor_log=(
				/dev/nvme':supply a device to use (required)'
				--output-format=':Output format: normal|json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp latency-monitor-log options" _latency_monitor_log
				;;
			(set-latency-monitor-feature)
				local _set_latency_monitor_feature
				_set_latency_monitor_feature=(
				/dev/nvme':supply a device to use (required)'
				--active_bucket_timer_threshold=':Active Bucket Timer Threshold'
				-t':alias for --active_bucket_timer_threshold'
				--active_threshold_a=':Active Threshold A'
				-a':alias for --active_threshold_a'
				--active_threshold_a=':Active Threshold B'
				-b':alias for --active_threshold_b'
				--active_threshold_c=':Active Threshold C'
				-c':alias for --active_threshold_c'
				--active_threshold_d=':Active Threshold D'
				-d':alias for --active_threshold_d'
				--active_latency_config=':Active Latency Configuration'
				-f':alias for --active_latency_config'
				--active_latency_minimum_window=':Active Latency Minimum Window'
				-w':alias for --active_latency_minimum_window'
				--debug_log_trigger_enable='Debug Log Trigger Enable'
				-r':alias for --debug_log_trigger_enable'
				--discard_debug_log='Discard Debug Log'
				-l':alias for --discard_debug_log'
				--latency_monitor_feature_enable='Latency Monitor Feature Enable'
				-e':alias for --latency_monitor_feature_enable'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp set-latency-monitor-feature options" _set_latency_monitor_feature
				;;
			(internal-log)
				local _internal_log
				_internal_log=(
				/dev/nvme':supply a device to use (required)'
				--telemetry_type=':Telemetry Type; host (Create bit) or controller'
				-t':alias for --telemetry_type'
				--telemetry_data_area=':Telemetry Data Area; 1 or 3'
				-a':alias for --telemetry_data_area'
				--output-file=':Output file name with path'
				-o':alias for --output-file'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp internal-log options" _internal_log
				;;
			(clear-fw-activate-history)
				local _clear_fw_activate_history
				_clear_fw_activate_history=(
				/dev/nvme':supply a device to use (required)'
				--no-uuid':Skip UUID index search'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp clear-fw-activate-history options" _clear_fw_activate_history
				;;
			(eol-plp-failure-mode)
				local _eol_plp_failure_mode
				_eol_plp_failure_mode=(
				/dev/nvme':supply a device to use (required)'
				--mode=':0-3: default/rom/wtm/normal'
				-m':alias for --mode'
				--save':Specifies that the controller shall save the attribute'
				-s':alias for --save'
				--sel=':0-3,8: current/default/saved/supported/changed:'
				-S':alias for --sel'
				--no-uuid':Skip UUID index search'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp eol-plp-failure-mode options" _eol_plp_failure_mode
				;;
			(clear-pcie-correctable-error-counters)
				local _clear_pcie_correctable_error_counters
				_clear_pcie_correctable_error_counters=(
				/dev/nvme':supply a device to use (required)'
				--no-uuid':Skip UUID index search'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp clear-pcie-correctable-error-counters options" _clear_pcie_correctable_error_counters
				;;
			(fw-activate-history)
				local _fw_activate_history
				_fw_activate_history=(
				/dev/nvme':supply a device to use (required)'
				--output-format=':Output format: normal|json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp fw-activate-history options" _fw_activate_history
				;;
			(device-capability-log)
				local _device_capability_log
				_device_capability_log=(
				/dev/nvme':supply a device to use (required)'
				--output-format=':Output format: normal|json|binary'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp device-capability-log options" _device_capability_log
				;;
			(set-dssd-power-state-feature)
				local _set_dssd_power_state_feature
				_set_dssd_power_state_feature=(
				/dev/nvme':supply a device to use (required)'
				--power-state=':DSSD Power State to set in watts'
				-p':alias for --power-state'
				--save':Specifies that the controller shall save the attribute'
				-s':alias for --save'
				--no-uuid':Skip UUID index search'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp set-dssd-power-state-feature options" _set_dssd_power_state_feature
				;;
			(telemetry-string-log)
				local _telemetry_string_log
				_telemetry_string_log=(
				/dev/nvme':supply a device to use (required)'
				--output-file=':Output file name with path'
				-o':alias for --output-file'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme ocp telemetry-string-log options" _telemetry_string_log
				;;
			(*)
				_files
				;;
			esac
			;;
		(solidigm)
			case ${words[2]} in
			(id-ctrl)
				local _id_ctrl
				_id_ctrl=(
				--verbose':Increase output verbosity'
				-v':alias for --verbose'
				--output-format':Output format: normal|json|binary'
				-o':alias for --output-format'
				--vendor-specific':dump binary vendor field'
				-V':alias for --vendor-specific'
				--raw-binary':show identify in binary format'
				-b':alias for --raw-binary'
				--human-readable':show identify in readable format'
				-H':alias for --human-readable'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm id-ctrl options" _id_ctrl
				;;
			(smart-log-add)
				local _smart_log_add
				_smart_log_add=(
				--namespace-id':(optional) desired namespace'
				-n':alias for --namespace-id'
				--output-format':Output format: normal|json|binary'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm smart-log-add options" _smart_log_add
				;;
			(vs-smart-add-log)
				local _vs_smart_add_log
				_vs_smart_add_log=(
				--output-format':output Format: normal|json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm vs-smart-add-log options" _vs_smart_add_log
				;;
			(vs-internal-log)
				local _vs_internal_log
				_vs_internal_log=(
				--type':Log type: ALL,
                        CONTROLLERINITTELEMETRY,
                        HOSTINITTELEMETRY,
                        HOSTINITTELEMETRYNOGEN, NLOG,
                        ASSERT, EVENT. Defaults to ALL.'
				-t':alias for --type'
				--namespace-id':Namespace to get logs from.'
				-n':alias for --namespace-id'
				--dir-prefix':Output dir prefix; defaults to device serial number.'
				-p':alias for --dir-prefix'
				--verbose':To print out verbose info.'
				-v':alias for --verbose'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm vs-internal-log" _vs_internal_log
				;;
			(garbage-collect-log)
				local _garbage_collect_log
				_garbage_collect_log=(
				--output-format':Output format: normal|json|binary'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm garbage-collect-log" _garbage_collect_log
				;;
			(market-log)
				local _market_log
				_market_log=(
				--raw-binary':dump output in binary format'
				-b':alias for --raw-binary'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm market-log" _market_log
				;;
			(latency-tracking-log)
				local _latency_tracking_log
				_latency_tracking_log=(
				--enable':Enable Latency Tracking'
				-e':alias for --enable'
				--disable':Disable Latency Tracking'
				-d':alias for --disable'
				--read':Get read statistics'
				-r':alias for --read'
				--write':Get write statistics'
				-w':alias for --write'
				--type':Log type to get'
				-t':alias for --type'
				--output-format':Output format: normal|json|binary'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm latency-tracking-log" _latency_tracking_log
				;;
			(parse-telemetry-log)
				local _parse_telemetry_log
				_parse_telemetry_log=(
				--host-generate':Controls when to generate new
                                 host initiated report. Default
                                 value '1' generates new host
                                 initiated report, value '0'
                                 causes retrieval of existing
                                 log.'
				-g':alias for --host-generate'
				--controller-init':Gather report generated by the controller.'
				-c':alias for --controller-init'
				--data-area':Pick which telemetry data area to
                             report. Default is 3 to fetch
                             areas 1-3. Valid options are 1,
                             2, 3, 4.'
				-d':alias for --data-area'
				--config-file':JSON configuration file'
				-j':alias for --config-file'
				--source-file':data source <device> is binary
                                 file containing log dump instead
                                 of block or character device'
				-s':alias for --source-file'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm parse-telemetry-log" _parse_telemetry_log
				;;
			(clear-pcie-correctable-errors)
				local _clear_pcie_correctable_errors
				_clear_pcie_correctable_errors=(
				--no-uuid':Skip UUID index search (UUID index not required for OCP 1.0)'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm clear-pcie-correctable-errors" _clear_pcie_correctable_errors
				;;
			(clear-fw-activate-history)
				local _clear_fw_activate_history
				_clear_fw_activate_history=(
				--no-uuid':Skip UUID index search (UUID index not required for OCP 1.0)'
				-n':alias for --no-uuid'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm clear-fw-activate-history" _clear_fw_activate_history
				;;
			(vs-fw-activate-history)
				local _vs_fw_activate_history
				_vs_fw_activate_history=(
				--output-format':output format : normal | json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm vs-fw-activate-history" _vs_fw_activate_history
				;;
			(log-page-directory)
				local _log_page_directory
				_log_page_directory=(
				--output-format':output format : normal | json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm log-page-directory" _log_page_directory
				;;
			(temp-stats)
				local _temp_stats
				_temp_stats=(
				--raw-binary':dump output in binary format'
				-b':alias for --raw-binary'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm temp-stats" _temp_stats
				;;
			(vs-drive-info)
				local _vs_drive_info
				_vs_drive_info=(
				--output-format':output format : normal | json'
				-o':alias for --output-format'
				)
				_arguments '*:: :->subcmds'
				_describe -t commands "nvme solidigm vs-drive-info" _vs_drive_info
				;;
			(*)
				_files
				;;
			esac
			;;
		(sanitize)
			case ${words[CURRENT-1]} in
			(--sanact=|-a)
				_values '' 'exit-failure' 'start-block-erase' 'start-overwrite' 'start-crypto-erase'
				;;
			(*)
				_files
				;;
			esac
			;;
		(*)
			_files
			;;
		esac
		return
	else
		case ${words[CURRENT-1]} in
		(list)
			local _list
			_list=(
			--output-format=':Output format: normal|json'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list options" _list
			;;
		(list-subsys)
			local _listsubsys
			_listsubsys=(
			--output-format=':Output format: normal|json'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list-subsys options" _listsubsys
			;;
		(id-ctrl)
			local _idctrl
			_idctrl=(
			/dev/nvme':supply a device to use (required)'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			--vendor-specific':also dump binary vendor infos'
			-V':alias of --vendor-specific'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-ctrl options" _idctrl
			;;
		(id-ns)
			local _idns
			_idns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			--vendor-specific':also dump binary vendor infos'
			-V':alias of --vendor-specific'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-ns options" _idns
			;;
		(id-ns-granularity)
			local _idns_granularity
			_idns_granularity=(
			/dev/nvme':supply a device to use (required)'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-ns-granularity options" _idns_granularity
			;;
		(id-ns-lba-format)
			local _idns_lba_format
			_idns_lba_format=(
			/dev/nvme':supply a device to use (required)'
			--lba-format-index=':show infos for lba format index <lba-format-index>'
			-i':alias of --lba-format-index'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-ns-lba-format options" _idns_lba_format
			;;
		(list-ns)
			local _listns
			_listns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':start namespace infos listing with this nsid'
			-n':alias of --namespace-id'
			--csi=':command set identifier'
			-y':alias of --csi'
			--all':show all namespaces in the subsystem, whether attached or inactive'
			-a':alias of --all'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list-ns options" _listns
			;;
		(cmdset-ind-id-ns)
			local _cmdset_ind_idns
			_cmdset_ind_idns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme cmdset-ind-id-ns options" _cmdset_ind_idns
			;;
		(id-iocs)
			local _idiocs
			_idiocs=(
			/dev/nvme':supply a device to use (required)'
			--controller-id=':show infos for controller <cntid>'
			-c':alias of --controller-id'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-iocs options" _idiocs
			;;
		(id-domain)
			local _iddomain
			_iddomain=(
			/dev/nvme':supply a device to use (required)'
			--dom-id=':show infos for domain id <cntid>'
			-d':alias of --dom-id'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-domain options" _iddomain
			;;
		(nvm-id-ctrl)
			local _nvmidctrl
			_nvmidctrl=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme nvm-id-ctrl options" _nvmidctrl
			;;
		(nvm-id-ns)
			local _nvmidns
			_nvmidns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme nvm-id-ns options" _nvmidns
			;;
		(nvm-id-ns-lba-format)
			local _nvm_idns_lba_format
			_nvm_idns_lba_format=(
			/dev/nvme':supply a device to use (required)'
			--lba-format-index=':show infos for lba format index <lba-format-index>'
			-i':alias of --lba-format-index'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme nvm-id-ns-lba-format options" _nvm_idns_lba_format
			;;
		(primary-ctrl-caps)
			local _primary_ctrl_caps
			_primary_ctrl_caps=(
			/dev/nvme':supply a device to use (required)'
			--cntlid=':show infos for controller <cntid>'
			-c':alias of --cntlid'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme primary-ctrl-caps options" _primary_ctrl_caps
			;;
		(list-secondary)
			local _listsecondary
			_listsecondary=(
			/dev/nvme':supply a device to use (required)'
			--cntid=':show infos for lowest controller <cntid>'
			-c':alias of --cntid'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--num-entries=':number of entries to retrieve'
			-e':alias of --num-entries'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list-secondary options" _listsecondary
			;;
		(ns-descs)
			local _ns_descs
			_ns_descs=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme ns-descs options" _ns_descs
			;;
		(id-nvmset)
			local _id_nvmset
			_id_nvmset=(
			/dev/nvme':supply a device to use (required)'
			--nvmset_id=':NVM Set Identify value'
			-i':alias of --nvmset_id'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-nvmset options" _id_nvmset
			;;
		(id-uuid)
			local _id_uuid
			_id_uuid=(
			/dev/nvme':supply a device to use (required)'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme id-uuid options" _id_uuid
			;;
		(list-endgrp)
			local _listendgrp
			_listendgrp=(
			/dev/nvme':supply a device to use (required)'
			--endgrp-id=':endurance group id'
			-i':alias of --endgrp-id'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list-endgrp options" _listendgrp
			;;
		(create-ns)
			local _createns
			_createns=(
			/dev/nvme':supply a device to use (required)'
			--nsze=':namespace size to create'
			-s':alias of --nsze'
			--ncap=':namespace capacity'
			-c':alias of --ncap'
			--flbas=':FLBA size'
			-f':alias of --flbas'
			--dps=':data protection?'
			-d':alias of --dps'
			--nmic=':multipath and sharing'
			-m':alias of --nmic'
			--anagrp-id=':ANA Group Identifier'
			-a':alias of --anagrp-id'
			--nvmset-id=':NVM Set Identifier'
			-i':alias of --nvmset-id'
			--endg-id=':Endurance Group Identifier'
			-e':alias of --endg-id'
			--block-size=':target block size'
			-b':alias of --block-size'
			--timeout=':value for timeout'
			-t':alias of --timeout'
			--csi=':command set identifier'
			-y':alias of --csi'
			--lbstm=':logical block storage tag mask'
			-l':alias of --lbstm'
			--nsze-si=':size of ns (NSZE) in standard SI units'
			-S':alias of --nsze-si'
			--ncap-si=':capacity of ns (NCAP) in standard SI units'
			-C':alias of --ncap-si'
			--azr=':Allocate ZRWA Resources (AZR) for Zoned Namespace Command Set'
			-z':alias of --azr'
			--rar=':Requested Active Resources (RAR) for Zoned Namespace Command Set'
			-r':alias of --rar'
			--ror=':Requested Open Resources (ROR) for Zoned Namespace Command Set'
			-O':alias of --ror'
			--rnumzrwa=':Requested Number of ZRWA Resources (RNUMZRWA) for Zoned Namespace Command Set'
			-u':alias of --rnumzrwa'
			--phndls=':Comma separated list of Placement Handle Associated RUH'
			-p':alias of --phndls'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme create-ns options" _createns
			;;
		(delete-ns)
			local _deletens
			_deletens=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':namespace to delete'
			-n':alias of --namespace-id'
			--timeout=':value for timeout'
			-t':alias of --timeout'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme delete-ns options" _deletens
			;;
		(attach-ns)
			local _attachns
			_attachns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':namespace to attach to the controller'
			-n':alias of --namespace-id'
			--controllers=':if a device is not provided, supply a comma-sep list of controllers'
			-c':alias of --controllers'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme attach-ns options" _attachns
			;;
		(detach-ns)
			local _detachns
			_detachns=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':namespace to detach from controller'
			-n':alias of --namespace-id'
			--controllers=':if a device is not provided, supply a comma-sep list of controllers'
			-c':alias of --controllers'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme detach-ns options" _detachns
			;;
		(list-ctrl)
			local _listctrl
			_listctrl=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show controllers attached to this namespace'
			-n':alias of --namespace-id'
			--cntid=':start the list with this controller'
			-c':alias of --cntid'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme list-ctrl options" _listctrl
			;;
		(get-ns-id)
			local _getnsid
			_getnsid=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme get-ns-id options" _getnsid
			;;
		(get-log)
			local _getlog
			_getlog=(
			/dev/nvme':supply a device to use (required)'
			--log-id=':requested log number'
			-i':alias of --log-id'
			--log-len=':number of bytes to show for requested log'
			-l':alias of --log-len'
			--namespace-id=':get log specific to <nsid> if namespace logs are supported'
			-n':alias of --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			--aen=':result of the aen, use to override log id'
			-a':alias of --aen'
			--lpo=':log page offset specifies the location within a log page from where to start returning data'
			-L':alias of --lpo'
			--lsi=':log specific identifier specifies an identifier that is required for a particular log page'
			-S':alias of --lsi'
			--rae':Retain an Asynchronous Event'
			-r':alias of --rae'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			--csi=':command set identifier'
			-y':alias of --csi'
			--ot':offset type'
			-O':alias of --ot'
			--xfer-len=':read chunk size (default 4k)'
			-x':alias of --xfer-len'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme get-log options" _getlog
			;;
		(persistent-event-log)
			local _persistenteventlog
			_persistenteventlog=(
			/dev/nvme':supply a device to use (required)'
			--action=':action the controller shall take for this log page'
			-a':alias to --action'
			--log-len=':number of bytes to show for requested log'
			-l':alias of --log-len'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme persistent-event-log options" _persistenteventlog
			;;
		(telemetry-log)
			local _telemetry_log
			_telemetry_log=(
			/dev/nvme':supply a device to use (required)'
			--output-file=':telemetry data output write'
			-O':alias for --output-file'
			--host-generate=':Have the host tell the controller to generate the report'
			-g':alias to --host-generate'
			--controller-init':Gather report generated by the controller'
			-c':alias of --controller-init'
			--data-area':Pick which telemetry data area to report'
			-d':alias of --data-area'
			--data-area':Pick which telemetry data area to report'
			-d':alias of --data-area'
			--rae':Retain an Asynchronous Event'
			-r':alias to --rae'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme telemetry-log options" _telemetry_log
			;;
		(pred-lat-event-agg-log)
			local _predlateventagglog
			_predlateventagglog=(
			/dev/nvme':supply a device to use (required)'
			--log-entries=':Number of pending NVM Set Entries log list'
			-e':alias to --log-entries'
			--rae':Retain an Asynchronous Event'
			-r':alias to --rae'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme pred-lat-event-agg-log options" _predlateventagglog
			;;
		(predictable-lat-log)
			local _predictablelatlog
			_predictablelatlog=(
			/dev/nvme':supply a device to use (required)'
			--nvmset-id=':NVM Set Identifier on which log page retrieve info'
			-i':alias to --nvmset-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme predictable-lat-log options" _predictablelatlog
			;;
		(fw-log)
			local _fwlog
			_fwlog=(
			/dev/nvme':supply a device to use (required)'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme fw-log options" _fwlog
			;;
		(changed-ns-list-log)
			local _changed_ns_list_log
			_changed_ns_list_log=(
			/dev/nvme':supply a device to use (required)'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme changed-ns-list-log options" _changed_ns_list_log
			;;
		(smart-log)
			local _smartlog
			_smartlog=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':get SMART log specific to <nsid> if namespace logs are supported'
			-n':alias to --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias to --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme smart-log options" _smartlog
			;;
		(smart-log-add)
			local _add
			_add=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':get additional SMART log specific to <nsid> if namespace logs supported'
			-n':alias to --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias to --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme smart-log-add options" _add
			;;
		(ana-log)
			local _ana_log
			_ana_log=(
			/dev/nvme':supply a device to use (required)'
			--groups':Return ANA groups only'
			-g':alias to --groups'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme ana-log options" _ana_log
			;;
		(error-log)
			local _errlog
			_errlog=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':get log specific to <nsid> if namespace logs are supported'
			-n':alias to --namespace-id'
			--raw-binary':dump infos in binary format'
			-b':alias to --raw-binary'
			--log-entries=':request n >= 1 log entries'
			-e':alias to --log-entries'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme error-log options" _errlog
			;;
		(effects-log)
			local _effects_log
			_effects_log=(
			/dev/nvme':supply a device to use (required)'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			--raw-binary':dump infos in binary format'
			-b':alias to --raw-binary'
			--csi=':command set identifier'
			-c':alias of --csi'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme effects-log options" _effects_log
			;;
		(endurance-log)
			local _endurance_log
			_endurance_log=(
			/dev/nvme':supply a device to use (required)'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--group-id=':The endurance group identifier'
			-g':alias of --group-id'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme endurance-log options" _endurance_log
			;;
		(endurance-event-agg-log)
			local _enduranceeventagglog
			_enduranceeventagglog=(
			/dev/nvme':supply a device to use (required)'
			--log-entries=':Number of Endurance Group Event Agg Entries log list'
			-e':alias to --log-entries'
			--rae':Retain an Asynchronous Event'
			-r':alias to --rae'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme endurance-event-agg-log options" _enduranceeventagglog
			;;
		(lba-status-log)
			local _lbastatuslog
			_lbastatuslog=(
			/dev/nvme':supply a device to use (required)'
			--rae':Retain an Asynchronous Event'
			-r':alias to --rae'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme lba-status-log options" _lbastatuslog
			;;
		(resv-notif-log)
			local _resvnotiflog
			_resvnotiflog=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme resv-notif-log options" _resvnotiflog
			;;
		(boot-part-log)
			local _bootpartlog
			_bootpartlog=(
			/dev/nvme':supply a device to use (required)'
			--lsp=':log specific field'
			-s':alias to --lsp'
			--output-file=':boot partition data output write'
			-f':alias for --output-file'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme boot-part-log options" _bootpartlog
			;;
		(get-feature)
			local _getf
			_getf=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':get feature specific to <nsid>'
			-n':alias to --namespace-id'
			--feature-id=':hexadecimal name of feature to examine (required)'
			-f':alias to --feature-id'
			--sel=':select from 0 - current, 1 - default, 2 - saved, 3 - supported'
			-s':alias to --sel'
			--data-len=':buffer len for returned LBA Type Range or host identifier data'
			-l':alias for --data-len'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			--cdw11=':dword 11 value, used for interrupt vector configuration only'
			--raw-binary':dump infos in binary format'
			-b':alias to --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme get-feature options" _getf
			;;
		(device-self-test)
			local _device_self_test
			_device_self_test=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':Indicate the namespace in which the device self-test has to be carried out'
			-n':alias to --namespace-id'
			--self-test-code=':This field specifies the action taken by the device self-test command'
			-s':alias for --self-test-code'
			--wait':Wait for the test to finish'
			-w':alias to --wait'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme device-self-test options" _device_self_test
			;;
		(self-test-log)
			local _self_test_log
			_self_test_log=(
			/dev/nvme':supply a device to use (required)'
			--dst-entries=':Indicate how many DST log entries to be retrieved'
			-e':alias to --dst-entries'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme self-test-log options" _self_test_log
			;;
		(lockdown)
			local _lockdown
			_lockdown=(
			/dev/nvme':supply a device to use (required)'
			--ofi=':Opcode or Feature Identifier(OFI) (required)'
			-O':alias of --ofi'
			--ifc=':Interface (INF) field Information (required)'
			-f':alias of --ifc'
			--prhbt=':Prohibit(PRHBT) bit field (required)'
			-p':alias of --prhbt'
			--scp=':Scope(SCP) field for identifying opcode or feature id (required)'
			-s':alias of --scp'
			--uuid=':UUID Index field required aligned with Scope'
			-U':alias of --uuid'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme lockdown options" _lockdown
			;;
		(set-feature)
			local _setf
			_setf=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':feature is specific to <nsid>'
			-n':alias to --namespace-id'
			--feature-id=':hexadecimal name of feature to set (required)'
			-f':alias to --feature-id'
			--data-len=':buffer length, only used for LBA Type Range or host identifier data'
			-l':alias for --data-len'
			--data=':data file for LBA Type Range or host identifier buffer (defaults to stdin)'
			-d':alias to --data'
			--value=':new value of feature (required)'
			-V'alias to --value'
			--uuid-index=':uuid index'
			-U':alias for --uuid-index'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme set-feature options" _setf
			;;
		(set-property)
			local _set_property
			_set_property=(
			/dev/nvme':supply a device to use (required)'
			--offset=':the offset of the property'
			-O':alias to --offset'
			--value=':the value of the property to be set'
			-V':alias to --value'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme set-property options" _set_property
			;;
		(get-property)
			local _get_property
			_get_property=(
			/dev/nvme':supply a device to use (required)'
			--offset=':the offset of the property'
			-O':alias to --offset'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme get-property options" _get_property
			;;
		(format)
			local _format
			_format=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':<nsid> of namespace to format (required)'
			-n':alias of --namespace-id'
			--timeout=':value for timeout'
			-t':alias of --timeout'
			--lbaf=':LBA format to apply to namespace (required)'
			-l':alias of --lbaf'
			--ses=':secure erase? 0 - no-op (default), 1 - user-data erase, 2 - cryptographic erase'
			-s':alias of --ses'
			--pil=':location of protection information? 0 - end, 1 - start'
			-p':alias of --pil'
			--pi=':protection information? 0 - off, 1 - Type 1 on, 2 - Type 2 on, 3 - Type 3 on'
			-i':alias of --pi'
			--ms=':extended format? 0 - off (metadata in separate buffer), 1 - on (extended LBA used)'
			-m':alias of --ms'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme format options" _format
			;;
		(fw-activate)
			local _fwact
			_fwact=(
			/dev/nvme':supply a device to use (required)'
			--action=':activation action (required)? 0 - replace fw without activating, 1 - replace with activation, 2 - replace with activation at next reset'
			-a':alias of --action'
			--slot=':firmware slot to activate'
			-s':alias of --slot'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme fw-activate options" _fwact
			;;
		(fw-download)
			local _fwd
			_fwd=(
			/dev/nvme':supply a device to use (required)'
			--fw=':firmware file to download (required)'
			-f':alias of --fw'
			--xfer=':limit on chunk-size of transfer (if device has download size limit)'
			-x':alias of --xfer'
			--offset=':starting offset, in dwords (defaults to 0, only useful if download is split across multiple files)'
			-O':alias of --offset'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme fw-download options" _fwd
			;;
		(capacity-mgmt)
			local _fwd
			_fwd=(
			/dev/nvme':supply a device to use (required)'
			--operation=':Operation to be performed by the controller'
			-O':alias of --operation'
			--element-id=':specific to the value of the Operation field'
			-i':alias of --element-id'
			--cap-lower=':Least significant 32 bits of the capacity in bytes'
			-l':alias of --cap-lower'
			--cap-upper=':Most significant 32 bits of the capacity in bytes'
			-u':alias of --cap-upper'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme capacity-mgmt options" _fwd
			;;
		(write-zeroes)
			local _write_zeroes
			_write_zeroes=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--start-block=':64-bit address of the first logical block to be written'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to write'
			-c':alias of --block-count'
			--dir-type=':directive type'
			-T':alias of --dir-type'
			--deac':Set DEAC bit, requesting controller to deallocate specified logical blocks'
			-d':alias of --deac'
			--limited-retry':if included, controller should try less hard to send data to media (if not included, all available data-recovery means used)'
			-l':alias of --limited-retry'
			--force-unit-access':data shall be written to nonvolatile media before command completion is indicated'
			-f':alias of --force-unit-access'
			--prinfo=':protection information and check field'
			-p':alias of --prinfo'
			--ref-tag=':reference tag (for end to end PI)'
			-r':alias of --ref-tag'
			--app-tag-mask=':application tag mask (for end to end PI)'
			-m':alias of --app-tag-mask'
			--app-tag=':application tag (for end to end PI)'
			-a':alias of --app-tag'
			--storage-tag=':storage tag for end-to-end PI'
			-S':alias of --storage-tag'
			--storage-tag-check':Storage Tag field shall be checked as part of end-to-end data protection processing'
			-C':alias of --storage-tag-check'
			--dir-spec=':directive specific'
			-D':alias of --dir-spec'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme write-zeroes options" _write_zeroes
			;;
		(write-uncor)
			local _write_uncor
			_write_uncor=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--start-block=':64-bit address of the first logical block to be written'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to write'
			-c':alias of --block-count'
			--dir-type=':directive type'
			-T':alias of --dir-type'
			--dir-spec':directive specific'
			-S':alias of --dir-spec'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme write-uncor options" _write_uncor
			;;
		(verify)
			local _verify
			_verify=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--start-block=':64-bit address of the first logical block to be verified'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to verify'
			-c':alias of --block-count'
			--limited-retry':if included, controller should try less hard to send data to media (if not included, all available data-recovery means used)'
			-l':alias of --limited-retry'
			--force-unit-access':data shall be verified from nonvolatile media before command completion is indicated'
			-f':alias of --force-unit-access'
			--prinfo=':protection information and check field'
			-p':alias of --prinfo'
			--ref-tag=':reference tag (for end to end PI)'
			-r':alias of --ref-tag'
			--app-tag=':application tag (for end to end PI)'
			-a':alias of --app-tag'
			--app-tag-mask=':application tag mask (for end to end PI)'
			-m':alias of --app-tag-mask'
			--storage-tag=':storage tag for end-to-end PI'
			-S':alias of --storage-tag'
			--storage-tag-check':Storage Tag field shall be checked as part of end-to-end data protection processing'
			-C':alias of --storage-tag-check'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme verify options" _verify
			;;
		(sanitize)
			local _sanitize
			_sanitize=(
			/dev/nvme':supply a device to use (required)'
			--no-dealloc':No deallocate after sanitize'
			-d':alias of --no-dealloc'
			--oipbp':Overwrite invert pattern between passes'
			-i':alias of --oipbp'
			--owpass=':Overwrite pass count'
			-n':alias of --owpass'
			--ause':Allow unrestricted sanitize exit'
			-u':alias of --ause'
			--sanact=':Sanitize action: 1 = Exit failure mode, 2 = Start block erase, 3 = Start overwrite, 4 = Start crypto erase'
			-a':alias of --sanact'
			--ovrpat=':Overwrite pattern'
			-p':alias of --ovrpat'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme sanitize options" _sanitize
			;;
		(sanitize-log)
			local _sanitize_log
			_sanitize_log=(
			/dev/nvme':supply a device to use (required)'
			--rae':Retain an Asynchronous Event'
			-r':alias of --rae'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme sanitize-log options" _sanitize_log
			;;
		(reset)
			local _reset
			_reset=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme reset options" _reset
			;;
		(subsystem-reset)
			local _subsystem_reset
			_subsystem_reset=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme subsystem-reset options" _subsystem_reset
			;;
		(ns-rescan)
			local _ns_rescan
			_ns_rescan=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme ns-rescan options" _ns_rescan
			;;
		(supported-log-pages)
			local _support
			_support=(
			/dev/nvme':supply a device to use (required)'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme supported-log-pages options" _support
			;;
		(media-unit-stat-log)
			local _medialog
			_medialog=(
			/dev/nvme':supply a device to use (required)'
			--dom-id=':show infos for domain id'
			-d':alias of --dom-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme media-unit-stat-log" _medialog
			;;
		(supported-cap-config-log)
			local _caplog
			_caplog=(
			/dev/nvme':supply a device to use (required)'
			--dom-id=':show infos for domain id'
			-d':alias of --dom-id'
			--raw-binary':dump infos in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme supported-cap-config-log" _caplog
			;;
		(admin-passthru)
			local _admin
			_admin=(
			/dev/nvme':supply a device to use (required)'
			--opcode=':hexadecimal opcode to send (required)'
			-O':alias of --opcode'
			--flags=':command flags'
			-f':alias of --flags'
			--rsvd=':value for reserved field'
			-R':alias of --rsvd'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--metadata-len=':length for metadata buffer'
			-m':alias of --metadata-len'
			--timeout=':value for timeout'
			-t':alias of --timeout'
			--cdw2=':value for command dword 2'
			-2':alias for --cdw2'
			--cdw3=':value for command dword 3'
			-3':alias for --cdw3'
			--cdw10=':value for command dword 10'
			-4':alias for --cdw10'
			--cdw11=':value for command dword 11'
			-5':alias for --cdw11'
			--cdw12=':value for command dword 12'
			-6':alias for --cdw12'
			--cdw13=':value for command dword 13'
			-7':alias for --cdw13'
			--cdw14=':value for command dword 14'
			-8':alias for command dword 14'
			--cdw15=':value for command dword 15'
			-9':alias for command dword 15'
			--input-file=':defaults to stdin; input for write (send direction)'
			-i':alias for --input-file'
			--raw-binary':dump output in binary format'
			-b':alias for --raw-binary'
			--show-command':simply print command instead of sending it to <device>'
			-s':alias for --show-command'
			--dry-run':alias for --show-command'
			-d':alias for --show-command'
			--read':set dataflow direction to receive'
			-r':alias for --read'
			--write':set dataflow direction to send'
			-w':alias for --write'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme admin-passthru options" _admin
			;;
		(io-passthru)
			local _io
			_io=(
			/dev/nvme':supply a device to use (required)'
			--opcode=':hexadecimal opcode to send (required)'
			-O':alias of --opcode'
			--flags=':command flags'
			-f':alias of --flags'
			--rsvd=':value for reserved field'
			-R':alias of --rsvd'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--metadata-len=':length for metadata buffer'
			-m':alias of --metadata-len'
			--timeout=':value for timeout'
			-t':alias of --timeout'
			--cdw2=':value for command dword 2'
			-2':alias for --cdw2'
			--cdw3=':value for command dword 3'
			-3':alias for --cdw3'
			--cdw10=':value for command dword 10'
			-4':alias for --cdw10'
			--cdw11=':value for command dword 11'
			-5':alias for --cdw11'
			--cdw12=':value for command dword 12'
			-6':alias for --cdw12'
			--cdw13=':value for command dword 13'
			-7':alias for --cdw13'
			--cdw14=':value for command dword 14'
			-8':alias for command dword 14'
			--cdw15=':value for command dword 15'
			-9':alias for command dword 15'
			--input-file=':defaults to stdin; input for write (send direction)'
			-i':alias for --input-file'
			--raw-binary':dump output in binary format'
			-b':alias for --raw-binary'
			--show-command':simply print command instead of sending it to <device>'
			-s':alias for --show-command'
			--dry-run':alias for --show-command'
			-d':alias for --show-command'
			--read':set dataflow direction to receive'
			-r':alias for --read'
			--write':set dataflow direction to send'
			-w':alias for --write'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme io-passthru options" _io
			;;
		(security-send)
			local _ssend
			_ssend=(
			/dev/nvme':supply a device to use (required)'
			--file=':payload'
			-f':alias for --file'
			--secp=':security protocol as defined in SPC-4'
			-p':alias for --secp'
			--spsp=':send security-protocol-specific data as defined in SPC-4'
			-s':alias for --spsp'
			--tl=':transfer length as defined in SPC-4'
			-t':alias for --tl'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme security-send options" _ssend
			;;
		(security-recv)
			local _srecv
			_srecv=(
			/dev/nvme':supply a device to use (required)'
			--secp=':security protocol as defined in SPC-4'
			-p':alias for --secp'
			--spsp=':send security-protocol-specific data as defined in SPC-4'
			-s':alias for --spsp'
			--size=':size of buffer (prints to stdout on successful recv)'
			-x':alias for --size'
			--al=':allocation length as defined in SPC-4'
			-a':alias for --al'
			--raw-binary':dump output in binary format'
			-b':alias for --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme security-recv options" _srecv
			;;
		(get-lba-status)
			local _get_lba_status
			_get_lba_status=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':show infos for namespace <nsid>'
			-n':alias of --namespace-id'
			--start-lba=':Starting LBA(SLBA) in 64-bit address of the first logical block'
			-s':alias for --start-lba'
			--max-dw=':Maximum Number of Dwords(MNDW) specifies maximum number of dwords to return'
			-m':alias for --max-dw'
			--action=':Action Type(ATYPE) specifies the mechanism'
			-a':alias for --action'
			--range-len=':Range Length(RL) specifies the length of the range of contiguous LBAs beginning at SLBA'
			-l':alias for --range-len'
			--timeout':value for timeout'
			-t':alias for --timeout'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme get-lba-status options" _get_lba_status
			;;
		(resv-acquire)
			local _acq
			_acq=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':<nsid> of namespace to try to reserve (required)'
			-n':alias for --namespace-id'
			--prkey=':pre-empt reservation key'
			-p':alias for --prkey'
			--rtype=':hexadecimal reservation type'
			-t':alias for --rtype'
			--racqa=':reservation acquire action'
			-a':alias for --racqa'
			--iekey=':ignore existing reservation key'
			-i':alias for --iekey'
			--crkey':current reservation key'
			-c':alias for --crkey'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme resv-acquire options" _acq
			;;
		(resv-release)
			local _rel
			_rel=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':nsid'
			-n':alias of --namespace-id'
			--rtype=':hexadecimal reservation type'
			-t':alias of --rtype'
			--rrela=':reservation release action'
			-a':alias of --rrela'
			--iekey':ignore existing reservation key'
			-i':alias of --iekey'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme resv-release options" _rel
			;;
		(resv-report)
			local _rep
			_rep=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':nsid'
			-n':alias of --namespace-id'
			--numd=':number of dwords of reservation status to xfer'
			-d':alias of --numd'
			--eds':request extended data structure'
			-e':alias of --eds'
			--raw-binary':dump output in binary format'
			-b':alias of --raw-binary'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme resv-report options" _rep
			;;
		(resv-register)
			local _reg
			_reg=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':nsid'
			-n':alias of --namespace-id'
			--crkey=':current reservation key'
			-c'alias of --crkey'
			--nrkey=':new reservation key'
			-k':alias of --nrkey'
			--cptpl=':change persistence through power loss setting'
			-p':alias for --cptpl'
			--rrega=':reservation registration action to perform'
			-r':alias for --rrega'
			--iekey':ignore existing reservation key'
			-i':alias for --iekey'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme resv-register options" _reg
			;;
		(dsm)
			local _dsm
			_dsm=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--ctx-attrs=':Comma separated list of the context attributes in each range'
			-a':alias of --ctx-attrs'
			--blocks':Comma separated list of the number of blocks in each range'
			-b':alias of --blocks'
			--slbs':Comma separated list of the starting block in each range'
			-s':alias of --slbs'
			--ad':Attribute Deallocate'
			-d':alias of --ad'
			--idw':Attribute Integral Dataset for Write'
			-w':alias of --idw'
			--idr':Attribute Integral Dataset for Read'
			-r':alias of --idr'
			--cdw11=':value for command dword 11'
			-c':alias for --cdw11'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme dsm options" _dsm
			;;
		(copy)
			local _copy
			_copy=(
			/dev/nvme':supply a device to use (required)'
			--sdlba=':64-bit addr of first destination logical block'
			-d':alias of --sdlba'
			--slbs=':64-bit addr of first block per range (comma-separated list)'
			-s':alias of --slbs'
			--blocks=':number of blocks per range (comma-separated list, zeroes-based values)'
			-b':alias of --blocks'
			--limited-retry':if included, controller should try less hard to retrieve data from media (if not included, all available data recovery means used)'
			-l':alias of --limited-retry'
			--force-unit-access':if included, the data shall be read from non-volatile media'
			-f':alias of --force-unit access'
			--prinfow=':protection information and check field (write part)'
			-p':alias of --prinfow'
			--prinfor=':protection information and check field (read part)'
			-P':alias of --prinfor'
			--ref-tag=':initial lba reference tag (write part)'
			-r':alias of --ref-tag'
			--expected-ref-tags=':expected lba reference tags (read part, comma-separated list)'
			-R':alias of --expected-ref-tags'
			--app-tag=':lba application tag (write part)'
			-a':alias of --app-tag'
			--expected-app-tags=':expected lba application tags (read part, comma-separated list)'
			-A':alias of --expected-app-tags'
			--app-tag-mask=':lba application tag mask (write part)'
			-m':alias of --app-tag-mask'
			--expected-app-tag-masks=':expected lba application tag masks (read part, comma-separated list)'
			-M':alias of --expected-app-tag-masks'
			--dir-type=':directive type (write part)'
			-T':alias of --dir-type'
			--dir-spec=':directive specific (write part)'
			-S':alias of --dir-spec'
			--format=':source range entry format'
			-F':alias of --format'
			)
			_arguments '*:: :->subcmds'
                       _describe -t commands "nvme copy options" _copy
		       ;;
		(flush)
			local _flush
			_flush=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':nsid'
			-n':alias of --namespace-id'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme flush options" _flush
			;;
		(compare)
			local _comp
			_comp=(
			/dev/nvme':supply a device to use (required)'
			--start-block=':begin compare at this 64-bit LBA on device'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to compare to local data'
			-c':alias of --block-count'
			--metadata-size=':number of bytes of metadata to compare'
			-y':alias of --metadata-size'
			--data-size=':size of local data buffer in bytes'
			-z':alias of --data-size'
			--data=':local data file to compare to blocks on device'
			-d':alias of --data'
			--prinfo=':protection information action and check field'
			-p':alias of --prinfo'
			--app-tag-mask=':application tag mask (for end to end PI)'
			-m':alias of --app-tag-mask'
			--app-tag=':application tag (for end to end PI)'
			-a':alias of --app-tag'
			--limited-retry':if included, controller should try less hard to retrieve data from media (if not included, all available data recovery means used)'
			-l':alias of --limited-retry'
			--force-unit-access':if included, the data shall be read from non-volatile media'
			-f':alias of --force-unit access'
			--show-command':show command instead of sending to device'
			-V':alias of --show-command'
			--dry-run':show command instead of sending to device'
			-w':alias of --show-command'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme compare options" _comp
			;;
		(read)
			local _read
			_read=(
			/dev/nvme':supply a device to use (required)'
			--start-block=':64-bit address of the first logical block to be read'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to read'
			-c':alias of --block-count'
			--data-size=':size of data to be read'
			-z':alias of --data-size'
			--metadata-size=':size of metadata to be read'
			-y':alias of --metadata-size'
			--ref-tag=':reference tag (for end to end PI)'
			-r':alias of --ref-tag'
			--data=':file into which data should be read (defaults to stdout)'
			-d':alias of --data'
			--prinfo=':protection information and check field'
			-p':alias of --prinfo'
			--app-tag-mask=':application tag mask (for end to end PI)'
			-m':alias of --app-tag-mask'
			--app-tag=':application tag (for end to end PI)'
			-a':alias of --app-tag'
			--limited-retry':if included, controller should try less hard to retrieve data from media (if not included, all available data-recovery means used)'
			-l':alias of --limited-retry'
			--latency':latency statistics will be output following read'
			-t':alias of --latency'
			--force-unit-access':data read shall be returned from nonvolatile media before command completion is indicated'
			-f':alias of --force-unit-access'
			--show-command':show command instead of sending to device'
			-V':alias of --show-command'
			--dry-run':show command instead of sending to device'
			-w':alias of --show-command'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme read options" _read
			;;
		(write)
			local _wr
			_wr=(
			/dev/nvme':supply a device to use (required)'
			--start-block=':64-bit address of the first logical block to be written'
			-s':alias of --start-block'
			--block-count=':number of logical blocks on device to write'
			-c':alias of --block-count'
			--data-size=':size of data to be written'
			-z':alias of --data-size'
			--metadata-size=':size of metadata to be written'
			-y':alias of --metadata-size'
			--ref-tag=':reference tag (for end to end PI)'
			-r':alias of --ref-tag'
			--data=':file from which data should be written to device (defaults to stdin)'
			-d':alias of --data'
			--prinfo=':protection information and check field'
			-p':alias of --prinfo'
			--app-tag-mask=':application tag mask (for end to end PI)'
			-m':alias of --app-tag-mask'
			--app-tag=':application tag (for end to end PI)'
			-a':alias of --app-tag'
			--limited-retry':if included, controller should try less hard to send data to media (if not included, all available data-recovery means used)'
			-l':alias of --limited-retry'
			--latency':latency statistics will be output following write'
			-t':alias of --latency'
			--force-unit-access':data shall be written to nonvolatile media before command completion is indicated'
			-f':alias of --force-unit-access'
			--show-command':show command instead of sending to device'
			-V':alias of --show-command'
			--dry-run':show command instead of sending to device'
			-w':alias of --show-command'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme write options" _wr
			;;
		(show-regs)
			local _shor
			_shor=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme show-regs options" _shor
			;;
		(fid-support-effects-log)
			local _fidsupporteffectslog
			_fidsupporteffectslog=(
			/dev/nvme':supply a device to use (required)'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme fid-support-effects-log options" _fidsupporteffectslog
			;;
		(discover)
			local _discover
			_discover=(
			--device=':use existing discovery controller device'
			-d':alias for --device'
			--transport=':transport type'
			-t':alias for --transport'
			--nqn=':subsystem nqn'
			-n':alias for --nqn'
			--traddr=':transport address'
			-a':alias for --traddr'
			--trsvcid=':transport service id (e.g. IP port)'
			-s':alias for --trsvcid'
			--host-traddr=':host traddr (e.g. FC WWN's)'
			-w':alias for --host-traddr'
			--host-iface=':host interface (for tcp transport)'
			-f':alias for --host-iface'
			--hostnqn=':user-defined hostnqn'
			-q':alias for --hostnqn'
			--hostid=':user-defined hostid (if default not used)'
			-I':alias for --hostid'
			--dhchap-secret=':user-defined dhchap key (if default not used)'
			-S':alias for --dhchap-secret'
			--nr-io-queues=':number of io queues to use (default is core count)'
			-i':alias for --nr-io-queues'
			--nr-write-queues=':number of write queues to use (default 0)'
			-W':alias for --nr-write-queues'
			--nr-poll-queues=':number of poll queues to use (default 0)'
			-P':alias for --nr-poll-queues'
			--queue-size=':number of io queue elements to use (default 128)'
			-Q':alias for --queue-size'
			--keep-alive-tmo=':keep alive timeout period in seconds'
			-k':alias for --keep-alive-tmo'
			--reconnect-delay=':reconnect timeout period in seconds'
			-c':alias for --reconnect-delay'
			--ctrl-loss-tmo=':controller loss timeout period in seconds'
			-l':alias for --ctrl-loss-tmo'
			--tos=':type of service'
			-T':alias for --tos'
			--keyring=':Keyring for TLS key lookup'
			--tls_key=':TLS key to use'
			--duplicate-connect':allow duplicate connections between same transport host and subsystem port'
			-D':alias for --duplicate-connect'
			--disable-sqflow':disable controller sq flow control (default false)'
			-d':alias for --disable-sqflow'
			--hdr-digest':enable transport protocol header digest (TCP transport)'
			-g':alias for --hdr-digest'
			--data-digest':enable transport protocol data digest (TCP transport)'
			-G':alias for --data-digest'
			--tls':enable TLS'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--raw':save raw output to file'
			-r':alias of --raw'
			--persistent':'
			-p':alias for --'
			--quiet':'
			-S':alias for --'
			--config=':Use specified JSON configuration file or none to disable'
			-J':alias for --config'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			--dump-config':Dump configuration file to stdout'
			-O':alias for --dump-config'
			--force':Force persistent discovery controller creation'
			--nbft':Only look at NBFT tables'
			--no-nbft':Do not look at NBFT tables'
			--nbft-patch=':user-defined path for NBFT tables'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme discover options" _discover
			;;
		(connect-all)
			local _connect_all
			_connect_all=(
			--device=':use existing discovery controller device'
			-d':alias for --device'
			--transport=':transport type'
			-t':alias for --transport'
			--nqn=':subsystem nqn'
			-n':alias for --nqn'
			--traddr=':transport address'
			-a':alias for --traddr'
			--trsvcid=':transport service id (e.g. IP port)'
			-s':alias for --trsvcid'
			--host-traddr=':host traddr (e.g. FC WWN's)'
			-w':alias for --host-traddr'
			--host-iface=':host interface (for tcp transport)'
			-f':alias for --host-iface'
			--hostnqn=':user-defined hostnqn'
			-q':alias for --hostnqn'
			--hostid=':user-defined hostid (if default not used)'
			-I':alias for --hostid'
			--dhchap-secret=':user-defined dhchap key (if default not used)'
			-S':alias for --dhchap-secret'
			--nr-io-queues=':number of io queues to use (default is core count)'
			-i':alias for --nr-io-queues'
			--nr-write-queues=':number of write queues to use (default 0)'
			-W':alias for --nr-write-queues'
			--nr-poll-queues=':number of poll queues to use (default 0)'
			-P':alias for --nr-poll-queues'
			--queue-size=':number of io queue elements to use (default 128)'
			-Q':alias for --queue-size'
			--keep-alive-tmo=':keep alive timeout period in seconds'
			-k':alias for --keep-alive-tmo'
			--reconnect-delay=':reconnect timeout period in seconds'
			-c':alias for --reconnect-delay'
			--ctrl-loss-tmo=':controller loss timeout period in seconds'
			-l':alias for --ctrl-loss-tmo'
			--tos=':type of service'
			-T':alias for --tos'
			--keyring=':Keyring for TLS key lookup'
			--tls_key=':TLS key to use'
			--duplicate-connect':allow duplicate connections between same transport host and subsystem port'
			-D':alias for --duplicate-connect'
			--disable-sqflow':disable controller sq flow control (default false)'
			-d':alias for --disable-sqflow'
			--hdr-digest':enable transport protocol header digest (TCP transport)'
			-g':alias for --hdr-digest'
			--data-digest':enable transport protocol data digest (TCP transport)'
			-G':alias for --data-digest'
			--tls':enable TLS'
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--raw':save raw output to file'
			-r':alias of --raw'
			--persistent':'
			-p':alias for --'
			--quiet':'
			-S':alias for --'
			--config=':Use specified JSON configuration file or none to disable'
			-J':alias for --config'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			--dump-config':Dump configuration file to stdout'
			-O':alias for --dump-config'
			--force':Force persistent discovery controller creation'
			--nbft':Only look at NBFT tables'
			--no-nbft':Do not look at NBFT tables'
			--nbft-patch=':user-defined path for NBFT tables'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme connect-all options" _connect_all
			;;
		(connect)
			local _connect
			_connect=(
			--transport=':transport type'
			-t':alias for --transport'
			--nqn=':subsystem nqn'
			-n':alias for --nqn'
			--traddr=':transport address'
			-a':alias for --traddr'
			--trsvcid=':transport service id (e.g. IP port)'
			-s':alias for --trsvcid'
			--host-traddr=':host transport address'
			-w':alias for --host-traddr'
			--host-iface=':host interface (for tcp transport)'
			-f':alias for --host-iface'
			--hostnqn=':user-defined hostnqn'
			-q':alias for --hostnqn'
			--hostid=':user-defined hostid (if default not used)'
			-I':alias for --hostid'
			--dhchap-secret=':user-defined dhchap key (if default not used)'
			-S':alias for --dhchap-secret'
			--nr-io-queues=':number of io queues to use (default is core count)'
			-i':alias for --nr-io-queues'
			--nr-write-queues=':number of write queues to use (default 0)'
			-W':alias for --nr-write-queues'
			--nr-poll-queues=':number of poll queues to use (default 0)'
			-P':alias for --nr-poll-queues'
			--queue-size=':number of io queue elements to use (default 128)'
			-Q':alias for --queue-size'
			--keep-alive-tmo=':keep alive timeout period in seconds'
			-k':alias for --keep-alive-tmo'
			--reconnect-delay=':reconnect timeout period in seconds'
			-c':alias for --reconnect-delay'
			--ctrl-loss-tmo=':controller loss timeout period in seconds'
			-l':alias for --ctrl-loss-tmo'
			--tos=':type of service'
			-T':alias for --tos'
			--keyring=':Keyring for TLS key lookup'
			--tls_key=':TLS key to use'
			--duplicate-connect':allow duplicate connections between same transport host and subsystem port'
			-D':alias for --duplicate-connect'
			--disable-sqflow':disable controller sq flow control (default false)'
			-d':alias for --disable-sqflow'
			--hdr-digest':enable transport protocol header digest (TCP transport)'
			-g':alias for --hdr-digest'
			--data-digest':enable transport protocol data digest (TCP transport)'
			-G':alias for --data-digest'
			--tls':enable TLS'
			--dhchap-ctrl-secret=':user-defined dhchap controller key (for bi-directional authentication)'
			-C':alias for --dhchap-ctrl-secret'
			--config=':Use specified JSON configuration file or none to disable'
			-J':alias for --config'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			--dump-config':Dump configuration file to stdout'
			-O':alias for --dump-config'
			--output-format=':Output format: normal|json'
			-o':alias for --output-format'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme connect options" _connect
			;;
		(dim)
			local _dim
			_dim=(
			--nqn=':Comma-separated list of DC nqn'
			-n':alias for --nqn'
			--device=':Comma-separated list of DC nvme device handle'
			-d':alias for --device'
			--task=':The task to perform: register|deregister'
			-t':alias for --task'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme dim options" _dim
			;;
		(disconnect)
			local _disconnect
			_disconnect=(
			--nqn=':subsystem nqn'
			-n':alias for --nqn'
			--device=':nvme device handle'
			-d':alias for --device'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme disconnect options" _disconnect
			;;
		(disconnect-all)
			local _disconnect_all
			_disconnect_all=(
			--transport=':transport type'
			-r':alias for --transport'
			--verbose':Increase logging verbosity'
			-v':alias for --verbose'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme disconnect-all options" _disconnect_all
			;;
		(gen-hostnqn)
			local _gen_hostnqn
			_gen_hostnqn=(
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme gen-hostnqn options" _gen_hostnqn
			;;
		(show-hostnqn)
			local _show_hostnqn
			_show_hostnqn=(
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme show-hostnqn options" _show_hostnqn
			;;
		(dir-receive)
			local _dir_receive
			_dir_receive=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--raw-binary':dump output in binary format'
			-b':alias for --raw-binary'
			--dir-type=':directive type'
			-D':alias of --dir-type'
			--dir-spec=':directive specific'
			-S':alias of --dir-spec'
			--dir-oper=':directive operation'
			-O':alias of --dir-oper'
			--req-resource=':namespace stream requested'
			-r':alias of --req-resource'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme dir-receive options" _dir_receive
			;;
		(dir-send)
			local _dir_send
			_dir_send=(
			/dev/nvme':supply a device to use (required)'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--dir-type=':directive type'
			-D':alias of --dir-type'
			--target-dir=':target directive type to be enabled/disabled'
			-T':alias of --target-dir'
			--dir-spec=':directive specific'
			-S':alias of --dir-spec'
			--dir-oper=':directive operation'
			-O':alias of --dir-oper'
			--endir=':directive enable'
			-e':alias of --endir'
			--human-readable':show infos in readable format'
			-H':alias of --human-readable'
			--raw-binary':dump output in binary format'
			-b':alias for --raw-binary'
			--input-file=':write/send file (default stdin)'
			-i':alias of --input-file'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme dir-send options" _dir_send
			;;
		(virt-mgmt)
			local _virt_mgmt
			_virt_mgmt=(
			/dev/nvme':supply a device to use (required)'
			--cntlid=':Controller Identifier(CNTLID)'
			-c':alias of --cntlid'
			--rt=':Resource Type(RT): 0|1'
			-r':alias of --rt'
			--act=':Action(ACT): 1|7|8|9'
			-a':alias of --act'
			--nr=':Number of Controller Resources(NR)'
			-n':alias of --nr'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme virt-mgmt options" _virt_mgmt
			;;
		(rpmb)
			local _rpmb
			_rpmb=(
			/dev/nvme':supply a device to use (required)'
			--cmd=':RPMB action: info|program-key|read-counter|write-data|read-data|write-config|read-config'
			-c':alias of --cmd'
			--msgfile=':data file for read/write-data, read/write-config options'
			-f':alias of --msgfile'
			--keyfile=':key file that has authentication key to be used'
			-g':alias of --keyfile'
			--key=':key to be used for authentication'
			-k':alias of --key'
			--msg=':data to be written on write-data or write-config commands'
			-d':alias of --msg'
			--address=':Sector offset to read from or write to for an RPMB target, default 0'
			-o':alias of --address'
			--blocks=':Number of 512 blocks to read or write'
			-b':alias of --blocks'
			--target=':RPMB target - numerical value of 0 to 6, default 0'
			-t':alias of --target'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme rpmb options" _rpmb
			;;
		(show-topology)
			local _showtopology
			_showtopology=(
			--output-format=':Output format: normal|json|binary'
			-o':alias for --output-format'
			--verbose':show infos verbosely'
			-v':alias of --verbose'
			--ranking=':Ranking order: namespace|ctrl'
			-r':alias for --ranking'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme show-topology options" _showtopology
			;;
		(nvme-mi-recv)
			local _nvme_mi_recv
			_nvme_mi_recv=(
			--opcode=':NVMe-MI opcode to send'
			-O':alias of --opcode'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--nmimt':value for NVMe-MI message type'
			-m':alias of --nmimt'
			--nmd0':value for NVMe management request dword 0'
			-0':alias of --nmd0'
			--nmd1':value for NVMe management request dword 1'
			-1':alias of --nmd1'
			--input-file=':defaults to stdin; input for write (send direction)'
			-i':alias for --input-file'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme nvme-mi-recv options" _nvme_mi_recv
			;;
		(nvme-mi-send)
			local _nvme_mi_send
			_nvme_mi_send=(
			--opcode=':NVMe-MI opcode to send'
			-O':alias of --opcode'
			--namespace-id=':value for nsid'
			-n':alias of --namespace-id'
			--data-len=':length for data buffer'
			-l':alias of --data-len'
			--nmimt':value for NVMe-MI message type'
			-m':alias of --nmimt'
			--nmd0':value for NVMe management request dword 0'
			-0':alias of --nmd0'
			--nmd1':value for NVMe management request dword 1'
			-1':alias of --nmd1'
			--input-file=':defaults to stdin; input for write (send direction)'
			-i':alias for --input-file'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme nvme-mi-send options" _nvme_mi_send
			;;
		(version)
			local _version
			_version=(
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme version options" _version
			;;
		(ocp)
			local _ocp
			_ocp=(
			smart-add-log':Retrieve extended SMART Information'
			latency-monitor-log':Get Latency Monitor Log Page'
			set-latency-monitor-feature':Set Latency Monitor feature'
			internal-log':Retrieve and save internal device telemetry log'
			clear-fw-activate-history':Clear firmware update history log"'
			eol-plp-failure-mode':Define EOL or PLP circuitry failure mode'
			clear-pcie-correctable-error-counters':Clear PCIe correctable error counters'
			vs-fw-activate-history':Get firmware activation history log'
			device-capability-log':Get Device capability log'
			set-dssd-power-state-feature':Set DSSD Power State'
			telemetry-string-log':Retrieve Telemetry string Log Page'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme ocp options" _ocp
			;;
		(solidigm)
			local _solidigm
			_solidigm=(
			id-ctrl':Send NVMe Identify Controller'
			smart-log-add':Retrieve Solidigm SMART Log'
			vs-smart-add-log':Get SMART / health extended log (redirects to ocp plug-in)'
			vs-internal-log':Retrieve Debug log binaries'
			garbage-collect-log':Retrieve Garbage Collection Log'
			market-log':Retrieve Market Log'
			latency-tracking-log':Enable/Retrieve Latency tracking Log'
			parse-telemetry-log':Parse Telemetry Log binary'
			clear-pcie-correctable-errors':Clear PCIe Correctable Error Counters (redirects to ocp plug-in)'
			clear-fw-activate-history':Clear firmware update history log (redirects to ocp plug-in)'
			vs-fw-activate-history':Get firmware activation history log (redirects to ocp plug-in)'
			log-page-directory':Retrieve log page directory'
			temp-stats':Retrieve Temperature Statistics log'
			vs-drive-info':Retrieve drive information'
			cloud-SSDplugin-version':Prints plug-in OCP version'
			version':Shows the program version'
			help':Display this help'
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "nvme solidigm options" _solidigm
			;;
		(help)
			local _h
			_h=( id-ctrl id-ns list-ns id-iocs create-ns delete-ns attach-ns detach-ns
			     list-ctrl get-ns-id get-log fw-log smart-log error-log get-feature
			     set-feature format fw-activate fw-download admin-passthru io-passthru
			     security-send security-recv resv-acquire resv-register resv-release
			     resv-report flush compare read write copy show-regs persistent-event-log
			     pred-lat-event-agg-log nvm-id-ctrl endurance-event-agg-log lba-status-log
			     resv-notif-log capacity-mgmt id-domain boot-part-log fid-support-effects-log
			     supported-log-pages lockdown media-unit-stat-log id-ns-lba-format nvm-id-ns
			     nvm-id-ns-lba-format supported-cap-config-log show-topology
			     list list-subsys id-ns-granularity primary-ctrl-caps list-secondary ns-descs
			     id-nvmset id-uuid list-endgrp telemetry-log changed-ns-list-log ana-log
			     effects-log endurance-log device-self-test self-test-log set-property
			     get-property write-zeroes write-uncor verify sanitize sanitize-log reset
			     subsystem-reset ns-rescan get-lba-status dsm discover connect-all connect
			     dim disconnect disconnect-all gen-hostnqn show-hostnqn dir-receive dir-send
			     virt-mgmt rpmb version ocp solidigm
			)
			_arguments '*:: :->subcmds'
			_describe -t commands "help: infos on a specific nvme command, or provide no option to see a synopsis of all nvme commands" _h
			;;
		(*)
			_files
			;;
		esac
		return
	fi

	_files
}