From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bs8DB-0007EO-U0 for qemu-devel@nongnu.org; Thu, 06 Oct 2016 08:55:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bs8D7-000785-JS for qemu-devel@nongnu.org; Thu, 06 Oct 2016 08:55:44 -0400 Received: from mout.kundenserver.de ([212.227.17.24]:49635) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bs8D7-00077N-7a for qemu-devel@nongnu.org; Thu, 06 Oct 2016 08:55:41 -0400 From: Laurent Vivier Date: Thu, 6 Oct 2016 14:55:10 +0200 Message-Id: <1475758510-4344-1-git-send-email-laurent@vivier.eu> Subject: [Qemu-devel] [PATCH] linux-user: add RTA_PRIORITY in netlink List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Riku Voipio Cc: qemu-devel@nongnu.org, Laurent Vivier Used by fedora21 on ppc64 in the network initialization Signed-off-by: Laurent Vivier --- linux-user/syscall.c | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 0815f30..d21d901 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2591,6 +2591,7 @@ static abi_long target_to_host_data_route_rtattr(struct rtattr *rtattr) case RTA_GATEWAY: break; /* u32 */ + case RTA_PRIORITY: case RTA_OIF: u32 = RTA_DATA(rtattr); *u32 = tswap32(*u32); -- 2.7.4