From ccffbc14b7a43541156775c5116097baec5929bb Mon Sep 17 00:00:00 2001 From: "Aneesh Kumar K.V" Date: Sat, 18 Jun 2011 21:07:28 +0530 Subject: [PATCH] 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 --- tools/kvm/virtio/9p.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" -- 2.39.5