2209bd050a
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>
13 lines
464 B
Makefile
13 lines
464 B
Makefile
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 9p-iov-marshal.o
|
|
else
|
|
common-obj-y = qemu-fsdev-dummy.o
|
|
endif
|
|
common-obj-y += qemu-fsdev-opts.o
|
|
|
|
# Toplevel always builds this; targets without virtio will put it in
|
|
# common-obj-y
|
|
common-obj-$(CONFIG_ALL) += qemu-fsdev-dummy.o
|