NVMe¶
This section documents the NVMe (Non-Volatile Memory Express) device functionality.
sts.nvme
¶
NVMe device management.
This module provides functionality for managing NVMe devices: - Device discovery using modern nvme-cli JSON output - Device information from controllers and namespaces - Device operations and management
NVMe (Non-Volatile Memory Express) is a protocol designed for: - High-performance SSDs - Low latency access - Parallel operations - Advanced management features
Key advantages over SCSI/SATA: - Higher queue depths - Lower protocol overhead - Better error handling - More detailed device information
Discovery Strategy: - Uses 'nvme list -o json -v' for comprehensive device information - Provides complete metadata: model, serial, firmware, size, transport, address, NQNs - Handles both controller-level and subsystem-level namespace locations - Filters devices by controller name for targeted discovery
NvmeDevice
dataclass
¶
Bases: StorageDevice
NVMe device representation.
NVMe devices are identified by: - Controller number (e.g. nvme0) - Namespace ID (e.g. n1) - Combined name (e.g. nvme0n1)
Device information includes: - Model and serial number from controller - Firmware version from controller - Capacity and block size from namespace - Transport and addressing information
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str | None
|
Device name (optional, e.g. 'nvme0n1') |
None
|
path
|
Path | str | None
|
Device path (optional, defaults to /dev/ |
None
|
size
|
int | None
|
Device size in bytes (optional, discovered from namespace) |
None
|
model
|
str | None
|
Device model (optional, discovered from controller) |
None
|
serial
|
str | None
|
Device serial number (optional, discovered from controller) |
None
|
firmware
|
str | None
|
Device firmware version (optional, discovered from controller) |
None
|
controller
|
str | None
|
Controller name (optional, e.g. 'nvme0') |
None
|
nsid
|
int | None
|
Namespace ID (optional, e.g. 1) |
None
|
transport
|
str | None
|
Transport type (optional, e.g. 'pcie') |
None
|
address
|
str | None
|
Device address (optional, e.g. '0000:24:00.0') |
None
|
sector_size
|
int
|
Sector size in bytes (optional, defaults to 512) |
512
|
host_nqn
|
str | None
|
Host NQN identifier (optional) |
None
|
host_id
|
str | None
|
Host ID (optional) |
None
|
subsystem
|
str | None
|
Subsystem name (optional) |
None
|
subsystem_nqn
|
str | None
|
Subsystem NQN identifier (optional) |
None
|
physical_size
|
int | None
|
Physical device size (optional) |
None
|
used_bytes
|
int | None
|
Used space in bytes (optional) |
None
|
maximum_lba
|
int | None
|
Maximum LBA count (optional) |
None
|
Example
device = NvmeDevice(name='nvme0n1') # Discovers other values
Source code in sts_libs/src/sts/nvme.py
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 |
|
__post_init__()
¶
Initialize NVMe device.
Discovery process: 1. Ensure nvme-cli is installed 2. Set device path if needed 3. Get device information from nvme list JSON output 4. Filter by controller name to find target device
Source code in sts_libs/src/sts/nvme.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
connect(**kwargs)
¶
Connect to specific NVMeoF subsystem.
Connects to a specific NVMe over Fabrics subsystem: - Manual subsystem connection - Transport-specific parameters - Authentication support - Quality of Service settings
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Connect to TCP subsystem
device.connect(
**{
'--transport': 'tcp',
'--traddr': '192.168.1.100',
'--trsvcid': '4420',
'--nqn': 'nqn.2016-06.io.spdk:cnode1',
}
)
# Connect with authentication
device.connect(
**{
'--transport': 'tcp',
'--traddr': '192.168.1.100',
'--nqn': 'nqn.2016-06.io.spdk:cnode1',
'--dhchap-secret': 'DHHC-1:00:...',
}
)
# Connect with duplicate path detection
device.connect(
**{
'--transport': 'tcp',
'--traddr': '192.168.1.100',
'--nqn': 'nqn.2016-06.io.spdk:cnode1',
'--duplicate-connect': None,
}
)
Source code in sts_libs/src/sts/nvme.py
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 |
|
connect_all(**kwargs)
¶
Discover and connect to all NVMeoF subsystems.
Discovers and connects to all available subsystems: - Automatic discovery and connection - Multiple transport support - Batch connection operations
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Connect to all TCP subsystems
device.connect_all(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})
# Connect with authentication
device.connect_all(
**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--dhchap-secret': 'DHHC-1:00:...'}
)
Source code in sts_libs/src/sts/nvme.py
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 |
|
device_self_test(test_code='1', **kwargs)
¶
Perform device self-test.
Initiates device self-test operation: - Short self-test (test_code='1') - Extended self-test (test_code='2') - Abort self-test (test_code='15')
Parameters:
Name | Type | Description | Default |
---|---|---|---|
test_code
|
str
|
Self-test code ('1'=short, '2'=extended, '15'=abort) |
'1'
|
Returns:
Type | Description |
---|---|
bool
|
True if test initiated successfully, False otherwise |
Example
# Start short self-test
device.device_self_test('1')
True
# Start extended self-test
device.device_self_test('2')
Source code in sts_libs/src/sts/nvme.py
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 |
|
disconnect(nqn, **kwargs)
¶
Disconnect from specific NVMeoF subsystem.
Disconnects from a specific NVMe over Fabrics subsystem: - Graceful disconnection - Subsystem-specific targeting - Connection cleanup
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nqn
|
str
|
NVMe Qualified Name of subsystem to disconnect |
required |
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Disconnect specific subsystem
device.disconnect('nqn.2016-06.io.spdk:cnode1')
# Force disconnect
device.disconnect('nqn.2016-06.io.spdk:cnode1', **{'--force': None})
Source code in sts_libs/src/sts/nvme.py
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 |
|
disconnect_all(**kwargs)
¶
Disconnect from all NVMeoF subsystems.
Disconnects from all connected NVMe over Fabrics subsystems: - Bulk disconnection operation - Complete cleanup - All transport types
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Disconnect all subsystems
device.disconnect_all()
# Force disconnect all
device.disconnect_all(**{'--force': None})
Source code in sts_libs/src/sts/nvme.py
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 |
|
discover(**kwargs)
¶
Discover NVMeoF subsystems.
Discovers available NVMe over Fabrics subsystems: - TCP transport discovery - RDMA transport discovery - Fibre Channel discovery - Discovery controller queries
Returns:
Type | Description |
---|---|
dict
|
Dictionary of discovered subsystems |
Examples:
# Discover TCP subsystems
device.discover(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})
# Discover RDMA subsystems
device.discover(**{'--transport': 'rdma', '--traddr': '192.168.1.100', '--trsvcid': '4420'})
# Discover with specific host NQN
device.discover(
**{
'--transport': 'tcp',
'--traddr': '192.168.1.100',
'--hostnqn': 'nqn.2014-08.org.nvmexpress:uuid:01234567-89ab-cdef-0123-456789abcdef',
}
)
Source code in sts_libs/src/sts/nvme.py
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 |
|
dsm(range_list, **kwargs)
¶
Data Set Management (TRIM/Deallocate).
Performs data set management operations: - TRIM/deallocate unused blocks - Optimize performance - Improve wear leveling
Parameters:
Name | Type | Description | Default |
---|---|---|---|
range_list
|
str
|
Comma-separated list of LBA ranges to deallocate |
required |
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Example
# Deallocate blocks 0-1023
device.dsm('0,1024')
True
Source code in sts_libs/src/sts/nvme.py
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 |
|
flush(**kwargs)
¶
Flush device cache.
Commits data and metadata associated with given namespaces to nonvolatile media. Applies to all commands finished before the flush was submitted. Additional data may also be flushed by the controller, from any namespace, depending on controller and associated namespace status.
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Basic flush
device.flush()
# Flush with specific namespace ID
device.flush(**{'--namespace-id': '1'})
# Flush with timeout
device.flush(**{'--timeout': '5000'})
Source code in sts_libs/src/sts/nvme.py
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 |
|
format(**kwargs)
¶
Format device.
Performs a low-level format: - Erases all data - Resets metadata - May take significant time - Requires admin privileges
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Example
device.format()
True
Source code in sts_libs/src/sts/nvme.py
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 |
|
fw_commit(slot, action='1', **kwargs)
¶
Commit/activate firmware.
Activates downloaded firmware: - Commits firmware to slot - Activates firmware - May require reset
Parameters:
Name | Type | Description | Default |
---|---|---|---|
slot
|
str
|
Firmware slot number ('0'-'7') |
required |
action
|
str
|
Commit action ('0'=download, '1'=commit+activate, '2'=activate, '3'=commit+activate+reset) |
'1'
|
Returns:
Type | Description |
---|---|
bool
|
True if commit successful, False otherwise |
Example
# Commit and activate firmware in slot 1
device.fw_commit('1', '1')
True
Source code in sts_libs/src/sts/nvme.py
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 |
|
fw_download(firmware_file, **kwargs)
¶
Download firmware to device.
Downloads new firmware to the device: - Transfers firmware image - Validates firmware - Prepares for activation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
firmware_file
|
str
|
Path to firmware file |
required |
Returns:
Type | Description |
---|---|
bool
|
True if download successful, False otherwise |
Example
device.fw_download('/path/to/firmware.bin')
True
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_all()
classmethod
¶
Get list of all NVMe devices.
Returns:
Type | Description |
---|---|
list[NvmeDevice]
|
A list of NvmeDevice instances representing all detected NVMe devices. |
list[NvmeDevice]
|
If no devices are found or an error occurs, an empty list is returned. |
Examples:
NvmeDevice.get_all()
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_by_attribute(attribute, value)
classmethod
¶
Get devices by attribute value.
Finds devices matching a specific attribute value: - Searches through all available devices - Case-sensitive match on attribute value - Returns multiple devices if found - Empty list if none found
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attribute
|
str
|
Device attribute name (e.g. 'model', 'serial', 'transport', 'firmware') |
required |
value
|
str
|
Attribute value to match |
required |
Returns:
Type | Description |
---|---|
list[NvmeDevice]
|
List of NvmeDevice instances matching the attribute value |
Examples:
# Find devices by model
NvmeDevice.get_by_attribute('model', 'Samsung SSD 970 EVO 250GB')
# Find devices by transport type
NvmeDevice.get_by_attribute('transport', 'pcie')
# Find devices by firmware version
NvmeDevice.get_by_attribute('firmware', '2B2QEXM7')
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_error_log(**kwargs)
¶
Get error log.
Retrieves device error history: - Error count - Error types - Error locations - Timestamps
Returns:
Type | Description |
---|---|
dict
|
Dictionary of error log entries |
Example
device.get_error_log()
{errors: [{'error_count': 76,...}, ..., {...}]}
device.get_error_log(**{'-e':'1'})
{'errors': [{'error_count': 76,...}]}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_feature(feature_id, **kwargs)
¶
Get device feature.
Retrieves current feature settings: - Power management - Temperature threshold - Error recovery - Volatile write cache
Parameters:
Name | Type | Description | Default |
---|---|---|---|
feature_id
|
str
|
Feature ID to retrieve (e.g., '0x01', '0x02') |
required |
Returns:
Type | Description |
---|---|
dict
|
Dictionary of feature data |
Example
# Get power management feature
device.get_feature('0x02')
{'fid': 2, 'cdw11': 0, 'cdw12': 0, ...}
# Get temperature threshold
device.get_feature('0x04')
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_fw_log(**kwargs)
¶
Get firmware log.
Retrieves firmware event log: - Firmware slot information - Activation status - Firmware revisions - Boot partition information
Returns:
Type | Description |
---|---|
dict
|
Dictionary of firmware log entries |
Example
device.get_fw_log()
{'afi': 1, 'frs1': 'KB4QEXHA', 'frs2': '', ...}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_id_ctrl(**kwargs)
¶
Get controller identification.
Retrieves detailed controller information: - Vendor and model information - Controller capabilities - Supported features - Command set support
Returns:
Type | Description |
---|---|
dict
|
Dictionary of controller identification data |
Example
device.get_id_ctrl()
{'vid': 5197, 'ssvid': 5197, 'mn': 'Samsung SSD 980 PRO 1TB', ...}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_id_ns(**kwargs)
¶
Get namespace identification.
Retrieves detailed namespace information: - Namespace size and capacity - Data protection capabilities - Multi-path I/O capabilities - Namespace features
Returns:
Type | Description |
---|---|
dict
|
Dictionary of namespace identification data |
Example
device.get_id_ns()
{'nsze': 1953525168, 'ncap': 1953525168, 'nuse': 1953525168, ...}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_lba_status(start_lba, block_count, **kwargs)
¶
Get LBA status information.
Retrieves logical block status: - Block allocation status - Block state information - Error status
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_lba
|
str
|
Starting LBA |
required |
block_count
|
str
|
Number of blocks to check |
required |
Returns:
Type | Description |
---|---|
dict
|
Dictionary of LBA status information |
Example
device.get_lba_status('0', '1024')
{'lba_status': [...]}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_self_test_log(**kwargs)
¶
Get self-test log.
Retrieves device self-test results: - Test completion status - Test results - Failure information - Test history
Returns:
Type | Description |
---|---|
dict
|
Dictionary of self-test log entries |
Example
device.get_self_test_log()
{'current_operation': 0, 'completion': 0, 'result': [...]}
Source code in sts_libs/src/sts/nvme.py
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 |
|
get_smart_log(**kwargs)
¶
Get SMART log.
Retrieves device health information: - Critical warnings - Temperature - Available spare - Media errors - Read/write statistics
Returns:
Type | Description |
---|---|
dict
|
Dictionary of SMART log entries |
Example
device.get_smart_log()
{'critical_warning': '0x0', 'temperature': '35 C', ...}
Source code in sts_libs/src/sts/nvme.py
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 |
|
has_nvme()
classmethod
¶
Check if system contains any NVMe devices.
Returns:
Type | Description |
---|---|
bool
|
True if NVMe devices found, False otherwise |
Example
if NvmeDevice.has_nvme():
devices = NvmeDevice.get_all()
else:
print('No NVMe devices found')
Source code in sts_libs/src/sts/nvme.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
list_ns(**kwargs)
¶
List namespaces.
Lists all namespaces attached to the controller: - Active namespaces - Allocated namespaces - Namespace identifiers
Returns:
Type | Description |
---|---|
dict
|
Dictionary of namespace list |
Example
device.list_ns()
[1, 0, 0, 0, ...]
Source code in sts_libs/src/sts/nvme.py
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 |
|
ns_rescan(**kwargs)
¶
Rescan namespaces.
Rescans for namespace changes: - Detects new namespaces - Updates namespace list - Refreshes kernel state
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Example
device.ns_rescan()
True
Source code in sts_libs/src/sts/nvme.py
946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 |
|
reset(**kwargs)
¶
Reset NVMe controller.
Performs a controller-level reset: - Resets the NVMe controller - Clears any error states - Reinitializes the controller - May cause temporary device unavailability
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Example
device.reset()
True
Source code in sts_libs/src/sts/nvme.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
|
sanitize(**kwargs)
¶
Sanitize device.
Performs a secure erase: - Block erase: Erases all user data by resetting all blocks - Crypto erase: Changes encryption keys, making data unrecoverable - Overwrite: Overwrites all user data with a data pattern - May take significant time - Requires admin privileges - Some devices may not support all erase methods
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Examples:
# Block erase sanitize
device.sanitize(**{'--sanact': '0x01'})
# No-deallocate after sanitize
device.sanitize(**{'--sanact': '0x01', '--nodas': None})
Source code in sts_libs/src/sts/nvme.py
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 |
|
set_feature(feature_id, value, **kwargs)
¶
Set device feature.
Configures device features: - Power management settings - Temperature thresholds - Error recovery parameters - Cache settings
Parameters:
Name | Type | Description | Default |
---|---|---|---|
feature_id
|
str
|
Feature ID to set (e.g., '0x01', '0x02') |
required |
value
|
str
|
Feature value to set |
required |
Returns:
Type | Description |
---|---|
bool
|
True if successful, False otherwise |
Example
# Set power management feature
device.set_feature('0x02', '0x00')
True
# Set temperature threshold
device.set_feature('0x04', '85')
Source code in sts_libs/src/sts/nvme.py
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 |
|
show_regs(**kwargs)
¶
Show controller registers.
Displays controller register values: - Controller capabilities - Controller configuration - Controller status - Admin/IO queue attributes
Returns:
Type | Description |
---|---|
dict
|
Dictionary of register values |
Example
device.show_regs()
{'cap': '0x2014030300b0', 'vs': '0x10300', 'cc': '0x460001', ...}
Source code in sts_libs/src/sts/nvme.py
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 |
|