diff options
author | Wei Liu <wei.liu2@citrix.com> | 2015-11-30 16:14:29 +0000 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2016-01-08 14:35:06 +0530 |
commit | 2209bd050a9287120b74f8616837293d739c5fb3 (patch) | |
tree | a7e4380dcadee18ed1ecfed2458a174d9b7c5188 /fsdev/Makefile.objs | |
parent | 829dd2861a0f925526c5598d65a1bc05de9186c2 (diff) | |
download | qemu-2209bd050a9287120b74f8616837293d739c5fb3.tar.gz qemu-2209bd050a9287120b74f8616837293d739c5fb3.tar.bz2 qemu-2209bd050a9287120b74f8616837293d739c5fb3.zip |
fsdev: rename virtio-9p-marshal.{c,h} to 9p-iov-marshal.{c,h}
And rename v9fs_marshal to v9fs_iov_marshal, v9fs_unmarshal to
v9fs_iov_unmarshal.
The rationale behind this change is that, this marshalling interface is
used both by virtio and proxy helper. Renaming files and functions to
reflect the true nature of this interface.
Xen transport is going to have its own marshalling interface.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fsdev/Makefile.objs')
-rw-r--r-- | fsdev/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/Makefile.objs b/fsdev/Makefile.objs index 8357851fe7..1b120a4a7d 100644 --- a/fsdev/Makefile.objs +++ b/fsdev/Makefile.objs @@ -1,7 +1,7 @@ ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy) # Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add. # only pull in the actual virtio-9p device if we also enabled virtio. -common-obj-y = qemu-fsdev.o 9p-marshal.o virtio-9p-marshal.o +common-obj-y = qemu-fsdev.o 9p-marshal.o 9p-iov-marshal.o else common-obj-y = qemu-fsdev-dummy.o endif |