On 08/08/2018 01:48 PM, Juan Quintela wrote: > Signed-off-by: Juan Quintela <quint...@redhat.com> > --- > hw/virtio/Makefile.objs | 1 + > hw/virtio/vhost-user-scsi-pci.c | 89 +++++++++++++++++++++++++++++++++ > hw/virtio/virtio-pci.c | 58 --------------------- > 3 files changed, 90 insertions(+), 58 deletions(-) > create mode 100644 hw/virtio/vhost-user-scsi-pci.c > > diff --git a/hw/virtio/Makefile.objs b/hw/virtio/Makefile.objs > index 2c95c55bd0..a5d2e38d3a 100644 > --- a/hw/virtio/Makefile.objs > +++ b/hw/virtio/Makefile.objs > @@ -12,6 +12,7 @@ obj-$(call > land,$(CONFIG_VIRTIO_CRYPTO),$(CONFIG_VIRTIO_PCI)) += virtio-crypto-p > obj-$(CONFIG_LINUX) += vhost.o vhost-backend.o vhost-user.o > obj-$(CONFIG_VHOST_VSOCK) += vhost-vsock.o vhost-vsock-pci.o > obj-$(CONFIG_VHOST_USER_BLK) += vhost-user-blk-pci.o > +obj-$(CONFIG_VHOST_USER_SCSI) += vhost-user-scsi-pci.o > obj-$(CONFIG_VIRTIO_INPUT_HOST) += virtio-input-host-pci.o > obj-$(CONFIG_VIRTIO_INPUT) += virtio-input-pci.o > obj-$(CONFIG_VIRTIO_RNG) += virtio-rng-pci.o > diff --git a/hw/virtio/vhost-user-scsi-pci.c b/hw/virtio/vhost-user-scsi-pci.c > new file mode 100644 > index 0000000000..6f3a73c2a8 > --- /dev/null > +++ b/hw/virtio/vhost-user-scsi-pci.c > @@ -0,0 +1,89 @@ > +/* > + * Virtio PCI Bindings > + * > + * Copyright IBM, Corp. 2007 > + * Copyright (c) 2009 CodeSourcery > + * > + * Authors: > + * Anthony Liguori <aligu...@us.ibm.com> > + * Paul Brook <p...@codesourcery.com> > + * > + * This work is licensed under the terms of the GNU GPL, version 2. See > + * the COPYING file in the top-level directory. > + * > + * Contributions after 2012-01-13 are licensed under the terms of the > + * GNU GPL, version 2 or (at your option) any later version. > + */
The vhost-user-scsi code has been introduced in 2017 by Felipe Franciosi, so I think you could remove the above "Authors" lines, and adjust the GPL license statement to plain GPLv2+ here. Thomas