All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@siemens.com>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
	qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-trivial] [PATCH] virtio: Move virtio-pci to hw library
Date: Tue, 07 Jun 2011 17:55:01 +0200	[thread overview]
Message-ID: <4DEE49D5.7010301@siemens.com> (raw)
In-Reply-To: <20110514224427.GG13600@volta.aurel32.net>

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


WARNING: multiple messages have this Message-ID (diff)
From: Jan Kiszka <jan.kiszka@siemens.com>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
	qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library
Date: Tue, 07 Jun 2011 17:55:01 +0200	[thread overview]
Message-ID: <4DEE49D5.7010301@siemens.com> (raw)
In-Reply-To: <20110514224427.GG13600@volta.aurel32.net>

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

  reply	other threads:[~2011-06-07 15:55 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2011-06-07 15:55     ` Jan Kiszka
2011-06-08  8:20     ` [Qemu-trivial] " Stefan Hajnoczi
2011-06-08  8:20       ` Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4DEE49D5.7010301@siemens.com \
    --to=jan.kiszka@siemens.com \
    --cc=aurelien@aurel32.net \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.