We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ccb47d commit 5e1fd04Copy full SHA for 5e1fd04
nvme-print-json.c
@@ -2543,6 +2543,8 @@ static void json_print_nvme_subsystem_list(nvme_root_t r, bool show_ana)
2543
if (json_print_ops.flags & VERBOSE) {
2544
obj_add_str(subsystem_attrs, "Model",
2545
nvme_subsystem_get_model(s));
2546
+ obj_add_str(subsystem_attrs, "Firmware",
2547
+ nvme_subsystem_get_fw_rev(s));
2548
obj_add_str(subsystem_attrs, "IOPolicy",
2549
nvme_subsystem_get_iopolicy(s));
2550
obj_add_str(subsystem_attrs, "Type",
@@ -4501,6 +4503,8 @@ static void json_simple_topology(nvme_root_t r)
4501
4503
4502
4504
4505
4506
4507
4508
4509
4510
nvme-print-stdout.c
@@ -1114,6 +1114,8 @@ static void stdout_subsys_config(nvme_subsystem_t s)
1114
if (stdout_print_ops.flags & VERBOSE) {
1115
printf("%*s model=%s\n", len, " ",
1116
1117
+ printf("%*s firmware=%s\n", len, " ",
1118
1119
printf("%*s iopolicy=%s\n", len, " ",
1120
1121
printf("%*s type=%s\n", len, " ",
0 commit comments