Home
last modified time | relevance | path

Searched refs:host_ifconf (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsyscall.c4713 struct ifconf *host_ifconf; in do_ioctl_ifconf() local
4743 target_ifc_len = host_ifconf->ifc_len; in do_ioctl_ifconf()
4747 outbufsz = sizeof(*host_ifconf) + host_ifc_len; in do_ioctl_ifconf()
4753 host_ifconf = g_try_malloc(outbufsz); in do_ioctl_ifconf()
4754 if (!host_ifconf) { in do_ioctl_ifconf()
4757 memcpy(host_ifconf, buf_temp, sizeof(*host_ifconf)); in do_ioctl_ifconf()
4760 host_ifc_buf = (char *)host_ifconf + sizeof(*host_ifconf); in do_ioctl_ifconf()
4762 host_ifconf->ifc_len = host_ifc_len; in do_ioctl_ifconf()
4766 host_ifconf->ifc_buf = host_ifc_buf; in do_ioctl_ifconf()
4774 host_ifconf->ifc_len = target_ifc_len; in do_ioctl_ifconf()
[all …]