1
0
Fork 0

Adding upstream version 2.9.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:26:41 +01:00
parent 8229b972f0
commit 1e65f355a3
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
451 changed files with 5896 additions and 2734 deletions

View file

@ -9,18 +9,36 @@
PLUGIN(NAME("memblaze", "Memblaze vendor specific extensions", NVME_VERSION),
COMMAND_LIST(
ENTRY("smart-log-add", "Retrieve Memblaze SMART Log, show it", mb_get_additional_smart_log)
ENTRY("get-pm-status", "Get Memblaze Power Manager Status", mb_get_powermanager_status)
ENTRY("set-pm-status", "Set Memblaze Power Manager Status", mb_set_powermanager_status)
ENTRY("select-download", "Selective Firmware Download", mb_selective_download)
ENTRY("lat-stats", "Enable and disable Latency Statistics logging", mb_set_lat_stats)
ENTRY("lat-stats-print", "Retrieve IO Latency Statistics log, show it", mb_lat_stats_log_print)
ENTRY("lat-log", "Set Memblaze High Latency Log", mb_set_high_latency_log)
ENTRY("lat-log-print", "Output Memblaze High Latency Log", mb_high_latency_log_print)
ENTRY("clear-error-log", "Clear error log", memblaze_clear_error_log)
ENTRY("smart-log-add-x", "Retrieve Memblaze SMART Log, show it", mb_get_smart_log_add)
ENTRY("lat-set-feature-x", "Set Enable/Disable for Latency Monitor feature", mb_set_latency_feature)
ENTRY("lat-get-feature-x", "Get Enabled/Disabled of Latency Monitor feature", mb_get_latency_feature)
ENTRY("smart-log-add", "Retrieve Memblaze SMART Log, show it",
mb_get_additional_smart_log)
ENTRY("get-pm-status", "Get Memblaze Power Manager Status",
mb_get_powermanager_status)
ENTRY("set-pm-status", "Set Memblaze Power Manager Status",
mb_set_powermanager_status)
ENTRY("select-download", "Selective Firmware Download",
mb_selective_download)
ENTRY("lat-stats", "Enable and disable Latency Statistics logging",
mb_set_lat_stats)
ENTRY("lat-stats-print", "Retrieve IO Latency Statistics log, show it",
mb_lat_stats_log_print)
ENTRY("lat-log", "Set Memblaze High Latency Log",
mb_set_high_latency_log)
ENTRY("lat-log-print", "Output Memblaze High Latency Log",
mb_high_latency_log_print)
ENTRY("clear-error-log", "Clear error log",
memblaze_clear_error_log)
ENTRY("smart-log-add-x", "Retrieve Memblaze SMART Log, show it",
mb_get_smart_log_add)
ENTRY("lat-set-feature-x", "Set Enable/Disable for Latency Monitor feature",
mb_set_latency_feature)
ENTRY("lat-get-feature-x", "Get Enabled/Disabled of Latency Monitor feature",
mb_get_latency_feature)
ENTRY("lat-stats-print-x", "Get Latency Statistics log and show it.",
mb_get_latency_stats)
ENTRY("lat-log-print-x", "Get High Latency log and show it.",
mb_get_high_latency_log)
ENTRY("perf-stats-print-x", "Get Performance Stat log and show it.",
mb_get_performance_stats)
)
);