mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
qga: Move HW address getting to a separate function
In the next patch FreeBSD support for guest-network-get-interfaces will be added. Previously move Linux-specific code of HW address getting to a separate functions and add a dumb function to commands-bsd.c. Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Alexander Ivanov <alexander.ivanov@virtuozzo.com> Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
This commit is contained in:
committed by
Konstantin Kostiuk
parent
4fd0642e84
commit
a124109422
@ -167,3 +167,19 @@ GuestCpuStatsList *qmp_guest_get_cpustats(Error **errp)
|
||||
return NULL;
|
||||
}
|
||||
#endif /* CONFIG_FSFREEZE */
|
||||
|
||||
#ifdef HAVE_GETIFADDRS
|
||||
/*
|
||||
* Fill "buf" with MAC address by ifaddrs. Pointer buf must point to a
|
||||
* buffer with ETHER_ADDR_LEN length at least.
|
||||
*
|
||||
* Returns false in case of an error, otherwise true. "obtained" arguument
|
||||
* is true if a MAC address was obtained successful, otherwise false.
|
||||
*/
|
||||
bool guest_get_hw_addr(struct ifaddrs *ifa, unsigned char *buf,
|
||||
bool *obtained, Error **errp)
|
||||
{
|
||||
*obtained = false;
|
||||
return true;
|
||||
}
|
||||
#endif /* HAVE_GETIFADDRS */
|
||||
|
Reference in New Issue
Block a user