[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH V4 0/5] string list functions
|
From: |
Steve Sistare |
|
Subject: |
[PATCH V4 0/5] string list functions |
|
Date: |
Fri, 12 Jan 2024 14:49:13 -0800 |
Add some handy string list functions for general use, and use them in
live migration functions. These will also be needed for cpr exec mode.
Changes in V4:
* added exec migration patch
Steve Sistare (5):
util: strList_from_string
qapi: QAPI_LIST_LENGTH
util: strv_from_strList
util: strList unit tests
migration: simplify exec migration functions
include/monitor/hmp.h | 1 -
include/qapi/util.h | 13 ++++++++
include/qemu/strList.h | 30 ++++++++++++++++++
migration/exec.c | 58 +++++-----------------------------
monitor/hmp-cmds.c | 19 -----------
net/net-hmp-cmds.c | 3 +-
stats/stats-hmp-cmds.c | 3 +-
tests/unit/meson.build | 1 +
tests/unit/test-strList.c | 80 +++++++++++++++++++++++++++++++++++++++++++++++
util/meson.build | 1 +
util/strList.c | 38 ++++++++++++++++++++++
11 files changed, 175 insertions(+), 72 deletions(-)
create mode 100644 include/qemu/strList.h
create mode 100644 tests/unit/test-strList.c
create mode 100644 util/strList.c
--
1.8.3.1
- [PATCH V4 0/5] string list functions,
Steve Sistare <=
- [PATCH V4 1/5] util: strList_from_string, Steve Sistare, 2024/01/12
- [PATCH V4 4/5] util: strList unit tests, Steve Sistare, 2024/01/12
- [PATCH V4 3/5] util: strv_from_strList, Steve Sistare, 2024/01/12
- [PATCH V4 2/5] qapi: QAPI_LIST_LENGTH, Steve Sistare, 2024/01/12
- [PATCH V4 5/5] migration: simplify exec migration functions, Steve Sistare, 2024/01/12