Re: [PATCH 3/3] qga/commands-posix: Fix listing ifaces for Solaris

2022-03-28 Thread Andrew Deason
On Mon, 21 Mar 2022 10:14:57 +0100 Michal Prívozník wrote: > On 3/20/22 22:38, Andrew Deason wrote: > > The code for guest-network-get-interfaces needs a couple of small > > adjustments for Solaris: > > > > - The results from SIOCGIFHWADDR are documented as being in ifr_addr, > > not ifr_hwadd

Re: [PATCH 3/3] qga/commands-posix: Fix listing ifaces for Solaris

2022-03-21 Thread Michal Prívozník
On 3/20/22 22:38, Andrew Deason wrote: > The code for guest-network-get-interfaces needs a couple of small > adjustments for Solaris: > > - The results from SIOCGIFHWADDR are documented as being in ifr_addr, > not ifr_hwaddr (ifr_hwaddr doesn't exist on Solaris). > > - The implementation of gue

[PATCH 3/3] qga/commands-posix: Fix listing ifaces for Solaris

2022-03-20 Thread Andrew Deason
The code for guest-network-get-interfaces needs a couple of small adjustments for Solaris: - The results from SIOCGIFHWADDR are documented as being in ifr_addr, not ifr_hwaddr (ifr_hwaddr doesn't exist on Solaris). - The implementation of guest_get_network_stats is Linux-specific, so hide it