1
0
Fork 0

Merging upstream version 2.1~rc0 (Closes: #1015722).

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:16:19 +01:00
parent 9489161ac8
commit 316e846c86
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
504 changed files with 6751 additions and 2957 deletions

54
plugins/dell/dell-nvme.c Normal file
View file

@ -0,0 +1,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);
}

18
plugins/dell/dell-nvme.h Normal file
View file

@ -0,0 +1,18 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#undef CMD_INC_FILE
#define CMD_INC_FILE plugins/dell/dell-nvme
#if !defined(DELL_NVME) || defined(CMD_HEADER_MULTI_READ)
#define DELL_NVME
#include "cmd.h"
PLUGIN(NAME("dell", "DELL vendor specific extensions", NVME_VERSION),
COMMAND_LIST(
ENTRY("id-ctrl", "Send NVMe Identify Controller", id_ctrl)
)
);
#endif
#include "define_cmd.h"