[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 4/7] linux-user: add new netlink types
From: |
Laurent Vivier |
Subject: |
[PULL 4/7] linux-user: add new netlink types |
Date: |
Tue, 14 Jul 2020 09:32:56 +0200 |
Only implement IFLA_PERM_ADDRESS to fix the following error:
Unknown host QEMU_IFLA type: 54
The couple of other ones, IFLA_PROP_LIST and IFLA_ALT_IFNAME, have
been introduced to be used with RTM_NEWLINKPROP, RTM_DELLINKPROP and
RTM_GETLINKPROP that are not implemented by QEMU.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20200709072332.890440-1-laurent@vivier.eu>
---
linux-user/fd-trans.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/linux-user/fd-trans.c b/linux-user/fd-trans.c
index c0687c52e62b..5d49a53552b2 100644
--- a/linux-user/fd-trans.c
+++ b/linux-user/fd-trans.c
@@ -133,6 +133,9 @@ enum {
QEMU_IFLA_NEW_IFINDEX,
QEMU_IFLA_MIN_MTU,
QEMU_IFLA_MAX_MTU,
+ QEMU_IFLA_PROP_LIST,
+ QEMU_IFLA_ALT_IFNAME,
+ QEMU_IFLA_PERM_ADDRESS,
QEMU___IFLA_MAX
};
@@ -807,6 +810,7 @@ static abi_long host_to_target_data_link_rtattr(struct
rtattr *rtattr)
/* binary stream */
case QEMU_IFLA_ADDRESS:
case QEMU_IFLA_BROADCAST:
+ case QEMU_IFLA_PERM_ADDRESS:
/* string */
case QEMU_IFLA_IFNAME:
case QEMU_IFLA_QDISC:
--
2.26.2
- [PULL 0/7] Linux user for 5.1 patches, Laurent Vivier, 2020/07/14
- [PULL 1/7] linux-user: Use EPROTONOSUPPORT for unimplemented netlink protocols, Laurent Vivier, 2020/07/14
- [PULL 3/7] linux-user: Fix Coverity CID 1430271 / CID 1430272, Laurent Vivier, 2020/07/14
- [PULL 2/7] linux-user: refactor ipc syscall and support of semtimedop syscall, Laurent Vivier, 2020/07/14
- [PULL 5/7] linux-user: add netlink RTM_SETLINK command, Laurent Vivier, 2020/07/14
- [PULL 4/7] linux-user: add new netlink types,
Laurent Vivier <=
- [PULL 7/7] linux-user: fix print_syscall_err() when syscall returned value is negative, Laurent Vivier, 2020/07/14
- [PULL 6/7] linux-user: fix the errno value in print_syscall_err(), Laurent Vivier, 2020/07/14
- Re: [PULL 0/7] Linux user for 5.1 patches, no-reply, 2020/07/14
- Re: [PULL 0/7] Linux user for 5.1 patches, Peter Maydell, 2020/07/14