1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright © 2022 Dell Inc. or its subsidiaries. All Rights Reserved.
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <inttypes.h>
#include "common.h"
#include "nvme.h"
#include "libnvme.h"
#include "plugin.h"
#define CREATE_CMD
#include "dell-nvme.h"
#define ARRAY_NAME_LEN 80
struct nvme_vu_id_ctrl_field {
__u16 dell_mjr;
__u16 dell_mnr;
__u16 dell_ter;
__u8 reserved0[1018];
};
static void dell_id_ctrl(__u8 *vs, struct json_object *root)
{
struct nvme_vu_id_ctrl_field *id = (struct nvme_vu_id_ctrl_field *)vs;
char array_ver[16] = { 0 };
char array_name[ARRAY_NAME_LEN + 1] = {0};
snprintf(array_ver, sizeof(array_ver), "0x%04x%04x%04x",
le16_to_cpu(id->dell_mjr),
le16_to_cpu(id->dell_mnr),
le16_to_cpu(id->dell_ter));
memcpy(array_name, vs + sizeof(array_ver), ARRAY_NAME_LEN);
if (root) {
json_object_add_value_string(root, "array_name", strlen(array_name) > 1 ? array_name : "NULL");
json_object_add_value_string(root, "array_ver", array_ver);
return;
}
printf("array_name : %s\n", strlen(array_name) > 1 ? array_name : "NULL");
printf("array_ver : %s\n", array_ver);
}
static int id_ctrl(int argc, char **argv, struct command *cmd,
struct plugin *plugin)
{
return __id_ctrl(argc, argv, cmd, plugin, dell_id_ctrl);
}
|