diff options
author | Greg Kurz | 2016-06-06 11:52:34 +0200 |
---|---|---|
committer | Greg Kurz | 2016-06-06 11:52:34 +0200 |
commit | af8b38b0d1878950d27156fd350e5457fd8a15a1 (patch) | |
tree | 76e54c25ba9fc35a07eadf74aeb266dfa1265d13 /hw/9pfs | |
parent | 9p: some more cleanup in #include directives (diff) | |
download | qemu-af8b38b0d1878950d27156fd350e5457fd8a15a1.tar.gz qemu-af8b38b0d1878950d27156fd350e5457fd8a15a1.tar.xz qemu-af8b38b0d1878950d27156fd350e5457fd8a15a1.zip |
9p/fsdev: remove obsolete references to virtio
Most of the 9p code is now virtio agnostic. This patch does a final cleanup:
- drop references to Virtio from the header comments
- fix includes
Also drop a couple of leading empty lines while here.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Diffstat (limited to 'hw/9pfs')
-rw-r--r-- | hw/9pfs/9p.h | 2 | ||||
-rw-r--r-- | hw/9pfs/codir.c | 3 | ||||
-rw-r--r-- | hw/9pfs/cofile.c | 3 | ||||
-rw-r--r-- | hw/9pfs/cofs.c | 3 | ||||
-rw-r--r-- | hw/9pfs/coth.c | 1 | ||||
-rw-r--r-- | hw/9pfs/coth.h | 3 | ||||
-rw-r--r-- | hw/9pfs/coxattr.c | 3 |
7 files changed, 6 insertions, 12 deletions
diff --git a/hw/9pfs/9p.h b/hw/9pfs/9p.h index 1a19418a8c..43378943cd 100644 --- a/hw/9pfs/9p.h +++ b/hw/9pfs/9p.h @@ -5,8 +5,6 @@ #include <utime.h> #include <sys/resource.h> #include <glib.h> -#include "standard-headers/linux/virtio_9p.h" -#include "hw/virtio/virtio.h" #include "fsdev/file-op-9p.h" #include "fsdev/9p-iov-marshal.h" #include "qemu/thread.h" diff --git a/hw/9pfs/codir.c b/hw/9pfs/codir.c index 91df7f7a7b..8e3ba17bae 100644 --- a/hw/9pfs/codir.c +++ b/hw/9pfs/codir.c @@ -1,6 +1,5 @@ - /* - * Virtio 9p backend + * 9p backend * * Copyright IBM, Corp. 2011 * diff --git a/hw/9pfs/cofile.c b/hw/9pfs/cofile.c index 293483e0c9..10343c0a93 100644 --- a/hw/9pfs/cofile.c +++ b/hw/9pfs/cofile.c @@ -1,6 +1,5 @@ - /* - * Virtio 9p backend + * 9p backend * * Copyright IBM, Corp. 2011 * diff --git a/hw/9pfs/cofs.c b/hw/9pfs/cofs.c index 18c81cb3dc..70f584fcbd 100644 --- a/hw/9pfs/cofs.c +++ b/hw/9pfs/cofs.c @@ -1,6 +1,5 @@ - /* - * Virtio 9p backend + * 9p backend * * Copyright IBM, Corp. 2011 * diff --git a/hw/9pfs/coth.c b/hw/9pfs/coth.c index 464293ef2e..9b1151b60e 100644 --- a/hw/9pfs/coth.c +++ b/hw/9pfs/coth.c @@ -16,7 +16,6 @@ #include "qemu-common.h" #include "block/thread-pool.h" #include "qemu/coroutine.h" -#include "qemu/main-loop.h" #include "coth.h" /* Called from QEMU I/O thread. */ diff --git a/hw/9pfs/coth.h b/hw/9pfs/coth.h index a911cbb165..6adc773d46 100644 --- a/hw/9pfs/coth.h +++ b/hw/9pfs/coth.h @@ -17,7 +17,8 @@ #include "qemu/thread.h" #include "qemu/coroutine.h" -#include "virtio-9p.h" +#include "qemu/main-loop.h" +#include "9p.h" /* * we want to use bottom half because we want to make sure the below diff --git a/hw/9pfs/coxattr.c b/hw/9pfs/coxattr.c index 6ad96ea9f6..133c4ead37 100644 --- a/hw/9pfs/coxattr.c +++ b/hw/9pfs/coxattr.c @@ -1,6 +1,5 @@ - /* - * Virtio 9p backend + * 9p backend * * Copyright IBM, Corp. 2011 * |