We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef23130 commit bfd2375Copy full SHA for bfd2375
nvme-print-binary.c
@@ -307,6 +307,11 @@ static void binary_effects_log_pages(struct list_head *list)
307
}
308
309
310
+static void binary_mgmt_addr_list_log(struct nvme_mgmt_addr_list_log *ma_list)
311
+{
312
+ d_raw((unsigned char *)ma_list, sizeof(*ma_list));
313
+}
314
+
315
static struct print_ops binary_print_ops = {
316
/* libnvme types.h print functions */
317
.ana_log = binary_ana_log,
@@ -373,6 +378,7 @@ static struct print_ops binary_print_ops = {
373
378
.d = NULL,
374
379
.show_init = NULL,
375
380
.show_finish = NULL,
381
+ .mgmt_addr_list_log = binary_mgmt_addr_list_log,
376
382
377
383
/* libnvme tree print functions */
384
.list_item = NULL,
0 commit comments