Merging upstream version 2.12.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
078c0dbcc0
commit
635faa7346
571 changed files with 10718 additions and 2738 deletions
30
plugins/lm/lm-nvme.h
Normal file
30
plugins/lm/lm-nvme.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* Copyright (c) 2024 Samsung Electronics Co., LTD.
|
||||
*
|
||||
* Authors: Nate Thornton <n.thornton@samsung.com>
|
||||
*/
|
||||
|
||||
#undef CMD_INC_FILE
|
||||
#define CMD_INC_FILE plugins/lm/lm-nvme
|
||||
|
||||
#if !defined(LIVE_MIGRATION_NVME) || defined(CMD_HEADER_MULTI_READ)
|
||||
#define LIVE_MIGRATION_NVME
|
||||
|
||||
#include "cmd.h"
|
||||
|
||||
PLUGIN(NAME("lm", "Live Migration NVMe extensions", NVME_VERSION),
|
||||
COMMAND_LIST(
|
||||
ENTRY("create-cdq", "Create Controller Data Queue", lm_create_cdq)
|
||||
ENTRY("delete-cdq", "Delete Controller Data Queue", lm_delete_cdq)
|
||||
ENTRY("track-send", "Track Send Command", lm_track_send)
|
||||
ENTRY("migration-send", "Migration Send", lm_migration_send)
|
||||
ENTRY("migration-recv", "Migration Receive", lm_migration_recv)
|
||||
ENTRY("set-cdq", "Set Feature - Controller Data Queue (FID 21h)", lm_set_cdq)
|
||||
ENTRY("get-cdq", "Get Feature - Controller Data Queue (FID 21h)", lm_get_cdq)
|
||||
)
|
||||
);
|
||||
|
||||
#endif
|
||||
|
||||
#include "define_cmd.h"
|
Loading…
Add table
Add a link
Reference in a new issue