[PATCH 0/3] qga: Implement guest-network-get-interfaces for Solaris

Andrew Deason posted 3 patches 2 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220320213843.4544-1-adeason@sinenomine.net
Test checkpatch passed
Maintainers: Michael Roth <michael.roth@amd.com>
meson.build          |   1 +
qga/commands-posix.c | 488 +++++++++++++++++++++++++++------------------------
2 files changed, 260 insertions(+), 229 deletions(-)
[PATCH 0/3] qga: Implement guest-network-get-interfaces for Solaris
Posted by Andrew Deason 2 years, 1 month ago
This implements the guest agent guest-network-get-interfaces command on
Solaris. Solaris provides a getifaddrs() that's very similar to the Linux one,
so the implementation is mostly the same.

Andrew Deason (3):
  qga/commands-posix: Use getifaddrs when available
  qga/commands-posix: Fix iface hw address detection
  qga/commands-posix: Fix listing ifaces for Solaris

 meson.build          |   1 +
 qga/commands-posix.c | 488 +++++++++++++++++++++++++++------------------------
 2 files changed, 260 insertions(+), 229 deletions(-)

-- 
2.11.0
Re: [PATCH 0/3] qga: Implement guest-network-get-interfaces for Solaris
Posted by Michal Prívozník 2 years, 1 month ago
On 3/20/22 22:38, Andrew Deason wrote:
> This implements the guest agent guest-network-get-interfaces command on
> Solaris. Solaris provides a getifaddrs() that's very similar to the Linux one,
> so the implementation is mostly the same.
> 
> Andrew Deason (3):
>   qga/commands-posix: Use getifaddrs when available
>   qga/commands-posix: Fix iface hw address detection
>   qga/commands-posix: Fix listing ifaces for Solaris
> 
>  meson.build          |   1 +
>  qga/commands-posix.c | 488 +++++++++++++++++++++++++++------------------------
>  2 files changed, 260 insertions(+), 229 deletions(-)
> 

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal