Re: [Qemu-devel] [PATCH] linux-user: check if NETLINK_ROUTE is available

2016-06-07 Thread Riku Voipio
On Thu, Jun 02, 2016 at 10:14:15PM +0200, Laurent Vivier wrote: > Some IFLA_* symbols can be missing in the host linux/if_link.h, > but as they are enums and not "#defines", check in "configure" if > last known (IFLA_PROTO_DOWN) is available and if not, disable > management of NETLINK_ROUTE protoc

Re: [Qemu-devel] [PATCH] linux-user: check if NETLINK_ROUTE is available

2016-06-03 Thread Riku Voipio
On Thu, Jun 02, 2016 at 10:14:15PM +0200, Laurent Vivier wrote: > Some IFLA_* symbols can be missing in the host linux/if_link.h, > but as they are enums and not "#defines", check in "configure" if > last known (IFLA_PROTO_DOWN) is available and if not, disable > management of NETLINK_ROUTE protoc

Re: [Qemu-devel] [PATCH] linux-user: check if NETLINK_ROUTE is available

2016-06-03 Thread Laurent Vivier
Le 03/06/2016 à 10:32, Riku Voipio a écrit : > On Thu, Jun 02, 2016 at 10:14:15PM +0200, Laurent Vivier wrote: >> Some IFLA_* symbols can be missing in the host linux/if_link.h, >> but as they are enums and not "#defines", check in "configure" if >> last known (IFLA_PROTO_DOWN) is available and

[Qemu-devel] [PATCH] linux-user: check if NETLINK_ROUTE is available

2016-06-02 Thread Laurent Vivier
Some IFLA_* symbols can be missing in the host linux/if_link.h, but as they are enums and not "#defines", check in "configure" if last known (IFLA_PROTO_DOWN) is available and if not, disable management of NETLINK_ROUTE protocol. Signed-off-by: Laurent Vivier --- Note: This patch must be appl