Print newly added fields in the error information log page to show which
command is errored by opcode. This commit is based on TP4113.
Signed-off-by: Minwoo Im <minwoo.im@samsung.com>
printf("vs : %d\n", err_log[i].vs);
printf("trtype : %s\n",
nvme_trtype_to_string(err_log[i].trtype));
+ printf("csi : %d\n", err_log[i].csi);
+ printf("opcode : %#x\n", err_log[i].opcode);
printf("cs : %#"PRIx64"\n",
le64_to_cpu(err_log[i].cs));
printf("trtype_spec_info: %#x\n", err_log[i].trtype_spec_info);
+ printf("log_page_version: %d\n", err_log[i].log_page_version);
printf(".................\n");
}
}