Browse Source

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>
pull/42/head
Greg Kurz 10 years ago
parent
commit
af8b38b0d1
  1. 2
      fsdev/file-op-9p.h
  2. 2
      fsdev/qemu-fsdev-dummy.c
  3. 2
      fsdev/qemu-fsdev-opts.c
  4. 2
      fsdev/qemu-fsdev.c
  5. 2
      fsdev/qemu-fsdev.h
  6. 2
      hw/9pfs/9p.h
  7. 3
      hw/9pfs/codir.c
  8. 3
      hw/9pfs/cofile.c
  9. 3
      hw/9pfs/cofs.c
  10. 1
      hw/9pfs/coth.c
  11. 3
      hw/9pfs/coth.h
  12. 3
      hw/9pfs/coxattr.c

2
fsdev/file-op-9p.h

@ -1,5 +1,5 @@
/*
* Virtio 9p
* 9p
*
* Copyright IBM, Corp. 2010
*

2
fsdev/qemu-fsdev-dummy.c

@ -1,5 +1,5 @@
/*
* Virtio 9p
* 9p
*
* Copyright IBM, Corp. 2010
*

2
fsdev/qemu-fsdev-opts.c

@ -1,5 +1,5 @@
/*
* Virtio 9p
* 9p
*
* This work is licensed under the terms of the GNU GPL, version 2 or
* later. See the COPYING file in the top-level directory.

2
fsdev/qemu-fsdev.c

@ -1,5 +1,5 @@
/*
* Virtio 9p
* 9p
*
* Copyright IBM, Corp. 2010
*

2
fsdev/qemu-fsdev.h

@ -1,5 +1,5 @@
/*
* Virtio 9p
* 9p
*
* Copyright IBM, Corp. 2010
*

2
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"

3
hw/9pfs/codir.c

@ -1,6 +1,5 @@
/*
* Virtio 9p backend
* 9p backend
*
* Copyright IBM, Corp. 2011
*

3
hw/9pfs/cofile.c

@ -1,6 +1,5 @@
/*
* Virtio 9p backend
* 9p backend
*
* Copyright IBM, Corp. 2011
*

3
hw/9pfs/cofs.c

@ -1,6 +1,5 @@
/*
* Virtio 9p backend
* 9p backend
*
* Copyright IBM, Corp. 2011
*

1
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. */

3
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

3
hw/9pfs/coxattr.c

@ -1,6 +1,5 @@
/*
* Virtio 9p backend
* 9p backend
*
* Copyright IBM, Corp. 2011
*

Loading…
Cancel
Save