[PATCH 1/8] virtio_net: do not export "u16" to userspace

2013-04-01 Thread Paul Bolle
Building the lguest (userspace) tool fails with this error: In file included from lguest.c:46:0: /usr/include/linux/virtio_net.h:188:2: error: unknown type name ‘u16’ make: *** [lguest] Error 1 virtio_net.h exports "u16" to userspace. Use "__u16" instead of "u16". Signed-off-by: Paul

[PATCH 1/8] virtio_net: do not export u16 to userspace

2013-04-01 Thread Paul Bolle
Building the lguest (userspace) tool fails with this error: In file included from lguest.c:46:0: /usr/include/linux/virtio_net.h:188:2: error: unknown type name ‘u16’ make: *** [lguest] Error 1 virtio_net.h exports u16 to userspace. Use __u16 instead of u16. Signed-off-by: Paul Bolle