2025-02-16 12:16:19 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2025-02-16 11:09:01 +01:00
|
|
|
#undef CMD_INC_FILE
|
|
|
|
#define CMD_INC_FILE plugins/netapp/netapp-nvme
|
|
|
|
|
|
|
|
#if !defined(NETAPP_NVME) || defined(CMD_HEADER_MULTI_READ)
|
|
|
|
#define NETAPP_NVME
|
|
|
|
|
|
|
|
#include "cmd.h"
|
|
|
|
|
2025-02-16 12:11:43 +01:00
|
|
|
PLUGIN(NAME("netapp", "NetApp vendor specific extensions", NVME_VERSION),
|
2025-02-16 11:09:01 +01:00
|
|
|
COMMAND_LIST(
|
|
|
|
ENTRY("smdevices", "NetApp SMdevices", netapp_smdevices)
|
|
|
|
ENTRY("ontapdevices", "NetApp ONTAPdevices", netapp_ontapdevices)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "define_cmd.h"
|