qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library
@ 2011-04-26 11:32 Jan Kiszka
  2011-05-14 22:44 ` Aurelien Jarno
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Kiszka @ 2011-04-26 11:32 UTC (permalink / raw)
  To: qemu-devel

This module has no target dependencies (except for target_phys_addr_t
size) and can thus be built as part of libhw.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 Makefile.objs   |    1 +
 Makefile.target |    1 -
 2 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile.objs b/Makefile.objs
index fad1dce..3192bf5 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -171,6 +171,7 @@ user-obj-y += cutils.o cache-utils.o
 hw-obj-y =
 hw-obj-y += vl.o loader.o
 hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o
+hw-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
 hw-obj-y += fw_cfg.o
 hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o
 hw-obj-$(CONFIG_PCI) += msix.o msi.o
diff --git a/Makefile.target b/Makefile.target
index cfc7091..5da9e59 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -191,7 +191,6 @@ obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
 # need to fix this properly
 obj-$(CONFIG_NO_PCI) += pci-stub.o
 obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
 obj-y += vhost_net.o
 obj-$(CONFIG_VHOST_NET) += vhost.o
 obj-$(CONFIG_REALLY_VIRTFS) += virtio-9p.o
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library
  2011-04-26 11:32 [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library Jan Kiszka
@ 2011-05-14 22:44 ` Aurelien Jarno
  2011-06-07 15:55   ` Jan Kiszka
  0 siblings, 1 reply; 4+ messages in thread
From: Aurelien Jarno @ 2011-05-14 22:44 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: qemu-devel

On Tue, Apr 26, 2011 at 01:32:08PM +0200, Jan Kiszka wrote:
> This module has no target dependencies (except for target_phys_addr_t
> size) and can thus be built as part of libhw.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>  Makefile.objs   |    1 +
>  Makefile.target |    1 -
>  2 files changed, 1 insertions(+), 1 deletions(-)

Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>

> diff --git a/Makefile.objs b/Makefile.objs
> index fad1dce..3192bf5 100644
> --- a/Makefile.objs
> +++ b/Makefile.objs
> @@ -171,6 +171,7 @@ user-obj-y += cutils.o cache-utils.o
>  hw-obj-y =
>  hw-obj-y += vl.o loader.o
>  hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o
> +hw-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
>  hw-obj-y += fw_cfg.o
>  hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o
>  hw-obj-$(CONFIG_PCI) += msix.o msi.o
> diff --git a/Makefile.target b/Makefile.target
> index cfc7091..5da9e59 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -191,7 +191,6 @@ obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
>  # need to fix this properly
>  obj-$(CONFIG_NO_PCI) += pci-stub.o
>  obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
> -obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
>  obj-y += vhost_net.o
>  obj-$(CONFIG_VHOST_NET) += vhost.o
>  obj-$(CONFIG_REALLY_VIRTFS) += virtio-9p.o
> -- 
> 1.7.1
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library
  2011-05-14 22:44 ` Aurelien Jarno
@ 2011-06-07 15:55   ` Jan Kiszka
  2011-06-08  8:20     ` Stefan Hajnoczi
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Kiszka @ 2011-06-07 15:55 UTC (permalink / raw)
  To: Aurelien Jarno; +Cc: qemu-trivial, qemu-devel

On 2011-05-15 00:44, Aurelien Jarno wrote:
> On Tue, Apr 26, 2011 at 01:32:08PM +0200, Jan Kiszka wrote:
>> This module has no target dependencies (except for target_phys_addr_t
>> size) and can thus be built as part of libhw.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>  Makefile.objs   |    1 +
>>  Makefile.target |    1 -
>>  2 files changed, 1 insertions(+), 1 deletions(-)
> 
> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>

Will you or qemu-trivial pick it up?

Jan

> 
>> diff --git a/Makefile.objs b/Makefile.objs
>> index fad1dce..3192bf5 100644
>> --- a/Makefile.objs
>> +++ b/Makefile.objs
>> @@ -171,6 +171,7 @@ user-obj-y += cutils.o cache-utils.o
>>  hw-obj-y =
>>  hw-obj-y += vl.o loader.o
>>  hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o
>> +hw-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
>>  hw-obj-y += fw_cfg.o
>>  hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o
>>  hw-obj-$(CONFIG_PCI) += msix.o msi.o
>> diff --git a/Makefile.target b/Makefile.target
>> index cfc7091..5da9e59 100644
>> --- a/Makefile.target
>> +++ b/Makefile.target
>> @@ -191,7 +191,6 @@ obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
>>  # need to fix this properly
>>  obj-$(CONFIG_NO_PCI) += pci-stub.o
>>  obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
>> -obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
>>  obj-y += vhost_net.o
>>  obj-$(CONFIG_VHOST_NET) += vhost.o
>>  obj-$(CONFIG_REALLY_VIRTFS) += virtio-9p.o
>> -- 
>> 1.7.1
>>
>>
> 

-- 
Siemens AG, Corporate Technology, CT T DE IT 1
Corporate Competence Center Embedded Linux

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library
  2011-06-07 15:55   ` Jan Kiszka
@ 2011-06-08  8:20     ` Stefan Hajnoczi
  0 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2011-06-08  8:20 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: qemu-trivial, qemu-devel, Aurelien Jarno

On Tue, Jun 07, 2011 at 05:55:01PM +0200, Jan Kiszka wrote:
> On 2011-05-15 00:44, Aurelien Jarno wrote:
> > On Tue, Apr 26, 2011 at 01:32:08PM +0200, Jan Kiszka wrote:
> >> This module has no target dependencies (except for target_phys_addr_t
> >> size) and can thus be built as part of libhw.
> >>
> >> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> >> ---
> >>  Makefile.objs   |    1 +
> >>  Makefile.target |    1 -
> >>  2 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
> 
> Will you or qemu-trivial pick it up?

Thanks, applied to the trivial patches tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches

Stefan

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-06-08  8:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-26 11:32 [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library Jan Kiszka
2011-05-14 22:44 ` Aurelien Jarno
2011-06-07 15:55   ` Jan Kiszka
2011-06-08  8:20     ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).