9pfs: rename virtio-9p-proxy.{c,h} to 9p-proxy.{c,h}

Those two files are not virtio specific. Rename them to use generic
names.

Fix includes in various C files. Change define guards and comments
in header files.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
This commit is contained in:
Wei Liu 2015-11-18 18:21:14 +00:00 committed by Aneesh Kumar K.V
parent d57b78002c
commit 494a8ebe71
4 changed files with 7 additions and 8 deletions

View file

@ -24,7 +24,7 @@
#include "qemu/sockets.h"
#include "qemu/xattr.h"
#include "virtio-9p-marshal.h"
#include "hw/9pfs/virtio-9p-proxy.h"
#include "hw/9pfs/9p-proxy.h"
#include "fsdev/virtio-9p-marshal.h"
#define PROGNAME "virtfs-proxy-helper"

View file

@ -1,5 +1,5 @@
/*
* Virtio 9p Proxy callback
* 9p Proxy callback
*
* Copyright IBM, Corp. 2011
*
@ -11,11 +11,10 @@
*/
#include <sys/socket.h>
#include <sys/un.h>
#include "hw/virtio/virtio.h"
#include "virtio-9p.h"
#include "qemu/error-report.h"
#include "fsdev/qemu-fsdev.h"
#include "virtio-9p-proxy.h"
#include "9p-proxy.h"
typedef struct V9fsProxy {
int sockfd;

View file

@ -1,5 +1,5 @@
/*
* Virtio 9p Proxy callback
* 9p Proxy callback
*
* Copyright IBM, Corp. 2011
*
@ -9,8 +9,8 @@
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*/
#ifndef _QEMU_VIRTIO_9P_PROXY_H
#define _QEMU_VIRTIO_9P_PROXY_H
#ifndef _QEMU_9P_PROXY_H
#define _QEMU_9P_PROXY_H
#define PROXY_MAX_IO_SZ (64 * 1024)
#define V9FS_FD_VALID INT_MAX

View file

@ -4,6 +4,6 @@ common-obj-y += virtio-9p-xattr-user.o 9p-posix-acl.o
common-obj-y += coth.o cofs.o codir.o cofile.o
common-obj-y += coxattr.o virtio-9p-synth.o
common-obj-$(CONFIG_OPEN_BY_HANDLE) += 9p-handle.o
common-obj-y += virtio-9p-proxy.o
common-obj-y += 9p-proxy.o
obj-y += virtio-9p-device.o