From: Aneesh Kumar K.V Date: Sat, 18 Jun 2011 15:37:28 +0000 (+0530) Subject: tools/kvm/9p: Always include system header before kernel headers X-Git-Tag: next-20110824~3^2~196 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ccffbc14b7a43541156775c5116097baec5929bb;p=karo-tx-linux.git tools/kvm/9p: Always include system header before kernel headers Otherwise many things can break, such as mapping of stat to stat64 Cc: Sasha Levin Signed-off-by: Aneesh Kumar K.V Signed-off-by: Pekka Enberg --- diff --git a/tools/kvm/virtio/9p.c b/tools/kvm/virtio/9p.c index 3158cbc29f2e..add63fe11aed 100644 --- a/tools/kvm/virtio/9p.c +++ b/tools/kvm/virtio/9p.c @@ -10,16 +10,16 @@ #include "kvm/irq.h" #include "kvm/ioeventfd.h" -#include -#include -#include - #include #include #include #include #include +#include +#include +#include + #define NUM_VIRT_QUEUES 1 #define VIRTIO_P9_QUEUE_SIZE 128 #define VIRTIO_P9_DEFAULT_TAG "kvm_9p"