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
|
.TH "libnvme" 9 "enum nvme_status_field" "April 2025" "API Manual" LINUX
.SH NAME
enum nvme_status_field \- Defines all parts of the nvme status field: status code, status code type, and additional flags.
.SH SYNOPSIS
enum nvme_status_field {
.br
.BI " NVME_SCT_GENERIC"
,
.br
.br
.BI " NVME_SCT_CMD_SPECIFIC"
,
.br
.br
.BI " NVME_SCT_MEDIA"
,
.br
.br
.BI " NVME_SCT_PATH"
,
.br
.br
.BI " NVME_SCT_VS"
,
.br
.br
.BI " NVME_SCT_MASK"
,
.br
.br
.BI " NVME_SCT_SHIFT"
,
.br
.br
.BI " NVME_SC_MASK"
,
.br
.br
.BI " NVME_SC_SHIFT"
,
.br
.br
.BI " NVME_SC_SUCCESS"
,
.br
.br
.BI " NVME_SC_INVALID_OPCODE"
,
.br
.br
.BI " NVME_SC_INVALID_FIELD"
,
.br
.br
.BI " NVME_SC_CMDID_CONFLICT"
,
.br
.br
.BI " NVME_SC_DATA_XFER_ERROR"
,
.br
.br
.BI " NVME_SC_POWER_LOSS"
,
.br
.br
.BI " NVME_SC_INTERNAL"
,
.br
.br
.BI " NVME_SC_ABORT_REQ"
,
.br
.br
.BI " NVME_SC_ABORT_QUEUE"
,
.br
.br
.BI " NVME_SC_FUSED_FAIL"
,
.br
.br
.BI " NVME_SC_FUSED_MISSING"
,
.br
.br
.BI " NVME_SC_INVALID_NS"
,
.br
.br
.BI " NVME_SC_CMD_SEQ_ERROR"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_LAST"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_COUNT"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_DATA"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_METADATA"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_TYPE"
,
.br
.br
.BI " NVME_SC_CMB_INVALID_USE"
,
.br
.br
.BI " NVME_SC_PRP_INVALID_OFFSET"
,
.br
.br
.BI " NVME_SC_AWU_EXCEEDED"
,
.br
.br
.BI " NVME_SC_OP_DENIED"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_OFFSET"
,
.br
.br
.BI " NVME_SC_HOSTID_FORMAT"
,
.br
.br
.BI " NVME_SC_KAT_EXPIRED"
,
.br
.br
.BI " NVME_SC_KAT_INVALID"
,
.br
.br
.BI " NVME_SC_CMD_ABORTED_PREMEPT"
,
.br
.br
.BI " NVME_SC_SANITIZE_FAILED"
,
.br
.br
.BI " NVME_SC_SANITIZE_IN_PROGRESS"
,
.br
.br
.BI " NVME_SC_SGL_INVALID_GRANULARITY"
,
.br
.br
.BI " NVME_SC_CMD_IN_CMBQ_NOT_SUPP"
,
.br
.br
.BI " NVME_SC_NS_WRITE_PROTECTED"
,
.br
.br
.BI " NVME_SC_CMD_INTERRUPTED"
,
.br
.br
.BI " NVME_SC_TRAN_TPORT_ERROR"
,
.br
.br
.BI " NVME_SC_PROHIBITED_BY_CMD_AND_FEAT"
,
.br
.br
.BI " NVME_SC_ADMIN_CMD_MEDIA_NOT_READY"
,
.br
.br
.BI " NVME_SC_INVALID_KEY_TAG"
,
.br
.br
.BI " NVME_SC_HOST_DISPERSED_NS_NOT_ENABLED"
,
.br
.br
.BI " NVME_SC_HOST_ID_NOT_INITIALIZED"
,
.br
.br
.BI " NVME_SC_INCORRECT_KEY"
,
.br
.br
.BI " NVME_SC_FDP_DISABLED"
,
.br
.br
.BI " NVME_SC_INVALID_PLACEMENT_HANDLE_LIST"
,
.br
.br
.BI " NVME_SC_LBA_RANGE"
,
.br
.br
.BI " NVME_SC_CAP_EXCEEDED"
,
.br
.br
.BI " NVME_SC_NS_NOT_READY"
,
.br
.br
.BI " NVME_SC_RESERVATION_CONFLICT"
,
.br
.br
.BI " NVME_SC_FORMAT_IN_PROGRESS"
,
.br
.br
.BI " NVME_SC_INVALID_VALUE_SIZE"
,
.br
.br
.BI " NVME_SC_INVALID_KEY_SIZE"
,
.br
.br
.BI " NVME_SC_KV_KEY_NOT_EXISTS"
,
.br
.br
.BI " NVME_SC_UNRECOVERED_ERROR"
,
.br
.br
.BI " NVME_SC_KEY_EXISTS"
,
.br
.br
.BI " NVME_SC_CQ_INVALID"
,
.br
.br
.BI " NVME_SC_QID_INVALID"
,
.br
.br
.BI " NVME_SC_QUEUE_SIZE"
,
.br
.br
.BI " NVME_SC_ABORT_LIMIT"
,
.br
.br
.BI " NVME_SC_ABORT_MISSING"
,
.br
.br
.BI " NVME_SC_ASYNC_LIMIT"
,
.br
.br
.BI " NVME_SC_FIRMWARE_SLOT"
,
.br
.br
.BI " NVME_SC_FIRMWARE_IMAGE"
,
.br
.br
.BI " NVME_SC_INVALID_VECTOR"
,
.br
.br
.BI " NVME_SC_INVALID_LOG_PAGE"
,
.br
.br
.BI " NVME_SC_INVALID_FORMAT"
,
.br
.br
.BI " NVME_SC_FW_NEEDS_CONV_RESET"
,
.br
.br
.BI " NVME_SC_INVALID_QUEUE"
,
.br
.br
.BI " NVME_SC_FEATURE_NOT_SAVEABLE"
,
.br
.br
.BI " NVME_SC_FEATURE_NOT_CHANGEABLE"
,
.br
.br
.BI " NVME_SC_FEATURE_NOT_PER_NS"
,
.br
.br
.BI " NVME_SC_FW_NEEDS_SUBSYS_RESET"
,
.br
.br
.BI " NVME_SC_FW_NEEDS_RESET"
,
.br
.br
.BI " NVME_SC_FW_NEEDS_MAX_TIME"
,
.br
.br
.BI " NVME_SC_FW_ACTIVATE_PROHIBITED"
,
.br
.br
.BI " NVME_SC_OVERLAPPING_RANGE"
,
.br
.br
.BI " NVME_SC_NS_INSUFFICIENT_CAP"
,
.br
.br
.BI " NVME_SC_NS_ID_UNAVAILABLE"
,
.br
.br
.BI " NVME_SC_NS_ALREADY_ATTACHED"
,
.br
.br
.BI " NVME_SC_NS_IS_PRIVATE"
,
.br
.br
.BI " NVME_SC_NS_NOT_ATTACHED"
,
.br
.br
.BI " NVME_SC_THIN_PROV_NOT_SUPP"
,
.br
.br
.BI " NVME_SC_CTRL_LIST_INVALID"
,
.br
.br
.BI " NVME_SC_SELF_TEST_IN_PROGRESS"
,
.br
.br
.BI " NVME_SC_BP_WRITE_PROHIBITED"
,
.br
.br
.BI " NVME_SC_INVALID_CTRL_ID"
,
.br
.br
.BI " NVME_SC_INVALID_SEC_CTRL_STATE"
,
.br
.br
.BI " NVME_SC_INVALID_CTRL_RESOURCES"
,
.br
.br
.BI " NVME_SC_INVALID_RESOURCE_ID"
,
.br
.br
.BI " NVME_SC_PMR_SAN_PROHIBITED"
,
.br
.br
.BI " NVME_SC_ANA_GROUP_ID_INVALID"
,
.br
.br
.BI " NVME_SC_ANA_ATTACH_FAILED"
,
.br
.br
.BI " NVME_SC_INSUFFICIENT_CAP"
,
.br
.br
.BI " NVME_SC_NS_ATTACHMENT_LIMIT_EXCEEDED"
,
.br
.br
.BI " NVME_SC_PROHIBIT_CMD_EXEC_NOT_SUPPORTED"
,
.br
.br
.BI " NVME_SC_IOCS_NOT_SUPPORTED"
,
.br
.br
.BI " NVME_SC_IOCS_NOT_ENABLED"
,
.br
.br
.BI " NVME_SC_IOCS_COMBINATION_REJECTED"
,
.br
.br
.BI " NVME_SC_INVALID_IOCS"
,
.br
.br
.BI " NVME_SC_ID_UNAVAILABLE"
,
.br
.br
.BI " NVME_SC_INVALID_DISCOVERY_INFO"
,
.br
.br
.BI " NVME_SC_ZONING_DATA_STRUCT_LOCKED"
,
.br
.br
.BI " NVME_SC_ZONING_DATA_STRUCT_NOTFND"
,
.br
.br
.BI " NVME_SC_INSUFFICIENT_DISC_RES"
,
.br
.br
.BI " NVME_SC_REQSTD_FUNCTION_DISABLED"
,
.br
.br
.BI " NVME_SC_ZONEGRP_ORIGINATOR_INVLD"
,
.br
.br
.BI " NVME_SC_INVALID_CONTROLER_DATA_QUEUE"
,
.br
.br
.BI " NVME_SC_NOT_ENOUGH_RESOURCES"
,
.br
.br
.BI " NVME_SC_CONTROLLER_SUSPENDED"
,
.br
.br
.BI " NVME_SC_CONTROLLER_NOT_SUSPENDED"
,
.br
.br
.BI " NVME_SC_CONTROLLER_DATA_QUEUE_FULL"
,
.br
.br
.BI " NVME_SC_BAD_ATTRIBUTES"
,
.br
.br
.BI " NVME_SC_INVALID_PI"
,
.br
.br
.BI " NVME_SC_READ_ONLY"
,
.br
.br
.BI " NVME_SC_CMD_SIZE_LIMIT_EXCEEDED"
,
.br
.br
.BI " NVME_SC_INCOMPATIBLE_NS"
,
.br
.br
.BI " NVME_SC_FAST_COPY_NOT_POSSIBLE"
,
.br
.br
.BI " NVME_SC_OVERLAPPING_IO_RANGE"
,
.br
.br
.BI " NVME_SC_INSUFFICIENT_RESOURCES"
,
.br
.br
.BI " NVME_SC_CONNECT_FORMAT"
,
.br
.br
.BI " NVME_SC_CONNECT_CTRL_BUSY"
,
.br
.br
.BI " NVME_SC_CONNECT_INVALID_PARAM"
,
.br
.br
.BI " NVME_SC_CONNECT_RESTART_DISC"
,
.br
.br
.BI " NVME_SC_CONNECT_INVALID_HOST"
,
.br
.br
.BI " NVME_SC_DISCONNECT_INVALID_QTYPE"
,
.br
.br
.BI " NVME_SC_DISCOVERY_RESTART"
,
.br
.br
.BI " NVME_SC_AUTH_REQUIRED"
,
.br
.br
.BI " NVME_SC_ZNS_INVALID_OP_REQUEST"
,
.br
.br
.BI " NVME_SC_ZNS_ZRWA_RESOURCES_UNAVAILABLE"
,
.br
.br
.BI " NVME_SC_ZNS_BOUNDARY_ERROR"
,
.br
.br
.BI " NVME_SC_ZNS_FULL"
,
.br
.br
.BI " NVME_SC_ZNS_READ_ONLY"
,
.br
.br
.BI " NVME_SC_ZNS_OFFLINE"
,
.br
.br
.BI " NVME_SC_ZNS_INVALID_WRITE"
,
.br
.br
.BI " NVME_SC_ZNS_TOO_MANY_ACTIVE"
,
.br
.br
.BI " NVME_SC_ZNS_TOO_MANY_OPENS"
,
.br
.br
.BI " NVME_SC_ZNS_INVAL_TRANSITION"
,
.br
.br
.BI " NVME_SC_WRITE_FAULT"
,
.br
.br
.BI " NVME_SC_READ_ERROR"
,
.br
.br
.BI " NVME_SC_GUARD_CHECK"
,
.br
.br
.BI " NVME_SC_APPTAG_CHECK"
,
.br
.br
.BI " NVME_SC_REFTAG_CHECK"
,
.br
.br
.BI " NVME_SC_COMPARE_FAILED"
,
.br
.br
.BI " NVME_SC_ACCESS_DENIED"
,
.br
.br
.BI " NVME_SC_UNWRITTEN_BLOCK"
,
.br
.br
.BI " NVME_SC_STORAGE_TAG_CHECK"
,
.br
.br
.BI " NVME_SC_ANA_INTERNAL_PATH_ERROR"
,
.br
.br
.BI " NVME_SC_ANA_PERSISTENT_LOSS"
,
.br
.br
.BI " NVME_SC_ANA_INACCESSIBLE"
,
.br
.br
.BI " NVME_SC_ANA_TRANSITION"
,
.br
.br
.BI " NVME_SC_CTRL_PATH_ERROR"
,
.br
.br
.BI " NVME_SC_HOST_PATH_ERROR"
,
.br
.br
.BI " NVME_SC_CMD_ABORTED_BY_HOST"
,
.br
.br
.BI " NVME_SC_CRD"
,
.br
.br
.BI " NVME_SC_MORE"
,
.br
.br
.BI " NVME_SC_DNR"
};
.SH Constants
.IP "NVME_SCT_GENERIC" 12
Generic errors applicable to multiple opcodes
.IP "NVME_SCT_CMD_SPECIFIC" 12
Errors associated to a specific opcode
.IP "NVME_SCT_MEDIA" 12
Errors associated with media and data integrity
.IP "NVME_SCT_PATH" 12
Errors associated with the paths connection
.IP "NVME_SCT_VS" 12
Vendor specific errors
.IP "NVME_SCT_MASK" 12
Mask to get the value of the Status Code Type
.IP "NVME_SCT_SHIFT" 12
Shift value to get the value of the Status
Code Type
.IP "NVME_SC_MASK" 12
Mask to get the value of the status code.
.IP "NVME_SC_SHIFT" 12
Shift value to get the value of the status
code.
.IP "NVME_SC_SUCCESS" 12
Successful Completion: The command
completed without error.
.IP "NVME_SC_INVALID_OPCODE" 12
Invalid Command Opcode: A reserved coded
value or an unsupported value in the
command opcode field.
.IP "NVME_SC_INVALID_FIELD" 12
Invalid Field in Command: A reserved
coded value or an unsupported value in a
defined field.
.IP "NVME_SC_CMDID_CONFLICT" 12
Command ID Conflict: The command
identifier is already in use.
.IP "NVME_SC_DATA_XFER_ERROR" 12
Data Transfer Error: Transferring the
data or metadata associated with a
command experienced an error.
.IP "NVME_SC_POWER_LOSS" 12
Commands Aborted due to Power Loss
Notification: Indicates that the command
was aborted due to a power loss
notification.
.IP "NVME_SC_INTERNAL" 12
Internal Error: The command was not
completed successfully due to an internal error.
.IP "NVME_SC_ABORT_REQ" 12
Command Abort Requested: The command was
aborted due to an Abort command being
received that specified the Submission
Queue Identifier and Command Identifier
of this command.
.IP "NVME_SC_ABORT_QUEUE" 12
Command Aborted due to SQ Deletion: The
command was aborted due to a Delete I/O
Submission Queue request received for the
Submission Queue to which the command was
submitted.
.IP "NVME_SC_FUSED_FAIL" 12
Command Aborted due to Failed Fused Command:
The command was aborted due to the other
command in a fused operation failing.
.IP "NVME_SC_FUSED_MISSING" 12
Aborted due to Missing Fused Command: The
fused command was aborted due to the
adjacent submission queue entry not
containing a fused command that is the
other command.
.IP "NVME_SC_INVALID_NS" 12
Invalid Namespace or Format: The
namespace or the format of that namespace
is invalid.
.IP "NVME_SC_CMD_SEQ_ERROR" 12
Command Sequence Error: The command was
aborted due to a protocol violation in a
multi-command sequence.
.IP "NVME_SC_SGL_INVALID_LAST" 12
Invalid SGL Segment Descriptor: The
command includes an invalid SGL Last
Segment or SGL Segment descriptor.
.IP "NVME_SC_SGL_INVALID_COUNT" 12
Invalid Number of SGL Descriptors: There
is an SGL Last Segment descriptor or an
SGL Segment descriptor in a location
other than the last descriptor of a
segment based on the length indicated.
.IP "NVME_SC_SGL_INVALID_DATA" 12
Data SGL Length Invalid: This may occur
if the length of a Data SGL is too short.
This may occur if the length of a Data
SGL is too long and the controller does
not support SGL transfers longer than the
amount of data to be transferred as
indicated in the SGL Support field of the
Identify Controller data structure.
.IP "NVME_SC_SGL_INVALID_METADATA" 12
Metadata SGL Length Invalid: This may
occur if the length of a Metadata SGL is
too short. This may occur if the length
of a Metadata SGL is too long and the
controller does not support SGL transfers
longer than the amount of data to be
transferred as indicated in the SGL
Support field of the Identify Controller
data structure.
.IP "NVME_SC_SGL_INVALID_TYPE" 12
SGL Descriptor Type Invalid: The type of
an SGL Descriptor is a type that is not
supported by the controller.
.IP "NVME_SC_CMB_INVALID_USE" 12
Invalid Use of Controller Memory Buffer:
The attempted use of the Controller
Memory Buffer is not supported by the
controller.
.IP "NVME_SC_PRP_INVALID_OFFSET" 12
PRP Offset Invalid: The Offset field for
a PRP entry is invalid.
.IP "NVME_SC_AWU_EXCEEDED" 12
Atomic Write Unit Exceeded: The length
specified exceeds the atomic write unit size.
.IP "NVME_SC_OP_DENIED" 12
Operation Denied: The command was denied
due to lack of access rights. Refer to
the appropriate security specification.
.IP "NVME_SC_SGL_INVALID_OFFSET" 12
SGL Offset Invalid: The offset specified
in a descriptor is invalid. This may
occur when using capsules for data
transfers in NVMe over Fabrics
implementations and an invalid offset in
the capsule is specified.
.IP "NVME_SC_HOSTID_FORMAT" 12
Host Identifier Inconsistent Format: The
NVM subsystem detected the simultaneous
use of 64- bit and 128-bit Host
Identifier values on different
controllers.
.IP "NVME_SC_KAT_EXPIRED" 12
Keep Alive Timer Expired: The Keep Alive
Timer expired.
.IP "NVME_SC_KAT_INVALID" 12
Keep Alive Timeout Invalid: The Keep
Alive Timeout value specified is invalid.
.IP "NVME_SC_CMD_ABORTED_PREMEPT" 12
Command Aborted due to Preempt and Abort:
The command was aborted due to a
Reservation Acquire command.
.IP "NVME_SC_SANITIZE_FAILED" 12
Sanitize Failed: The most recent sanitize
operation failed and no recovery action
has been successfully completed.
.IP "NVME_SC_SANITIZE_IN_PROGRESS" 12
Sanitize In Progress: The requested
function (e.g., command) is prohibited
while a sanitize operation is in
progress.
.IP "NVME_SC_SGL_INVALID_GRANULARITY" 12
SGL Data Block Granularity Invalid: The
Address alignment or Length granularity
for an SGL Data Block descriptor is
invalid.
.IP "NVME_SC_CMD_IN_CMBQ_NOT_SUPP" 12
Command Not Supported for Queue in CMB:
The implementation does not support
submission of the command to a Submission
Queue in the Controller Memory Buffer or
command completion to a Completion Queue
in the Controller Memory Buffer.
.IP "NVME_SC_NS_WRITE_PROTECTED" 12
Namespace is Write Protected: The command
is prohibited while the namespace is
write protected as a result of a change
in the namespace write protection state
as defined by the Namespace Write
Protection State Machine.
.IP "NVME_SC_CMD_INTERRUPTED" 12
Command Interrupted: Command processing
was interrupted and the controller is
unable to successfully complete the
command. The host should retry the
command.
.IP "NVME_SC_TRAN_TPORT_ERROR" 12
Transient Transport Error: A transient
transport error was detected. If the
command is retried on the same
controller, the command is likely to
succeed. A command that fails with a
transient transport error four or more
times should be treated as a persistent
transport error that is not likely to
succeed if retried on the same
controller.
.IP "NVME_SC_PROHIBITED_BY_CMD_AND_FEAT" 12
Command Prohibited by Command and Feature
Lockdown: The command was aborted due to
command execution being prohibited by
the Command and Feature Lockdown.
.IP "NVME_SC_ADMIN_CMD_MEDIA_NOT_READY" 12
Admin Command Media Not Ready: The Admin
command requires access to media and
the media is not ready.
.IP "NVME_SC_INVALID_KEY_TAG" 12
The command was aborted due to an invalid KEYTAG
field value.
.IP "NVME_SC_HOST_DISPERSED_NS_NOT_ENABLED" 12
The command is prohibited while the
Host Disperesed Namespace Support (HDISNS) field is not
set to 1h in the Host Behavior Support feature.
.IP "NVME_SC_HOST_ID_NOT_INITIALIZED" 12
Host Identifier Not Initialized.
.IP "NVME_SC_INCORRECT_KEY" 12
The command was aborted due to the key associated
with the KEYTAG field being incorrect.
.IP "NVME_SC_FDP_DISABLED" 12
Command is not allowed when
Flexible Data Placement is disabled.
.IP "NVME_SC_INVALID_PLACEMENT_HANDLE_LIST" 12
The Placement Handle List is invalid
due to invalid Reclaim Unit Handle Identifier or
valid Reclaim Unit Handle Identifier but restricted or
the Placement Handle List number of entries exceeded the
maximum number allowed.
.IP "NVME_SC_LBA_RANGE" 12
LBA Out of Range: The command references
an LBA that exceeds the size of the namespace.
.IP "NVME_SC_CAP_EXCEEDED" 12
Capacity Exceeded: Execution of the
command has caused the capacity of the
namespace to be exceeded.
.IP "NVME_SC_NS_NOT_READY" 12
Namespace Not Ready: The namespace is not
ready to be accessed as a result of a
condition other than a condition that is
reported as an Asymmetric Namespace
Access condition.
.IP "NVME_SC_RESERVATION_CONFLICT" 12
Reservation Conflict: The command was
aborted due to a conflict with a
reservation held on the accessed
namespace.
.IP "NVME_SC_FORMAT_IN_PROGRESS" 12
Format In Progress: A Format NVM command
is in progress on the namespace.
.IP "NVME_SC_INVALID_VALUE_SIZE" 12
The value size is not valid.
.IP "NVME_SC_INVALID_KEY_SIZE" 12
The KV key size is not valid.
.IP "NVME_SC_KV_KEY_NOT_EXISTS" 12
The Store If Key Exists (SIKE) bit is set to
'1' in the Store Option field and the KV key does not
exists.
.IP "NVME_SC_UNRECOVERED_ERROR" 12
There was an unrecovered error when reading
from the meidum.
.IP "NVME_SC_KEY_EXISTS" 12
The Store If No Key Exists (SINKE) bit is set to '1'
in the Store Option field and the KV key exists.
.IP "NVME_SC_CQ_INVALID" 12
Completion Queue Invalid: The Completion
Queue identifier specified in the command
does not exist.
.IP "NVME_SC_QID_INVALID" 12
Invalid Queue Identifier: The creation of
the I/O Completion Queue failed due to an
invalid queue identifier specified as
part of the command. An invalid queue
identifier is one that is currently in
use or one that is outside the range
supported by the controller.
.IP "NVME_SC_QUEUE_SIZE" 12
Invalid Queue Size: The host attempted to
create an I/O Completion Queue with an
invalid number of entries.
.IP "NVME_SC_ABORT_LIMIT" 12
Abort Command Limit Exceeded: The number
of concurrently outstanding Abort commands
has exceeded the limit indicated in the
Identify Controller data structure.
.IP "NVME_SC_ABORT_MISSING" 12
Abort Command is missing: The abort
command is missing.
.IP "NVME_SC_ASYNC_LIMIT" 12
Asynchronous Event Request Limit
Exceeded: The number of concurrently
outstanding Asynchronous Event Request
commands has been exceeded.
.IP "NVME_SC_FIRMWARE_SLOT" 12
Invalid Firmware Slot: The firmware slot
indicated is invalid or read only. This
error is indicated if the firmware slot
exceeds the number supported.
.IP "NVME_SC_FIRMWARE_IMAGE" 12
Invalid Firmware Image: The firmware
image specified for activation is invalid
and not loaded by the controller.
.IP "NVME_SC_INVALID_VECTOR" 12
Invalid Interrupt Vector: The creation of
the I/O Completion Queue failed due to an
invalid interrupt vector specified as
part of the command.
.IP "NVME_SC_INVALID_LOG_PAGE" 12
Invalid Log Page: The log page indicated
is invalid. This error condition is also
returned if a reserved log page is
requested.
.IP "NVME_SC_INVALID_FORMAT" 12
Invalid Format: The LBA Format specified
is not supported.
.IP "NVME_SC_FW_NEEDS_CONV_RESET" 12
Firmware Activation Requires Conventional Reset:
The firmware commit was successful,
however, activation of the firmware image
requires a conventional reset.
.IP "NVME_SC_INVALID_QUEUE" 12
Invalid Queue Deletion: Invalid I/O
Completion Queue specified to delete.
.IP "NVME_SC_FEATURE_NOT_SAVEABLE" 12
Feature Identifier Not Saveable: The
Feature Identifier specified does not
support a saveable value.
.IP "NVME_SC_FEATURE_NOT_CHANGEABLE" 12
Feature Not Changeable: The Feature
Identifier is not able to be changed.
.IP "NVME_SC_FEATURE_NOT_PER_NS" 12
Feature Not Namespace Specific: The
Feature Identifier specified is not
namespace specific. The Feature
Identifier settings apply across all
namespaces.
.IP "NVME_SC_FW_NEEDS_SUBSYS_RESET" 12
Firmware Activation Requires NVM
Subsystem Reset: The firmware commit was
successful, however, activation of the
firmware image requires an NVM Subsystem.
.IP "NVME_SC_FW_NEEDS_RESET" 12
Firmware Activation Requires Controller
Level Reset: The firmware commit was
successful; however, the image specified
does not support being activated without
a reset.
.IP "NVME_SC_FW_NEEDS_MAX_TIME" 12
Firmware Activation Requires Maximum Time
Violation: The image specified if
activated immediately would exceed the
Maximum Time for Firmware Activation
(MTFA) value reported in Identify
Controller.
.IP "NVME_SC_FW_ACTIVATE_PROHIBITED" 12
Firmware Activation Prohibited: The image
specified is being prohibited from
activation by the controller for vendor
specific reasons.
.IP "NVME_SC_OVERLAPPING_RANGE" 12
Overlapping Range: The downloaded
firmware image has overlapping ranges.
.IP "NVME_SC_NS_INSUFFICIENT_CAP" 12
Namespace Insufficient Capacity: Creating
the namespace requires more free space
than is currently available.
.IP "NVME_SC_NS_ID_UNAVAILABLE" 12
Namespace Identifier Unavailable: The
number of namespaces supported has been
exceeded.
.IP "NVME_SC_NS_ALREADY_ATTACHED" 12
Namespace Already Attached: The
controller is already attached to the
namespace specified.
.IP "NVME_SC_NS_IS_PRIVATE" 12
Namespace Is Private: The namespace is
private and is already attached to one
controller.
.IP "NVME_SC_NS_NOT_ATTACHED" 12
Namespace Not Attached: The request to
detach the controller could not be
completed because the controller is not
attached to the namespace.
.IP "NVME_SC_THIN_PROV_NOT_SUPP" 12
Thin Provisioning Not Supported: Thin
provisioning is not supported by the
controller.
.IP "NVME_SC_CTRL_LIST_INVALID" 12
Controller List Invalid: The controller
list provided contains invalid controller
ids.
.IP "NVME_SC_SELF_TEST_IN_PROGRESS" 12
Device Self-test In Progress: The controller
or NVM subsystem already has a device
self-test operation in process.
.IP "NVME_SC_BP_WRITE_PROHIBITED" 12
Boot Partition Write Prohibited: The
command is trying to modify a locked Boot
Partition.
.IP "NVME_SC_INVALID_CTRL_ID" 12
Invalid Controller Identifier:
.IP "NVME_SC_INVALID_SEC_CTRL_STATE" 12
Invalid Secondary Controller State
.IP "NVME_SC_INVALID_CTRL_RESOURCES" 12
Invalid Number of Controller Resources
.IP "NVME_SC_INVALID_RESOURCE_ID" 12
Invalid Resource Identifier
.IP "NVME_SC_PMR_SAN_PROHIBITED" 12
Sanitize Prohibited While Persistent
Memory Region is Enabled
.IP "NVME_SC_ANA_GROUP_ID_INVALID" 12
ANA Group Identifier Invalid: The specified
ANA Group Identifier (ANAGRPID) is not
supported in the submitted command.
.IP "NVME_SC_ANA_ATTACH_FAILED" 12
ANA Attach Failed: The controller is not
attached to the namespace as a result
of an ANA condition.
.IP "NVME_SC_INSUFFICIENT_CAP" 12
Insufficient Capacity: Requested operation
requires more free space than is currently
available.
.IP "NVME_SC_NS_ATTACHMENT_LIMIT_EXCEEDED" 12
Namespace Attachment Limit Exceeded:
Attaching the ns to a controller causes
max number of ns attachments allowed
to be exceeded.
.IP "NVME_SC_PROHIBIT_CMD_EXEC_NOT_SUPPORTED" 12
Prohibition of Command Execution
Not Supported
.IP "NVME_SC_IOCS_NOT_SUPPORTED" 12
I/O Command Set Not Supported
.IP "NVME_SC_IOCS_NOT_ENABLED" 12
I/O Command Set Not Enabled
.IP "NVME_SC_IOCS_COMBINATION_REJECTED" 12
I/O Command Set Combination Rejected
.IP "NVME_SC_INVALID_IOCS" 12
Invalid I/O Command Set
.IP "NVME_SC_ID_UNAVAILABLE" 12
Identifier Unavailable
.IP "NVME_SC_INVALID_DISCOVERY_INFO" 12
The discovery information provided in
one or more extended discovery
information entries is not applicable
for the type of entity selected in
the Entity Type (ETYPE) field of the
Discovery Information Management
command data portion’s header.
.IP "NVME_SC_ZONING_DATA_STRUCT_LOCKED" 12
The requested Zoning data structure
is locked on the CDC.
.IP "NVME_SC_ZONING_DATA_STRUCT_NOTFND" 12
The requested Zoning data structure
does not exist on the CDC.
.IP "NVME_SC_INSUFFICIENT_DISC_RES" 12
The number of discover information
entries provided in the data portion
of the Discovery Information
Management command for a registration
task (i.e., TAS field cleared to 0h)
exceeds the available capacity for
new discovery information entries on
the CDC or DDC. This may be a
transient condition.
.IP "NVME_SC_REQSTD_FUNCTION_DISABLED" 12
Fabric Zoning is not enabled on the
CDC
.IP "NVME_SC_ZONEGRP_ORIGINATOR_INVLD" 12
The NQN contained in the ZoneGroup
Originator field does not match the
Host NQN used by the DDC to connect
to the CDC.
.IP "NVME_SC_INVALID_CONTROLER_DATA_QUEUE" 12
This error indicates that the
specified Controller Data Queue
Identifier is invalid for the controller
processing the command.
.IP "NVME_SC_NOT_ENOUGH_RESOURCES" 12
This error indicates that there is not
enough resources in the controller to
process the command.
.IP "NVME_SC_CONTROLLER_SUSPENDED" 12
The operation requested is not allowed if
the specified controller is suspended.
.IP "NVME_SC_CONTROLLER_NOT_SUSPENDED" 12
The operation requested is not allowed if
the specified controller is not
suspended.
.IP "NVME_SC_CONTROLLER_DATA_QUEUE_FULL" 12
The controller detected that a
Controller Data Queue became full.
.IP "NVME_SC_BAD_ATTRIBUTES" 12
Conflicting Dataset Management Attributes
.IP "NVME_SC_INVALID_PI" 12
Invalid Protection Information
.IP "NVME_SC_READ_ONLY" 12
Attempted Write to Read Only Range
.IP "NVME_SC_CMD_SIZE_LIMIT_EXCEEDED" 12
Command Size Limit Exceeded
.IP "NVME_SC_INCOMPATIBLE_NS" 12
Incompatible Namespace or Format: At
least one source namespace and the
destination namespace have incompatible
formats.
.IP "NVME_SC_FAST_COPY_NOT_POSSIBLE" 12
Fast Copy Not Possible: The Fast Copy
Only (FCO) bit was set to ‘1’ in a Source
Range entry and the controller was not
able to use fast copy operations to copy
the specified data.
.IP "NVME_SC_OVERLAPPING_IO_RANGE" 12
Overlapping I/O Range: A source logical
block range overlaps the destination
logical block range.
.IP "NVME_SC_INSUFFICIENT_RESOURCES" 12
Insufficient Resources: A resource
shortage prevented the controller from
performing the requested copy.
.IP "NVME_SC_CONNECT_FORMAT" 12
Incompatible Format: The NVM subsystem
does not support the record format
specified by the host.
.IP "NVME_SC_CONNECT_CTRL_BUSY" 12
Controller Busy: The controller is
already associated with a host.
.IP "NVME_SC_CONNECT_INVALID_PARAM" 12
Connect Invalid Parameters: One or more
of the command parameters.
.IP "NVME_SC_CONNECT_RESTART_DISC" 12
Connect Restart Discovery: The NVM
subsystem requested is not available.
.IP "NVME_SC_CONNECT_INVALID_HOST" 12
Connect Invalid Host: The host is either
not allowed to establish an association
to any controller in the NVM subsystem or
the host is not allowed to establish an
association to the specified controller
.IP "NVME_SC_DISCONNECT_INVALID_QTYPE" 12
Invalid Queue Type: The command was sent
on the wrong queue type.
.IP "NVME_SC_DISCOVERY_RESTART" 12
Discover Restart: The snapshot of the
records is now invalid or out of date.
.IP "NVME_SC_AUTH_REQUIRED" 12
Authentication Required: NVMe in-band
authentication is required and the queue
has not yet been authenticated.
.IP "NVME_SC_ZNS_INVALID_OP_REQUEST" 12
Invalid Zone Operation Request:
The operation requested is invalid. This may be due to
various conditions, including: attempting to allocate a
ZRWA when a zone is not in the ZSE:Empty state; or
invalid Flush Explicit ZRWA Range Send Zone Action
operation.
.IP "NVME_SC_ZNS_ZRWA_RESOURCES_UNAVAILABLE" 12
ZRWA Resources Unavailable:
No ZRWAs are available.
.IP "NVME_SC_ZNS_BOUNDARY_ERROR" 12
Zone Boundary Error: The command specifies
logical blocks in more than one zone.
.IP "NVME_SC_ZNS_FULL" 12
Zone Is Full: The accessed zone is in the
ZSF:Full state.
.IP "NVME_SC_ZNS_READ_ONLY" 12
Zone Is Read Only: The accessed zone is
in the ZSRO:Read Only state.
.IP "NVME_SC_ZNS_OFFLINE" 12
Zone Is Offline: The accessed zone is
in the ZSO:Offline state.
.IP "NVME_SC_ZNS_INVALID_WRITE" 12
Zone Invalid Write: The write to a zone
was not at the write pointer.
.IP "NVME_SC_ZNS_TOO_MANY_ACTIVE" 12
Too Many Active Zones: The controller
does not allow additional active zones.
.IP "NVME_SC_ZNS_TOO_MANY_OPENS" 12
Too Many Open Zones: The controller does
not allow additional open zones.
.IP "NVME_SC_ZNS_INVAL_TRANSITION" 12
Invalid Zone State Transition: The request
is not a valid zone state transition.
.IP "NVME_SC_WRITE_FAULT" 12
Write Fault: The write data could not be
committed to the media.
.IP "NVME_SC_READ_ERROR" 12
Unrecovered Read Error: The read data
could not be recovered from the media.
.IP "NVME_SC_GUARD_CHECK" 12
End-to-end Guard Check Error: The command
was aborted due to an end-to-end guard
check failure.
.IP "NVME_SC_APPTAG_CHECK" 12
End-to-end Application Tag Check Error:
The command was aborted due to an
end-to-end application tag check failure.
.IP "NVME_SC_REFTAG_CHECK" 12
End-to-end Reference Tag Check Error: The
command was aborted due to an end-to-end
reference tag check failure.
.IP "NVME_SC_COMPARE_FAILED" 12
Compare Failure: The command failed due
to a miscompare during a Compare command.
.IP "NVME_SC_ACCESS_DENIED" 12
Access Denied: Access to the namespace
and/or LBA range is denied due to lack of
access rights.
.IP "NVME_SC_UNWRITTEN_BLOCK" 12
Deallocated or Unwritten Logical Block:
The command failed due to an attempt to
read from or verify an LBA range
containing a deallocated or unwritten
logical block.
.IP "NVME_SC_STORAGE_TAG_CHECK" 12
End-to-End Storage Tag Check Error: The
command was aborted due to an end-to-end
storage tag check failure.
.IP "NVME_SC_ANA_INTERNAL_PATH_ERROR" 12
Internal Path Error: The command was not
completed as the result of a controller
internal error that is specific to the
controller processing the command.
.IP "NVME_SC_ANA_PERSISTENT_LOSS" 12
Asymmetric Access Persistent Loss: The
requested function (e.g., command) is not
able to be performed as a result of the
relationship between the controller and
the namespace being in the ANA Persistent
Loss state.
.IP "NVME_SC_ANA_INACCESSIBLE" 12
Asymmetric Access Inaccessible: The
requested function (e.g., command) is not
able to be performed as a result of the
relationship between the controller and
the namespace being in the ANA
Inaccessible state.
.IP "NVME_SC_ANA_TRANSITION" 12
Asymmetric Access Transition: The
requested function (e.g., command) is not
able to be performed as a result of the
relationship between the controller and
the namespace transitioning between
Asymmetric Namespace Access states.
.IP "NVME_SC_CTRL_PATH_ERROR" 12
Controller Pathing Error: A pathing error
was detected by the controller.
.IP "NVME_SC_HOST_PATH_ERROR" 12
Host Pathing Error: A pathing error was
detected by the host.
.IP "NVME_SC_CMD_ABORTED_BY_HOST" 12
Command Aborted By Host: The command was
aborted as a result of host action.
.IP "NVME_SC_CRD" 12
Mask to get value of Command Retry Delay
index
.IP "NVME_SC_MORE" 12
More bit. If set, more status information
for this command as part of the Error
Information log that may be retrieved with
the Get Log Page command.
.IP "NVME_SC_DNR" 12
Do Not Retry bit. If set, if the same
command is re-submitted to any controller
in the NVM subsystem, then that
re-submitted command is expected to fail.
|