2025-02-16 12:16:19 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2025-02-16 11:09:01 +01:00
|
|
|
#include <assert.h>
|
2025-02-16 12:15:45 +01:00
|
|
|
#include <errno.h>
|
2025-02-16 11:09:01 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
2025-02-16 11:31:10 +01:00
|
|
|
#include <sys/stat.h>
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 11:31:10 +01:00
|
|
|
#include "nvme.h"
|
2025-02-16 12:15:45 +01:00
|
|
|
#include "libnvme.h"
|
2025-02-16 11:09:01 +01:00
|
|
|
#include "nvme-print.h"
|
|
|
|
#include "nvme-models.h"
|
|
|
|
#include "util/suffix.h"
|
2025-02-16 12:18:36 +01:00
|
|
|
#include "util/types.h"
|
2025-02-16 11:09:01 +01:00
|
|
|
#include "common.h"
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
#define nvme_print(name, flags, ...) \
|
|
|
|
do { \
|
|
|
|
struct print_ops *ops = nvme_print_ops(flags); \
|
|
|
|
if (ops) { \
|
|
|
|
if (ops->name) \
|
|
|
|
ops->name(__VA_ARGS__); \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
} while(0);
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
static struct print_ops *nvme_print_ops(enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
struct print_ops *ops = NULL;
|
|
|
|
|
|
|
|
if (flags & JSON)
|
|
|
|
ops = nvme_get_json_print_ops(flags);
|
|
|
|
else if (flags & BINARY)
|
|
|
|
ops = nvme_get_binary_print_ops(flags);
|
|
|
|
else
|
|
|
|
ops = nvme_get_stdout_print_ops(flags);
|
|
|
|
|
|
|
|
return ops;
|
|
|
|
}
|
2025-02-16 12:15:45 +01:00
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
const char *nvme_ana_state_to_string(enum nvme_ana_state state)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (state) {
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_ANA_STATE_OPTIMIZED:
|
2025-02-16 11:09:01 +01:00
|
|
|
return "optimized";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_ANA_STATE_NONOPTIMIZED:
|
2025-02-16 11:09:01 +01:00
|
|
|
return "non-optimized";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_ANA_STATE_INACCESSIBLE:
|
2025-02-16 11:09:01 +01:00
|
|
|
return "inaccessible";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_ANA_STATE_PERSISTENT_LOSS:
|
2025-02-16 11:09:01 +01:00
|
|
|
return "persistent-loss";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_ANA_STATE_CHANGE:
|
2025-02-16 11:09:01 +01:00
|
|
|
return "change";
|
|
|
|
}
|
|
|
|
return "invalid state";
|
|
|
|
}
|
|
|
|
|
2025-02-16 11:31:10 +01:00
|
|
|
const char *nvme_cmd_to_string(int admin, __u8 opcode)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
if (admin) {
|
|
|
|
switch (opcode) {
|
|
|
|
case nvme_admin_delete_sq: return "Delete I/O Submission Queue";
|
|
|
|
case nvme_admin_create_sq: return "Create I/O Submission Queue";
|
|
|
|
case nvme_admin_get_log_page: return "Get Log Page";
|
|
|
|
case nvme_admin_delete_cq: return "Delete I/O Completion Queue";
|
|
|
|
case nvme_admin_create_cq: return "Create I/O Completion Queue";
|
|
|
|
case nvme_admin_identify: return "Identify";
|
|
|
|
case nvme_admin_abort_cmd: return "Abort";
|
|
|
|
case nvme_admin_set_features: return "Set Features";
|
|
|
|
case nvme_admin_get_features: return "Get Features";
|
|
|
|
case nvme_admin_async_event: return "Asynchronous Event Request";
|
|
|
|
case nvme_admin_ns_mgmt: return "Namespace Management";
|
2025-02-16 12:15:45 +01:00
|
|
|
case nvme_admin_fw_commit: return "Firmware Commit";
|
|
|
|
case nvme_admin_fw_download: return "Firmware Image Download";
|
2025-02-16 11:09:01 +01:00
|
|
|
case nvme_admin_dev_self_test: return "Device Self-test";
|
|
|
|
case nvme_admin_ns_attach: return "Namespace Attachment";
|
|
|
|
case nvme_admin_keep_alive: return "Keep Alive";
|
|
|
|
case nvme_admin_directive_send: return "Directive Send";
|
|
|
|
case nvme_admin_directive_recv: return "Directive Receive";
|
|
|
|
case nvme_admin_virtual_mgmt: return "Virtualization Management";
|
2025-02-16 12:16:19 +01:00
|
|
|
case nvme_admin_nvme_mi_send: return "NVMe-MI Send";
|
|
|
|
case nvme_admin_nvme_mi_recv: return "NVMe-MI Receive";
|
2025-02-16 11:09:01 +01:00
|
|
|
case nvme_admin_dbbuf: return "Doorbell Buffer Config";
|
|
|
|
case nvme_admin_format_nvm: return "Format NVM";
|
|
|
|
case nvme_admin_security_send: return "Security Send";
|
|
|
|
case nvme_admin_security_recv: return "Security Receive";
|
|
|
|
case nvme_admin_sanitize_nvm: return "Sanitize";
|
2025-02-16 11:31:10 +01:00
|
|
|
case nvme_admin_get_lba_status: return "Get LBA Status";
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (opcode) {
|
|
|
|
case nvme_cmd_flush: return "Flush";
|
|
|
|
case nvme_cmd_write: return "Write";
|
|
|
|
case nvme_cmd_read: return "Read";
|
|
|
|
case nvme_cmd_write_uncor: return "Write Uncorrectable";
|
|
|
|
case nvme_cmd_compare: return "Compare";
|
|
|
|
case nvme_cmd_write_zeroes: return "Write Zeroes";
|
|
|
|
case nvme_cmd_dsm: return "Dataset Management";
|
|
|
|
case nvme_cmd_resv_register: return "Reservation Register";
|
|
|
|
case nvme_cmd_resv_report: return "Reservation Report";
|
|
|
|
case nvme_cmd_resv_acquire: return "Reservation Acquire";
|
|
|
|
case nvme_cmd_resv_release: return "Reservation Release";
|
2025-02-16 11:31:10 +01:00
|
|
|
case nvme_cmd_verify: return "Verify";
|
|
|
|
case nvme_cmd_copy: return "Copy";
|
2025-02-16 12:15:45 +01:00
|
|
|
case nvme_zns_cmd_mgmt_send: return "Zone Management Send";
|
|
|
|
case nvme_zns_cmd_mgmt_recv: return "Zone Management Receive";
|
|
|
|
case nvme_zns_cmd_append: return "Zone Append";
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_sstat_status_to_string(__u16 status)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:15:45 +01:00
|
|
|
switch (status & NVME_SANITIZE_SSTAT_STATUS_MASK) {
|
|
|
|
case NVME_SANITIZE_SSTAT_STATUS_NEVER_SANITIZED:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "NVM Subsystem has never been sanitized.";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_SANITIZE_SSTAT_STATUS_COMPLETE_SUCCESS:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "Most Recent Sanitize Command Completed Successfully.";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_SANITIZE_SSTAT_STATUS_IN_PROGESS:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "Sanitize in Progress.";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_SANITIZE_SSTAT_STATUS_COMPLETED_FAILED:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "Most Recent Sanitize Command Failed.";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_SANITIZE_SSTAT_STATUS_ND_COMPLETE_SUCCESS:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "Most Recent Sanitize Command (No-Deallocate After Sanitize) Completed Successfully.";
|
2025-02-16 11:09:01 +01:00
|
|
|
default:
|
2025-02-16 11:31:10 +01:00
|
|
|
return "Unknown";
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 11:31:10 +01:00
|
|
|
void nvme_show_predictable_latency_per_nvmset(
|
2025-02-16 12:15:45 +01:00
|
|
|
struct nvme_nvmset_predictable_lat_log *plpns_log,
|
2025-02-16 11:31:10 +01:00
|
|
|
__u16 nvmset_id, const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(predictable_latency_per_nvmset, flags,
|
|
|
|
plpns_log, nvmset_id, devname);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
void nvme_show_predictable_latency_event_agg_log(
|
|
|
|
struct nvme_aggregate_predictable_lat_event *pea_log,
|
|
|
|
__u64 log_entries, __u32 size, const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(predictable_latency_event_agg_log, flags,
|
|
|
|
pea_log, log_entries, size, devname);
|
2025-02-16 12:23:16 +01:00
|
|
|
}
|
2025-02-16 12:22:16 +01:00
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
const char *nvme_pel_event_to_string(int type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case NVME_PEL_SMART_HEALTH_EVENT: return "SMART/Health Log Snapshot Event(0x1)";
|
|
|
|
case NVME_PEL_FW_COMMIT_EVENT: return "Firmware Commit Event(0x2)";
|
|
|
|
case NVME_PEL_TIMESTAMP_EVENT: return "Timestamp Change Event(0x3)";
|
|
|
|
case NVME_PEL_POWER_ON_RESET_EVENT: return "Power-on or Reset Event(0x4)";
|
|
|
|
case NVME_PEL_NSS_HW_ERROR_EVENT: return "NVM Subsystem Hardware Error Event(0x5)";
|
|
|
|
case NVME_PEL_CHANGE_NS_EVENT: return "Change Namespace Event(0x6)";
|
|
|
|
case NVME_PEL_FORMAT_START_EVENT: return "Format NVM Start Event(0x7)";
|
|
|
|
case NVME_PEL_FORMAT_COMPLETION_EVENT: return "Format NVM Completion Event(0x8)";
|
|
|
|
case NVME_PEL_SANITIZE_START_EVENT: return "Sanitize Start Event(0x9)";
|
|
|
|
case NVME_PEL_SANITIZE_COMPLETION_EVENT: return "Sanitize Completion Event(0xa)";
|
|
|
|
case NVME_PEL_SET_FEATURE_EVENT: return "Set Feature Event(0xb)";
|
|
|
|
case NVME_PEL_TELEMETRY_CRT: return "Set Telemetry CRT Event(0xc)";
|
|
|
|
case NVME_PEL_THERMAL_EXCURSION_EVENT: return "Thermal Excursion Event(0xd)";
|
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_nss_hw_error_to_string(__u16 error_code)
|
2025-02-16 12:23:16 +01:00
|
|
|
{
|
|
|
|
switch (error_code) {
|
|
|
|
case 0x01:
|
|
|
|
return "PCIe Correctable Error";
|
|
|
|
case 0x02:
|
|
|
|
return "PCIe Uncorrectable Non fatal Error";
|
|
|
|
case 0x03:
|
|
|
|
return "PCIe Uncorrectable Fatal Error";
|
|
|
|
case 0x04:
|
|
|
|
return "PCIe Link Status Change";
|
|
|
|
case 0x05:
|
|
|
|
return "PCIe Link Not Active";
|
|
|
|
case 0x06:
|
|
|
|
return "Critical Warning Condition";
|
|
|
|
case 0x07:
|
|
|
|
return "Endurance Group Critical Warning Condition";
|
|
|
|
case 0x08:
|
|
|
|
return "Unsafe Shutdown";
|
|
|
|
case 0x09:
|
|
|
|
return "Controller Fatal Status";
|
|
|
|
case 0xA:
|
|
|
|
return "Media and Data Integrity Status";
|
|
|
|
case 0xB:
|
|
|
|
return "Controller Ready Timeout Exceeded";
|
|
|
|
default:
|
|
|
|
return "Reserved";
|
|
|
|
}
|
2025-02-16 12:22:16 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 11:31:10 +01:00
|
|
|
void nvme_show_persistent_event_log(void *pevent_log_info,
|
|
|
|
__u8 action, __u32 size, const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(persistent_event_log, flags,
|
|
|
|
pevent_log_info, action, size, devname);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_endurance_group_event_agg_log(
|
2025-02-16 12:15:45 +01:00
|
|
|
struct nvme_aggregate_predictable_lat_event *endurance_log,
|
2025-02-16 11:31:10 +01:00
|
|
|
__u64 log_entries, __u32 size, const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(endurance_group_event_agg_log, flags,
|
|
|
|
endurance_log, log_entries, size, devname);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_lba_status_log(void *lba_status, __u32 size,
|
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(lba_status_log, flags, lba_status, size, devname);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_resv_notif_to_string(__u8 type)
|
2025-02-16 11:31:10 +01:00
|
|
|
{
|
|
|
|
switch (type) {
|
2025-02-16 12:24:13 +01:00
|
|
|
case 0x0: return "Empty Log Page";
|
|
|
|
case 0x1: return "Registration Preempted";
|
|
|
|
case 0x2: return "Reservation Released";
|
|
|
|
case 0x3: return "Reservation Preempted";
|
2025-02-16 11:31:10 +01:00
|
|
|
default: return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_resv_notif_log(struct nvme_resv_notification_log *resv,
|
2025-02-16 11:31:10 +01:00
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(resv_notification_log, flags, resv, devname);
|
2025-02-16 12:13:48 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_fid_support_effects_log(struct nvme_fid_supported_effects_log *fid_log,
|
2025-02-16 12:13:48 +01:00
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fid_supported_effects_log, flags, fid_log, devname);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_mi_cmd_support_effects_log(struct nvme_mi_cmd_supported_effects_log *mi_cmd_log,
|
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(mi_cmd_support_effects_log, flags,
|
|
|
|
mi_cmd_log, devname);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_boot_part_log(void *bp_log, const char *devname,
|
|
|
|
__u32 size, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(boot_part_log, flags, bp_log, devname, size);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_media_unit_stat_log(struct nvme_media_unit_stat_log *mus_log,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(media_unit_stat_log, flags, mus_log);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_fdp_configs(struct nvme_fdp_config_log *log, size_t len,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fdp_config_log, flags, log, len);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_fdp_usage(struct nvme_fdp_ruhu_log *log, size_t len,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fdp_usage_log, flags,log, len);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_fdp_stats(struct nvme_fdp_stats_log *log,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fdp_stats_log, flags, log);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_fdp_event_to_string(enum nvme_fdp_event_type event)
|
2025-02-16 12:20:48 +01:00
|
|
|
{
|
|
|
|
switch (event) {
|
|
|
|
case NVME_FDP_EVENT_RUNFW: return "Reclaim Unit Not Fully Written";
|
|
|
|
case NVME_FDP_EVENT_RUTLE: return "Reclaim Unit Active Time Limit Exceeded";
|
|
|
|
case NVME_FDP_EVENT_RESET: return "Controller Level Reset Modified Reclaim Unit Handles";
|
|
|
|
case NVME_FDP_EVENT_PID: return "Invalid Placement Identifier";
|
|
|
|
case NVME_FDP_EVENT_REALLOC: return "Media Reallocated";
|
|
|
|
case NVME_FDP_EVENT_MODIFY: return "Implicitly Modified Reclaim Unit Handle";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_fdp_events(struct nvme_fdp_events_log *log,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fdp_event_log, flags, log);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_fdp_ruh_status(struct nvme_fdp_ruh_status *status, size_t len,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fdp_ruh_status, flags, status, len);
|
2025-02-16 12:20:48 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_supported_cap_config_log(
|
|
|
|
struct nvme_supported_cap_config_list_log *cap,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(supported_cap_config_list_log, flags, cap);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_subsystem_list(nvme_root_t r, bool show_ana,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(print_nvme_subsystem_list, flags, r, show_ana);
|
|
|
|
}
|
2025-02-16 12:16:19 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_register_szu_to_string(__u8 szu)
|
|
|
|
{
|
|
|
|
switch (szu) {
|
|
|
|
case 0: return "4 KB";
|
|
|
|
case 1: return "64 KB";
|
|
|
|
case 2: return "1 MB";
|
|
|
|
case 3: return "16 MB";
|
|
|
|
case 4: return "256 MB";
|
|
|
|
case 5: return "4 GB";
|
|
|
|
case 6: return "64 GB";
|
|
|
|
default:return "Reserved";
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_register_pmr_hsts_to_string(__u8 hsts)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
switch (hsts) {
|
|
|
|
case 0: return "Normal Operation";
|
|
|
|
case 1: return "Restore Error";
|
|
|
|
case 2: return "Read Only";
|
|
|
|
case 3: return "Unreliable";
|
|
|
|
default: return "Reserved";
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_register_pmr_pmrszu_to_string(__u8 pmrszu)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
switch (pmrszu) {
|
|
|
|
case 0: return "Bytes";
|
|
|
|
case 1: return "One KB";
|
|
|
|
case 2: return "One MB";
|
|
|
|
case 3: return "One GB";
|
|
|
|
default: return "Reserved";
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_ctrl_registers(void *bar, bool fabrics, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(ctrl_registers, flags, bar, fabrics);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_single_property(int offset, uint64_t value64, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(single_property, flags, offset, value64);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_relatives(const char *name)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
/* XXX: TBD */
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void d(unsigned char *buf, int len, int width, int group)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
int i, offset = 0, line_done = 0;
|
|
|
|
char ascii[32 + 1];
|
|
|
|
|
|
|
|
assert(width < sizeof(ascii));
|
|
|
|
printf(" ");
|
|
|
|
for (i = 0; i <= 15; i++)
|
|
|
|
printf("%3x", i);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
line_done = 0;
|
|
|
|
if (i % width == 0)
|
|
|
|
printf( "\n%04x:", offset);
|
|
|
|
if (i % group == 0)
|
|
|
|
printf( " %02x", buf[i]);
|
|
|
|
else
|
|
|
|
printf( "%02x", buf[i]);
|
|
|
|
ascii[i % width] = (buf[i] >= '!' && buf[i] <= '~') ? buf[i] : '.';
|
|
|
|
if (((i + 1) % width) == 0) {
|
|
|
|
ascii[i % width + 1] = '\0';
|
|
|
|
printf( " \"%.*s\"", width, ascii);
|
|
|
|
offset += width;
|
|
|
|
line_done = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!line_done) {
|
|
|
|
unsigned b = width - (i % width);
|
|
|
|
ascii[i % width + 1] = '\0';
|
|
|
|
printf( " %*s \"%.*s\"",
|
|
|
|
2 * b + b / group + (b % group ? 1 : 0), "",
|
|
|
|
width, ascii);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
2025-02-16 12:24:13 +01:00
|
|
|
printf( "\n");
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void d_raw(unsigned char *buf, unsigned len)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
putchar(*(buf+i));
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_status(int status)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
struct print_ops *ops;
|
2025-02-16 12:16:19 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (argconfig_output_format_json(false))
|
|
|
|
ops = nvme_print_ops(JSON);
|
|
|
|
else
|
|
|
|
ops =nvme_print_ops(0);
|
|
|
|
|
|
|
|
if (!ops)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!ops->show_status)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ops->show_status(status);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_ctrl_rpmbs(__le32 ctrl_rpmbs, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_ctrl_rpmbs, flags, ctrl_rpmbs);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_ns(struct nvme_id_ns *ns, unsigned int nsid,
|
|
|
|
unsigned int lba_index, bool cap_only, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_ns, flags, ns, nsid, lba_index, cap_only);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
|
|
|
|
void nvme_show_cmd_set_independent_id_ns(
|
|
|
|
struct nvme_id_independent_id_ns *ns, unsigned int nsid,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 12:16:19 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_independent_id_ns, flags, ns, nsid);
|
2025-02-16 12:16:19 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_ns_descs(void *data, unsigned nsid, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_ns_descs, flags, data, nsid);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_ctrl(struct nvme_id_ctrl *ctrl, enum nvme_print_flags flags,
|
|
|
|
void (*vendor_show)(__u8 *vs, struct json_object *root))
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_ctrl, flags, ctrl, vendor_show);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_ctrl_nvm(struct nvme_id_ctrl_nvm *ctrl_nvm,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(id_ctrl_nvm, flags, ctrl_nvm);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_nvm_id_ns(struct nvme_nvm_id_ns *nvm_ns, unsigned int nsid,
|
|
|
|
struct nvme_id_ns *ns, unsigned int lba_index,
|
|
|
|
bool cap_only, enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(nvm_id_ns, flags, nvm_ns, nsid, ns, lba_index, cap_only);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_zns_id_ctrl(struct nvme_zns_id_ctrl *ctrl,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(zns_id_ctrl, flags, ctrl);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_zns_id_ns(struct nvme_zns_id_ns *ns,
|
|
|
|
struct nvme_id_ns *id_ns,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(zns_id_ns, flags, ns, id_ns);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_list_ns(struct nvme_ns_list *ns_list, enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(ns_list, flags, ns_list);
|
|
|
|
}
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_zns_changed(struct nvme_zns_changed_zone_log *log,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
nvme_print(zns_changed_zone_log, flags, log);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_zone_type_to_string(__u8 cond)
|
2025-02-16 11:31:10 +01:00
|
|
|
{
|
|
|
|
switch (cond) {
|
|
|
|
case NVME_ZONE_TYPE_SEQWRITE_REQ:
|
|
|
|
return "SEQWRITE_REQ";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_zone_state_to_string(__u8 state)
|
2025-02-16 11:31:10 +01:00
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case NVME_ZNS_ZS_EMPTY:
|
|
|
|
return "EMPTY";
|
|
|
|
case NVME_ZNS_ZS_IMPL_OPEN:
|
|
|
|
return "IMP_OPENED";
|
|
|
|
case NVME_ZNS_ZS_EXPL_OPEN:
|
|
|
|
return "EXP_OPENED";
|
|
|
|
case NVME_ZNS_ZS_CLOSED:
|
|
|
|
return "CLOSED";
|
|
|
|
case NVME_ZNS_ZS_READ_ONLY:
|
|
|
|
return "READONLY";
|
|
|
|
case NVME_ZNS_ZS_FULL:
|
|
|
|
return "FULL";
|
|
|
|
case NVME_ZNS_ZS_OFFLINE:
|
|
|
|
return "OFFLINE";
|
|
|
|
default:
|
|
|
|
return "Unknown State";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_zns_report_zones(void *report, __u32 descs,
|
2025-02-16 12:24:13 +01:00
|
|
|
__u8 ext_size, __u32 report_size,
|
|
|
|
struct json_object *zone_list,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 11:31:10 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(zns_report_zones, flags,
|
|
|
|
report, descs, ext_size, report_size, zone_list);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_list_ctrl(struct nvme_ctrl_list *ctrl_list,
|
2025-02-16 12:11:43 +01:00
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(ctrl_list, flags, ctrl_list);
|
2025-02-16 12:11:43 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_id_nvmset(struct nvme_id_nvmset_list *nvmset, unsigned nvmset_id,
|
2025-02-16 11:09:01 +01:00
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_nvmset_list, flags, nvmset, nvmset_id);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_primary_ctrl_cap(const struct nvme_primary_ctrl_cap *caps,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 11:31:10 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(primary_ctrl_cap, flags, caps);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 11:09:01 +01:00
|
|
|
void nvme_show_list_secondary_ctrl(
|
2025-02-16 12:15:45 +01:00
|
|
|
const struct nvme_secondary_ctrl_list *sc_list,
|
2025-02-16 11:09:01 +01:00
|
|
|
__u32 count, enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
__u16 num = sc_list->num;
|
|
|
|
__u32 entries = min(num, count);
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(secondary_ctrl_list, flags, sc_list, entries);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_id_ns_granularity_list(const struct nvme_id_ns_granularity_list *glist,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_ns_granularity_list, flags, glist);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_id_uuid_list(const struct nvme_id_uuid_list *uuid_list,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_uuid_list, flags, uuid_list);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:11:43 +01:00
|
|
|
void nvme_show_id_domain_list(struct nvme_id_domain_list *id_dom,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_domain_list, flags, id_dom);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_endurance_group_list(struct nvme_id_endurance_group_list *endgrp_list,
|
2025-02-16 12:13:48 +01:00
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(endurance_group_list, flags, endgrp_list);
|
2025-02-16 12:13:48 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_id_iocs(struct nvme_id_iocs *iocs, enum nvme_print_flags flags)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(id_iocs, flags, iocs);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_trtype_to_string(__u8 trtype)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 11:31:10 +01:00
|
|
|
switch (trtype) {
|
2025-02-16 11:09:01 +01:00
|
|
|
case 0: return "The transport type is not indicated or the error "\
|
|
|
|
"is not transport related.";
|
|
|
|
case 1: return "RDMA Transport error.";
|
|
|
|
case 2: return "Fibre Channel Transport error.";
|
|
|
|
case 3: return "TCP Transport error.";
|
|
|
|
case 254: return "Intra-host Transport error.";
|
|
|
|
default: return "Reserved";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_error_log(struct nvme_error_log_page *err_log, int entries,
|
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(error_log, flags, err_log, entries, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_resv_report(struct nvme_resv_status *status, int bytes,
|
|
|
|
bool eds, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(resv_report, flags, status, bytes, eds);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_fw_log(struct nvme_firmware_slot *fw_log,
|
2025-02-16 11:09:01 +01:00
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(fw_log, flags, fw_log, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_changed_ns_list_log(struct nvme_ns_list *log,
|
2025-02-16 11:09:01 +01:00
|
|
|
const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(ns_list_log, flags, log, devname);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_print_effects_log_pages(struct list_head *list,
|
2025-02-16 12:24:13 +01:00
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(effects_log_list, flags, list);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:13:48 +01:00
|
|
|
const char *nvme_log_to_string(__u8 lid)
|
|
|
|
{
|
|
|
|
switch (lid) {
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_LOG_LID_SUPPORTED_LOG_PAGES: return "Supported Log Pages";
|
|
|
|
case NVME_LOG_LID_ERROR: return "Error Information";
|
|
|
|
case NVME_LOG_LID_SMART: return "SMART / Health Information";
|
|
|
|
case NVME_LOG_LID_FW_SLOT: return "Firmware Slot Information";
|
|
|
|
case NVME_LOG_LID_CHANGED_NS: return "Changed Namespace List";
|
|
|
|
case NVME_LOG_LID_CMD_EFFECTS: return "Commands Supported and Effects";
|
|
|
|
case NVME_LOG_LID_DEVICE_SELF_TEST: return "Device Self-test";
|
|
|
|
case NVME_LOG_LID_TELEMETRY_HOST: return "Telemetry Host-Initiated";
|
|
|
|
case NVME_LOG_LID_TELEMETRY_CTRL: return "Telemetry Controller-Initiated";
|
|
|
|
case NVME_LOG_LID_ENDURANCE_GROUP: return "Endurance Group Information";
|
|
|
|
case NVME_LOG_LID_PREDICTABLE_LAT_NVMSET: return "Predictable Latency Per NVM Set";
|
|
|
|
case NVME_LOG_LID_PREDICTABLE_LAT_AGG: return "Predictable Latency Event Aggregate";
|
|
|
|
case NVME_LOG_LID_ANA: return "Asymmetric Namespace Access";
|
|
|
|
case NVME_LOG_LID_PERSISTENT_EVENT: return "Persistent Event Log";
|
|
|
|
case NVME_LOG_LID_LBA_STATUS: return "LBA Status Information";
|
|
|
|
case NVME_LOG_LID_ENDURANCE_GRP_EVT: return "Endurance Group Event Aggregate";
|
|
|
|
case NVME_LOG_LID_FID_SUPPORTED_EFFECTS: return "Feature Identifiers Supported and Effects";
|
|
|
|
case NVME_LOG_LID_BOOT_PARTITION: return "Boot Partition";
|
|
|
|
case NVME_LOG_LID_DISCOVER: return "Discovery";
|
|
|
|
case NVME_LOG_LID_RESERVATION: return "Reservation Notification";
|
|
|
|
case NVME_LOG_LID_SANITIZE: return "Sanitize Status";
|
|
|
|
case NVME_LOG_LID_ZNS_CHANGED_ZONES: return "Changed Zone List";
|
2025-02-16 12:13:48 +01:00
|
|
|
default: return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_supported_log(struct nvme_supported_log_pages *support_log,
|
2025-02-16 12:13:48 +01:00
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(supported_log_pages, flags, support_log, devname);
|
2025-02-16 12:13:48 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 11:09:01 +01:00
|
|
|
void nvme_show_endurance_log(struct nvme_endurance_group_log *endurance_log,
|
|
|
|
__u16 group_id, const char *devname,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(endurance_log, flags, endurance_log, group_id, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_smart_log(struct nvme_smart_log *smart, unsigned int nsid,
|
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(smart_log, flags, smart, nsid, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_ana_log(struct nvme_ana_log *ana_log, const char *devname,
|
2025-02-16 12:24:13 +01:00
|
|
|
size_t len, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(ana_log, flags, ana_log, devname, len);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 11:31:10 +01:00
|
|
|
void nvme_show_self_test_log(struct nvme_self_test_log *self_test, __u8 dst_entries,
|
|
|
|
__u32 size, const char *devname, enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(self_test_log, flags, self_test, dst_entries, size, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_sanitize_log(struct nvme_sanitize_log_page *sanitize,
|
|
|
|
const char *devname, enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(sanitize_log_page, flags, sanitize, devname);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
const char *nvme_feature_to_string(enum nvme_features_id feature)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (feature) {
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_FEAT_FID_ARBITRATION: return "Arbitration";
|
|
|
|
case NVME_FEAT_FID_POWER_MGMT: return "Power Management";
|
|
|
|
case NVME_FEAT_FID_LBA_RANGE: return "LBA Range Type";
|
|
|
|
case NVME_FEAT_FID_TEMP_THRESH: return "Temperature Threshold";
|
|
|
|
case NVME_FEAT_FID_ERR_RECOVERY:return "Error Recovery";
|
|
|
|
case NVME_FEAT_FID_VOLATILE_WC: return "Volatile Write Cache";
|
|
|
|
case NVME_FEAT_FID_NUM_QUEUES: return "Number of Queues";
|
|
|
|
case NVME_FEAT_FID_IRQ_COALESCE:return "Interrupt Coalescing";
|
|
|
|
case NVME_FEAT_FID_IRQ_CONFIG: return "Interrupt Vector Configuration";
|
|
|
|
case NVME_FEAT_FID_WRITE_ATOMIC:return "Write Atomicity Normal";
|
|
|
|
case NVME_FEAT_FID_ASYNC_EVENT: return "Async Event Configuration";
|
|
|
|
case NVME_FEAT_FID_AUTO_PST: return "Autonomous Power State Transition";
|
|
|
|
case NVME_FEAT_FID_HOST_MEM_BUF:return "Host Memory Buffer";
|
|
|
|
case NVME_FEAT_FID_TIMESTAMP: return "Timestamp";
|
|
|
|
case NVME_FEAT_FID_KATO: return "Keep Alive Timer";
|
|
|
|
case NVME_FEAT_FID_HCTM: return "Host Controlled Thermal Management";
|
|
|
|
case NVME_FEAT_FID_NOPSC: return "Non-Operational Power State Config";
|
|
|
|
case NVME_FEAT_FID_RRL: return "Read Recovery Level";
|
2025-02-16 12:16:19 +01:00
|
|
|
case NVME_FEAT_FID_PLM_CONFIG: return "Predictable Latency Mode Config";
|
|
|
|
case NVME_FEAT_FID_PLM_WINDOW: return "Predictable Latency Mode Window";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_FEAT_FID_LBA_STS_INTERVAL: return "LBA Status Interval";
|
|
|
|
case NVME_FEAT_FID_HOST_BEHAVIOR: return "Host Behavior";
|
|
|
|
case NVME_FEAT_FID_SANITIZE: return "Sanitize";
|
2025-02-16 12:16:19 +01:00
|
|
|
case NVME_FEAT_FID_ENDURANCE_EVT_CFG: return "Endurance Event Group Configuration";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_FEAT_FID_IOCS_PROFILE: return "I/O Command Set Profile";
|
|
|
|
case NVME_FEAT_FID_SPINUP_CONTROL: return "Spinup Control";
|
|
|
|
case NVME_FEAT_FID_ENH_CTRL_METADATA: return "Enhanced Controller Metadata";
|
|
|
|
case NVME_FEAT_FID_CTRL_METADATA: return "Controller Metadata";
|
|
|
|
case NVME_FEAT_FID_NS_METADATA: return "Namespace Metadata";
|
|
|
|
case NVME_FEAT_FID_SW_PROGRESS: return "Software Progress";
|
|
|
|
case NVME_FEAT_FID_HOST_ID: return "Host Identifier";
|
|
|
|
case NVME_FEAT_FID_RESV_MASK: return "Reservation Notification Mask";
|
|
|
|
case NVME_FEAT_FID_RESV_PERSIST:return "Reservation Persistence";
|
2025-02-16 12:16:19 +01:00
|
|
|
case NVME_FEAT_FID_WRITE_PROTECT: return "Namespace Write Protect";
|
2025-02-16 12:20:48 +01:00
|
|
|
case NVME_FEAT_FID_FDP: return "Flexible Direct Placement";
|
|
|
|
case NVME_FEAT_FID_FDP_EVENTS: return "Flexible Direct Placement Events";
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
2025-02-16 11:31:10 +01:00
|
|
|
/*
|
|
|
|
* We don't use the "default:" statement to let the compiler warning if
|
2025-02-16 12:15:45 +01:00
|
|
|
* some values of the enum nvme_features_id are missing in the switch().
|
2025-02-16 11:31:10 +01:00
|
|
|
* The following return is acting as the default: statement.
|
|
|
|
*/
|
|
|
|
return "Unknown";
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *nvme_register_to_string(int reg)
|
|
|
|
{
|
|
|
|
switch (reg) {
|
|
|
|
case NVME_REG_CAP: return "Controller Capabilities";
|
|
|
|
case NVME_REG_VS: return "Version";
|
|
|
|
case NVME_REG_INTMS: return "Interrupt Vector Mask Set";
|
|
|
|
case NVME_REG_INTMC: return "Interrupt Vector Mask Clear";
|
|
|
|
case NVME_REG_CC: return "Controller Configuration";
|
|
|
|
case NVME_REG_CSTS: return "Controller Status";
|
|
|
|
case NVME_REG_NSSR: return "NVM Subsystem Reset";
|
|
|
|
case NVME_REG_AQA: return "Admin Queue Attributes";
|
|
|
|
case NVME_REG_ASQ: return "Admin Submission Queue Base Address";
|
|
|
|
case NVME_REG_ACQ: return "Admin Completion Queue Base Address";
|
|
|
|
case NVME_REG_CMBLOC: return "Controller Memory Buffer Location";
|
|
|
|
case NVME_REG_CMBSZ: return "Controller Memory Buffer Size";
|
|
|
|
default: return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *nvme_select_to_string(int sel)
|
|
|
|
{
|
|
|
|
switch (sel) {
|
|
|
|
case 0: return "Current";
|
|
|
|
case 1: return "Default";
|
|
|
|
case 2: return "Saved";
|
|
|
|
case 3: return "Supported capabilities";
|
2025-02-16 12:15:45 +01:00
|
|
|
case 8: return "Changed";
|
2025-02-16 11:09:01 +01:00
|
|
|
default: return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_select_result(__u32 result)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(select_result, 0, result);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_feature_lba_type_to_string(__u8 type)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case 0: return "Reserved";
|
|
|
|
case 1: return "Filesystem";
|
|
|
|
case 2: return "RAID";
|
|
|
|
case 3: return "Cache";
|
|
|
|
case 4: return "Page / Swap file";
|
|
|
|
default:
|
2025-02-16 11:31:10 +01:00
|
|
|
if (type >= 0x05 && type <= 0x7f)
|
2025-02-16 11:09:01 +01:00
|
|
|
return "Reserved";
|
|
|
|
else
|
|
|
|
return "Vendor Specific";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_lba_range(struct nvme_lba_range_type *lbrt, int nr_ranges,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(lba_range, flags, lbrt, nr_ranges);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_feature_wl_hints_to_string(__u8 wh)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (wh) {
|
|
|
|
case 0: return "No Workload";
|
|
|
|
case 1: return "Extended Idle Period with a Burst of Random Writes";
|
|
|
|
case 2: return "Heavy Sequential Writes";
|
|
|
|
default:return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_feature_temp_type_to_string(__u8 type)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case 0: return "Over Temperature Threshold";
|
|
|
|
case 1: return "Under Temperature Threshold";
|
|
|
|
default:return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_feature_temp_sel_to_string(__u8 sel)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 11:31:10 +01:00
|
|
|
switch (sel) {
|
2025-02-16 11:09:01 +01:00
|
|
|
case 0: return "Composite Temperature";
|
|
|
|
case 1: return "Temperature Sensor 1";
|
|
|
|
case 2: return "Temperature Sensor 2";
|
|
|
|
case 3: return "Temperature Sensor 3";
|
|
|
|
case 4: return "Temperature Sensor 4";
|
|
|
|
case 5: return "Temperature Sensor 5";
|
|
|
|
case 6: return "Temperature Sensor 6";
|
|
|
|
case 7: return "Temperature Sensor 7";
|
|
|
|
case 8: return "Temperature Sensor 8";
|
|
|
|
default:return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_ns_wp_cfg_to_string(enum nvme_ns_write_protect_cfg state)
|
2025-02-16 12:11:43 +01:00
|
|
|
{
|
|
|
|
switch (state) {
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_NS_WP_CFG_NONE:
|
2025-02-16 12:11:43 +01:00
|
|
|
return "No Write Protect";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_NS_WP_CFG_PROTECT:
|
2025-02-16 12:11:43 +01:00
|
|
|
return "Write Protect";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_NS_WP_CFG_PROTECT_POWER_CYCLE:
|
2025-02-16 12:11:43 +01:00
|
|
|
return "Write Protect Until Power Cycle";
|
2025-02-16 12:15:45 +01:00
|
|
|
case NVME_NS_WP_CFG_PROTECT_PERMANENT:
|
2025-02-16 12:11:43 +01:00
|
|
|
return "Permanent Write Protect";
|
|
|
|
default:
|
|
|
|
return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 11:09:01 +01:00
|
|
|
void nvme_directive_show(__u8 type, __u8 oper, __u16 spec, __u32 nsid, __u32 result,
|
|
|
|
void *buf, __u32 len, enum nvme_print_flags flags)
|
|
|
|
{
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(directive, flags, type, oper, spec, nsid, result, buf, len);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_plm_window_to_string(__u32 plm)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
|
|
|
switch (plm & 0x7) {
|
|
|
|
case 1:
|
|
|
|
return "Deterministic Window (DTWIN)";
|
|
|
|
case 2:
|
|
|
|
return "Non-deterministic Window (NDWIN)";
|
|
|
|
default:
|
|
|
|
return "Reserved";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-16 12:11:43 +01:00
|
|
|
void nvme_show_lba_status_info(__u32 result)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(lba_status_info, 0, result);
|
2025-02-16 11:31:10 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
const char *nvme_host_metadata_type_to_string(enum nvme_features_id fid,
|
|
|
|
__u8 type)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
|
|
|
switch (fid) {
|
|
|
|
case NVME_FEAT_FID_ENH_CTRL_METADATA:
|
|
|
|
case NVME_FEAT_FID_CTRL_METADATA:
|
|
|
|
switch (type) {
|
|
|
|
case NVME_CTRL_METADATA_OS_CTRL_NAME:
|
|
|
|
return "Operating System Controller Name";
|
|
|
|
case NVME_CTRL_METADATA_OS_DRIVER_NAME:
|
|
|
|
return "Operating System Driver Name";
|
|
|
|
case NVME_CTRL_METADATA_OS_DRIVER_VER:
|
|
|
|
return "Operating System Driver Version";
|
|
|
|
case NVME_CTRL_METADATA_PRE_BOOT_CTRL_NAME:
|
|
|
|
return "Pre-boot Controller Name";
|
|
|
|
case NVME_CTRL_METADATA_PRE_BOOT_DRIVER_NAME:
|
|
|
|
return "Pre-boot Driver Name";
|
|
|
|
case NVME_CTRL_METADATA_PRE_BOOT_DRIVER_VER:
|
|
|
|
return "Pre-boot Driver Version";
|
|
|
|
case NVME_CTRL_METADATA_SYS_PROC_MODEL:
|
|
|
|
return "System Processor Model";
|
|
|
|
case NVME_CTRL_METADATA_CHIPSET_DRV_NAME:
|
|
|
|
return "Chipset Driver Name";
|
|
|
|
case NVME_CTRL_METADATA_CHIPSET_DRV_VERSION:
|
|
|
|
return "Chipset Driver Version";
|
|
|
|
case NVME_CTRL_METADATA_OS_NAME_AND_BUILD:
|
|
|
|
return "Operating System Name and Build";
|
|
|
|
case NVME_CTRL_METADATA_SYS_PROD_NAME:
|
|
|
|
return "System Product Name";
|
|
|
|
case NVME_CTRL_METADATA_FIRMWARE_VERSION:
|
|
|
|
return "Firmware Version";
|
|
|
|
case NVME_CTRL_METADATA_OS_DRIVER_FILENAME:
|
|
|
|
return "Operating System Driver Filename";
|
|
|
|
case NVME_CTRL_METADATA_DISPLAY_DRV_NAME:
|
|
|
|
return "Display Driver Name";
|
|
|
|
case NVME_CTRL_METADATA_DISPLAY_DRV_VERSION:
|
|
|
|
return "Display Driver Version";
|
|
|
|
case NVME_CTRL_METADATA_HOST_DET_FAIL_REC:
|
|
|
|
return "Host-Determined Failure Record";
|
|
|
|
default:
|
|
|
|
return "Unknown Controller Type";
|
|
|
|
}
|
|
|
|
case NVME_FEAT_FID_NS_METADATA:
|
|
|
|
switch (type) {
|
|
|
|
case NVME_NS_METADATA_OS_NS_NAME:
|
|
|
|
return "Operating System Namespace Name";
|
|
|
|
case NVME_NS_METADATA_PRE_BOOT_NS_NAME:
|
|
|
|
return "Pre-boot Namespace Name";
|
|
|
|
case NVME_NS_METADATA_OS_NS_QUAL_1:
|
|
|
|
return "Operating System Namespace Name Qualifier 1";
|
|
|
|
case NVME_NS_METADATA_OS_NS_QUAL_2:
|
|
|
|
return "Operating System Namespace Name Qualifier 2";
|
|
|
|
default:
|
|
|
|
return "Unknown Namespace Type";
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return "Unknown Feature";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_feature_show_fields(enum nvme_features_id fid, unsigned int result, unsigned char *buf)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(show_feature_fields, 0, fid, result, buf);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void nvme_show_lba_status(struct nvme_lba_status *list, unsigned long len,
|
|
|
|
enum nvme_print_flags flags)
|
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(lba_status, flags, list, len);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
void nvme_dev_full_path(nvme_ns_t n, char *path, size_t len)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 11:31:10 +01:00
|
|
|
struct stat st;
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
snprintf(path, len, "/dev/%s", nvme_ns_get_name(n));
|
|
|
|
if (stat(path, &st) == 0)
|
2025-02-16 12:11:43 +01:00
|
|
|
return;
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
snprintf(path, len, "/dev/spdk/%s", nvme_ns_get_name(n));
|
|
|
|
if (stat(path, &st) == 0)
|
2025-02-16 11:31:10 +01:00
|
|
|
return;
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
/*
|
|
|
|
* We could start trying to search for it but let's make
|
|
|
|
* it simple and just don't show the path at all.
|
|
|
|
*/
|
|
|
|
snprintf(path, len, "%s", nvme_ns_get_name(n));
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
void nvme_generic_full_path(nvme_ns_t n, char *path, size_t len)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:15:45 +01:00
|
|
|
int head_instance;
|
|
|
|
int instance;
|
|
|
|
struct stat st;
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
sscanf(nvme_ns_get_name(n), "nvme%dn%d", &instance, &head_instance);
|
|
|
|
snprintf(path, len, "/dev/ng%dn%d", instance, head_instance);
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
if (stat(path, &st) == 0)
|
|
|
|
return;
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:23:16 +01:00
|
|
|
snprintf(path, len, "/dev/spdk/ng%dn%d", instance, head_instance);
|
2025-02-16 12:15:45 +01:00
|
|
|
if (stat(path, &st) == 0)
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* We could start trying to search for it but let's make
|
|
|
|
* it simple and just don't show the path at all.
|
|
|
|
*/
|
|
|
|
snprintf(path, len, "ng%dn%d", instance, head_instance);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:15:45 +01:00
|
|
|
void nvme_show_list_item(nvme_ns_t n)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(list_item, 0, n);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
2025-02-16 12:11:43 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_list_items(nvme_root_t r, enum nvme_print_flags flags)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(list_items, flags, r);
|
2025-02-16 12:15:45 +01:00
|
|
|
}
|
2025-02-16 12:13:48 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_topology(nvme_root_t r,
|
|
|
|
enum nvme_cli_topo_ranking ranking,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 12:15:45 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(topology_namespace, flags, r);
|
2025-02-16 11:09:01 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_message(bool error, const char *msg, ...)
|
2025-02-16 11:09:01 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
struct print_ops *ops;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, msg);
|
2025-02-16 11:09:01 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (argconfig_output_format_json(false))
|
|
|
|
ops = nvme_print_ops(JSON);
|
2025-02-16 11:09:01 +01:00
|
|
|
else
|
2025-02-16 12:24:13 +01:00
|
|
|
ops = nvme_print_ops(0);
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (!ops)
|
|
|
|
return;
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (!ops->show_message)
|
|
|
|
return;
|
|
|
|
ops->show_message(error, msg, ap);
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
va_end(ap);
|
2025-02-16 12:18:36 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_perror(const char *msg)
|
2025-02-16 12:18:36 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
struct print_ops *ops;
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (argconfig_output_format_json(false))
|
|
|
|
ops = nvme_print_ops(JSON);
|
|
|
|
else
|
|
|
|
ops = nvme_print_ops(0);
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (!ops)
|
|
|
|
return;
|
2025-02-16 12:18:36 +01:00
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
if (!ops->show_perror)
|
|
|
|
return;
|
|
|
|
ops->show_perror(msg);
|
2025-02-16 12:18:36 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_discovery_log(struct nvmf_discovery_log *log, uint64_t numrec,
|
|
|
|
enum nvme_print_flags flags)
|
2025-02-16 12:18:36 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(discovery_log, flags, log, numrec);
|
2025-02-16 12:18:36 +01:00
|
|
|
}
|
|
|
|
|
2025-02-16 12:24:13 +01:00
|
|
|
void nvme_show_connect_msg(nvme_ctrl_t c, enum nvme_print_flags flags)
|
2025-02-16 12:18:36 +01:00
|
|
|
{
|
2025-02-16 12:24:13 +01:00
|
|
|
nvme_print(connect_msg, flags, c);
|
2025-02-16 12:18:36 +01:00
|
|
|
}
|