[PATCH 0/2] bhyve: document new features

2025-04-12 Thread Roman Bogorodskiy
Roman Bogorodskiy (2): NEWS: bhyve: document new features docs: drvbhyve: document virtio-rnd support NEWS.rst | 14 ++ docs/drvbhyve.rst | 21 +++-- 2 files changed, 33 insertions(+), 2 deletions(-) -- 2.49.0

[PATCH 2/2] docs: drvbhyve: document virtio-rnd support

2025-04-12 Thread Roman Bogorodskiy
- Document the virtio random number generator device support - While here, remove mention of the specific FreeBSD version such as 10-STABLE, and just refer to the latest supported release. Signed-off-by: Roman Bogorodskiy --- docs/drvbhyve.rst | 21 +++-- 1 file changed, 19

[PATCH 1/2] NEWS: bhyve: document new features

2025-04-12 Thread Roman Bogorodskiy
Document the virtio random number generator device support and support. Signed-off-by: Roman Bogorodskiy --- NEWS.rst | 14 ++ 1 file changed, 14 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 4f1e8ecbdf..603c373390 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -24,6 +24,20 @@ v11.

[PATCH v2 1/2] conf: use const virDomainDef pointers

2025-04-12 Thread Roman Bogorodskiy
Some virDomainNet* functions use virDomainDef pointers even though they don't modify the domain config, so switch to const pointers there. Signed-off-by: Roman Bogorodskiy --- src/conf/domain_conf.c | 10 +- src/conf/domain_conf.h | 8 2 files changed, 9 insertions(+), 9 deleti

[PATCH v2 2/2] bhyve: use const virDomainDef pointer in bhyveBuildNetArgStr()

2025-04-12 Thread Roman Bogorodskiy
As virDomainNet* functions were converted to use const virDomainDef pointers, update bhyveBuildNetArgStr() as well, like it was before it was changed in e1e40b5035. Signed-off-by: Roman Bogorodskiy --- src/bhyve/bhyve_command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/

[PATCH v2 0/2] conf: use const virDomainDef pointers

2025-04-12 Thread Roman Bogorodskiy
Changes since v1: - Split domain_conf and bhyve changes into separate commits - Convert virDomainNetNotifyActualDevice() as well Roman Bogorodskiy (2): conf: use const virDomainDef pointers bhyve: use const virDomainDef pointer in bhyveBuildNetArgStr() src/bhyve/bhyve_command.c | 2 +- s