Blame plugins/shannon/shannon-nvme.h

Packit Service b7b338
#undef CMD_INC_FILE
Packit Service b7b338
#define CMD_INC_FILE plugins/shannon/shannon-nvme
Packit Service b7b338
Packit Service b7b338
#if !defined(SHANNON_NVME) || defined(CMD_HEADER_MULTI_READ)
Packit Service b7b338
#define SHANNON_NVME
Packit Service b7b338
Packit Service b7b338
#include "cmd.h"
Packit Service b7b338
Packit Service b7b338
PLUGIN(NAME("shannon", "Shannon vendor specific extensions"),
Packit Service b7b338
	COMMAND_LIST(
Packit Service b7b338
		ENTRY("smart-log-add", "Retrieve Shannon SMART Log, show it", get_additional_smart_log)
Packit Service b7b338
		ENTRY("get-feature-add", "Get Shannon feature and show the resulting value", get_additional_feature)
Packit Service b7b338
		ENTRY("set-feature-add", "Set a Shannon feature and show the resulting value", set_additional_feature)
Packit Service b7b338
		ENTRY("id-ctrl", "Shannon NVMe Identify Controller", shannon_id_ctrl)
Packit Service b7b338
	)
Packit Service b7b338
);
Packit Service b7b338
Packit Service b7b338
#endif
Packit Service b7b338
Packit Service b7b338
#include "define_cmd.h"