From: Minwoo Im Date: Tue, 30 Jan 2018 09:55:27 +0000 (+0900) Subject: nvme-cli: add command specific field to json output of error-log X-Git-Tag: v1.6~96^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2cae38c63b3c0abc53fe9ab20bb8b3f84bf61cd9;p=users%2Fsagi%2Fnvme-cli.git nvme-cli: add command specific field to json output of error-log Add command specific field to json output of error-log command. This field was added in commit 662c1618 without considering json output format. Fixes: 662c1618("nvme-cli: add print for command specific info field of error log page") Signed-off-by: Minwoo Im --- diff --git a/nvme-print.c b/nvme-print.c index 1ca4b711..2e8e56f1 100644 --- a/nvme-print.c +++ b/nvme-print.c @@ -1841,6 +1841,7 @@ void json_error_log(struct nvme_error_log_page *err_log, int entries, const char json_object_add_value_int(error, "lba", err_log[i].lba); json_object_add_value_int(error, "nsid", err_log[i].nsid); json_object_add_value_int(error, "vs", err_log[i].vs); + json_object_add_value_uint(error, "cs", err_log[i].cs); json_array_add_value_object(errors, error); }