From 2daa28d40ba02497b6d02765ec33aa46e221f059 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 --- virtio/9p.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/virtio/9p.c b/virtio/9p.c index 3158cbc..add63fe 100644 --- a/virtio/9p.c +++ b/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"