summaryrefslogtreecommitdiffstats
path: root/plugins/sed/sed.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-02-19 10:45:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-02-19 10:45:34 +0000
commit749efe961f0e1a71461a9c79e6e4584d35af6e7f (patch)
treec953c007cbe4f60a147ab62f97937d58abb2e9ca /plugins/sed/sed.h
parentAdding upstream version 2.7.1. (diff)
downloadnvme-cli-749efe961f0e1a71461a9c79e6e4584d35af6e7f.tar.xz
nvme-cli-749efe961f0e1a71461a9c79e6e4584d35af6e7f.zip
Adding upstream version 2.8.upstream/2.8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'plugins/sed/sed.h')
-rw-r--r--plugins/sed/sed.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/sed/sed.h b/plugins/sed/sed.h
new file mode 100644
index 0000000..1618272
--- /dev/null
+++ b/plugins/sed/sed.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+#undef CMD_INC_FILE
+#define CMD_INC_FILE plugins/sed/sed
+
+#include "cmd.h"
+#include <linux/sed-opal.h>
+
+PLUGIN(NAME("sed", "SED Opal Command Set", NVME_VERSION),
+ COMMAND_LIST(
+ ENTRY("discover", "Discover SED Opal Locking Features", sed_opal_discover, "1")
+ ENTRY("initialize", "Initialize a SED Opal Device for locking", sed_opal_initialize)
+ ENTRY("revert", "Revert a SED Opal Device from locking", sed_opal_revert)
+ ENTRY("lock", "Lock a SED Opal Device", sed_opal_lock)
+ ENTRY("unlock", "Unlock a SED Opal Device", sed_opal_unlock)
+ ENTRY("password", "Change the SED Opal Device password", sed_opal_password)
+ )
+);
+
+#include "define_cmd.h"