* [PATCH] qga: Add initial OpenBSD and NetBSD support
@ 2022-11-12 11:40 Brad Smith
2022-11-13 19:32 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 5+ messages in thread
From: Brad Smith @ 2022-11-12 11:40 UTC (permalink / raw)
To: Michael Roth, Konstantin Kostiuk; +Cc: qemu-devel
qga: Add initial OpenBSD and NetBSD support
Signed-off-by: Brad Smith <brad@comstyle.com>
---
meson.build | 2 +-
qga/commands-bsd.c | 5 +++++
qga/commands-posix.c | 9 +++++++--
qga/main.c | 6 +++---
4 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/meson.build b/meson.build
index cf3e517e56..5556356f14 100644
--- a/meson.build
+++ b/meson.build
@@ -75,7 +75,7 @@ have_tools = get_option('tools') \
.allowed()
have_ga = get_option('guest_agent') \
.disable_auto_if(not have_system and not have_tools) \
- .require(targetos in ['sunos', 'linux', 'windows', 'freebsd'],
+ .require(targetos in ['sunos', 'linux', 'windows', 'freebsd', 'netbsd', 'openbsd'],
error_message: 'unsupported OS for QEMU guest agent') \
.allowed()
have_block = have_system or have_tools
diff --git a/qga/commands-bsd.c b/qga/commands-bsd.c
index 15cade2d4c..17bddda1cf 100644
--- a/qga/commands-bsd.c
+++ b/qga/commands-bsd.c
@@ -21,7 +21,12 @@
#include <sys/ucred.h>
#include <sys/mount.h>
#include <net/if_dl.h>
+#if defined(__NetBSD__) || defined(__OpenBSD__)
+#include <net/if_arp.h>
+#include <netinet/if_ether.h>
+#else
#include <net/ethernet.h>
+#endif
#include <paths.h>
#if defined(CONFIG_FSFREEZE) || defined(CONFIG_FSTRIM)
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 32493d6383..86be320a1b 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -45,7 +45,12 @@
#include <arpa/inet.h>
#include <sys/socket.h>
#include <net/if.h>
+#if defined(__NetBSD__) || defined(__OpenBSD__)
+#include <net/if_arp.h>
+#include <netinet/if_ether.h>
+#else
#include <net/ethernet.h>
+#endif
#include <sys/types.h>
#ifdef CONFIG_SOLARIS
#include <sys/sockio.h>
@@ -2881,7 +2886,7 @@ static int guest_get_network_stats(const char *name,
return -1;
}
-#ifndef __FreeBSD__
+#ifndef CONFIG_BSD
/*
* Fill "buf" with MAC address by ifaddrs. Pointer buf must point to a
* buffer with ETHER_ADDR_LEN length at least.
@@ -2930,7 +2935,7 @@ bool guest_get_hw_addr(struct ifaddrs *ifa, unsigned char *buf,
close(sock);
return true;
}
-#endif /* __FreeBSD__ */
+#endif /* CONFIG_BSD */
/*
* Build information about guest interfaces
diff --git a/qga/main.c b/qga/main.c
index b3580508fa..0865c992f0 100644
--- a/qga/main.c
+++ b/qga/main.c
@@ -40,11 +40,11 @@
#include "commands-common.h"
#ifndef _WIN32
-#ifdef __FreeBSD__
+#ifdef CONFIG_BSD
#define QGA_VIRTIO_PATH_DEFAULT "/dev/vtcon/org.qemu.guest_agent.0"
-#else /* __FreeBSD__ */
+#else /* CONFIG_BSD */
#define QGA_VIRTIO_PATH_DEFAULT "/dev/virtio-ports/org.qemu.guest_agent.0"
-#endif /* __FreeBSD__ */
+#endif /* CONFIG_BSD */
#define QGA_SERIAL_PATH_DEFAULT "/dev/ttyS0"
#define QGA_STATE_RELATIVE_DIR "run"
#else
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] qga: Add initial OpenBSD and NetBSD support
2022-11-12 11:40 [PATCH] qga: Add initial OpenBSD and NetBSD support Brad Smith
@ 2022-11-13 19:32 ` Philippe Mathieu-Daudé
2022-11-17 8:50 ` Konstantin Kostiuk
0 siblings, 1 reply; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2022-11-13 19:32 UTC (permalink / raw)
To: Brad Smith, Michael Roth, Konstantin Kostiuk; +Cc: qemu-devel
On 12/11/22 12:40, Brad Smith wrote:
> qga: Add initial OpenBSD and NetBSD support
>
> Signed-off-by: Brad Smith <brad@comstyle.com>
> ---
> meson.build | 2 +-
> qga/commands-bsd.c | 5 +++++
> qga/commands-posix.c | 9 +++++++--
> qga/main.c | 6 +++---
> 4 files changed, 16 insertions(+), 6 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] qga: Add initial OpenBSD and NetBSD support
2022-11-13 19:32 ` Philippe Mathieu-Daudé
@ 2022-11-17 8:50 ` Konstantin Kostiuk
2022-12-26 14:02 ` Konstantin Kostiuk
0 siblings, 1 reply; 5+ messages in thread
From: Konstantin Kostiuk @ 2022-11-17 8:50 UTC (permalink / raw)
To: Philippe Mathieu-Daudé; +Cc: Brad Smith, Michael Roth, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 578 bytes --]
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
On Sun, Nov 13, 2022 at 9:32 PM Philippe Mathieu-Daudé <philmd@linaro.org>
wrote:
> On 12/11/22 12:40, Brad Smith wrote:
> > qga: Add initial OpenBSD and NetBSD support
> >
> > Signed-off-by: Brad Smith <brad@comstyle.com>
> > ---
> > meson.build | 2 +-
> > qga/commands-bsd.c | 5 +++++
> > qga/commands-posix.c | 9 +++++++--
> > qga/main.c | 6 +++---
> > 4 files changed, 16 insertions(+), 6 deletions(-)
>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>
>
[-- Attachment #2: Type: text/html, Size: 1111 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] qga: Add initial OpenBSD and NetBSD support
2022-11-17 8:50 ` Konstantin Kostiuk
@ 2022-12-26 14:02 ` Konstantin Kostiuk
2022-12-27 3:32 ` Brad Smith
0 siblings, 1 reply; 5+ messages in thread
From: Konstantin Kostiuk @ 2022-12-26 14:02 UTC (permalink / raw)
To: Brad Smith; +Cc: Philippe Mathieu-Daudé, Michael Roth, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 750 bytes --]
the series was merged
Best Regards,
Konstantin Kostiuk.
On Thu, Nov 17, 2022 at 10:50 AM Konstantin Kostiuk <kkostiuk@redhat.com>
wrote:
> Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
>
> On Sun, Nov 13, 2022 at 9:32 PM Philippe Mathieu-Daudé <philmd@linaro.org>
> wrote:
>
>> On 12/11/22 12:40, Brad Smith wrote:
>> > qga: Add initial OpenBSD and NetBSD support
>> >
>> > Signed-off-by: Brad Smith <brad@comstyle.com>
>> > ---
>> > meson.build | 2 +-
>> > qga/commands-bsd.c | 5 +++++
>> > qga/commands-posix.c | 9 +++++++--
>> > qga/main.c | 6 +++---
>> > 4 files changed, 16 insertions(+), 6 deletions(-)
>>
>> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>>
>>
[-- Attachment #2: Type: text/html, Size: 1705 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-12-27 3:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-12 11:40 [PATCH] qga: Add initial OpenBSD and NetBSD support Brad Smith
2022-11-13 19:32 ` Philippe Mathieu-Daudé
2022-11-17 8:50 ` Konstantin Kostiuk
2022-12-26 14:02 ` Konstantin Kostiuk
2022-12-27 3:32 ` Brad Smith
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).