* [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
@ 2012-11-23 12:41 Marcelo Tosatti
2012-11-23 12:41 ` [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument Marcelo Tosatti
2012-11-26 15:35 ` [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Anthony Liguori
0 siblings, 2 replies; 17+ messages in thread
From: Marcelo Tosatti @ 2012-11-23 12:41 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
The following changes since commit 1ccbc2851282564308f790753d7158487b6af8e2:
qemu-sockets: Fix parsing of the inet option 'to'. (2012-11-21 12:07:59 +0400)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
Bruce Rogers (1):
Legacy qemu-kvm options have no argument
qemu-options.hx | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument
2012-11-23 12:41 [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
@ 2012-11-23 12:41 ` Marcelo Tosatti
2012-11-23 16:45 ` Andreas Färber
2012-11-26 15:35 ` [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Anthony Liguori
1 sibling, 1 reply; 17+ messages in thread
From: Marcelo Tosatti @ 2012-11-23 12:41 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm, Bruce Rogers
From: Bruce Rogers <brogers@suse.com>
The options no-kvm, no-kvm-pit, no-kvm-pit-reinjection, and no-kvm-irqchip
should be marked as having no argument.
Signed-off-by: Bruce Rogers <brogers@suse.com>
Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
---
qemu-options.hx | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/qemu-options.hx b/qemu-options.hx
index 9bb29d3..fbcf079 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -2918,17 +2918,17 @@ Enable FIPS 140-2 compliance mode.
ETEXI
HXCOMM Deprecated by -machine accel=tcg property
-DEF("no-kvm", HAS_ARG, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
+DEF("no-kvm", 0, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
HXCOMM Deprecated by kvm-pit driver properties
-DEF("no-kvm-pit-reinjection", HAS_ARG, QEMU_OPTION_no_kvm_pit_reinjection,
+DEF("no-kvm-pit-reinjection", 0, QEMU_OPTION_no_kvm_pit_reinjection,
"", QEMU_ARCH_I386)
HXCOMM Deprecated (ignored)
-DEF("no-kvm-pit", HAS_ARG, QEMU_OPTION_no_kvm_pit, "", QEMU_ARCH_I386)
+DEF("no-kvm-pit", 0, QEMU_OPTION_no_kvm_pit, "", QEMU_ARCH_I386)
HXCOMM Deprecated by -machine kernel_irqchip=on|off property
-DEF("no-kvm-irqchip", HAS_ARG, QEMU_OPTION_no_kvm_irqchip, "", QEMU_ARCH_I386)
+DEF("no-kvm-irqchip", 0, QEMU_OPTION_no_kvm_irqchip, "", QEMU_ARCH_I386)
HXCOMM Deprecated (ignored)
DEF("tdf", 0, QEMU_OPTION_tdf,"", QEMU_ARCH_ALL)
--
1.7.6.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument
2012-11-23 12:41 ` [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument Marcelo Tosatti
@ 2012-11-23 16:45 ` Andreas Färber
0 siblings, 0 replies; 17+ messages in thread
From: Andreas Färber @ 2012-11-23 16:45 UTC (permalink / raw)
To: Marcelo Tosatti
Cc: Anthony Liguori, Stefan Hajnoczi, qemu-devel, kvm, Bruce Rogers
Am 23.11.2012 13:41, schrieb Marcelo Tosatti:
> From: Bruce Rogers <brogers@suse.com>
>
> The options no-kvm, no-kvm-pit, no-kvm-pit-reinjection, and no-kvm-irqchip
> should be marked as having no argument.
>
> Signed-off-by: Bruce Rogers <brogers@suse.com>
> Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
Missing a
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
from earlier today.
Andreas
> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
> ---
> qemu-options.hx | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 9bb29d3..fbcf079 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -2918,17 +2918,17 @@ Enable FIPS 140-2 compliance mode.
> ETEXI
>
> HXCOMM Deprecated by -machine accel=tcg property
> -DEF("no-kvm", HAS_ARG, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
> +DEF("no-kvm", 0, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
>
> HXCOMM Deprecated by kvm-pit driver properties
> -DEF("no-kvm-pit-reinjection", HAS_ARG, QEMU_OPTION_no_kvm_pit_reinjection,
> +DEF("no-kvm-pit-reinjection", 0, QEMU_OPTION_no_kvm_pit_reinjection,
> "", QEMU_ARCH_I386)
>
> HXCOMM Deprecated (ignored)
> -DEF("no-kvm-pit", HAS_ARG, QEMU_OPTION_no_kvm_pit, "", QEMU_ARCH_I386)
> +DEF("no-kvm-pit", 0, QEMU_OPTION_no_kvm_pit, "", QEMU_ARCH_I386)
>
> HXCOMM Deprecated by -machine kernel_irqchip=on|off property
> -DEF("no-kvm-irqchip", HAS_ARG, QEMU_OPTION_no_kvm_irqchip, "", QEMU_ARCH_I386)
> +DEF("no-kvm-irqchip", 0, QEMU_OPTION_no_kvm_irqchip, "", QEMU_ARCH_I386)
>
> HXCOMM Deprecated (ignored)
> DEF("tdf", 0, QEMU_OPTION_tdf,"", QEMU_ARCH_ALL)
>
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2012-11-23 12:41 [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2012-11-23 12:41 ` [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument Marcelo Tosatti
@ 2012-11-26 15:35 ` Anthony Liguori
1 sibling, 0 replies; 17+ messages in thread
From: Anthony Liguori @ 2012-11-26 15:35 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: qemu-devel, kvm
Marcelo Tosatti <mtosatti@redhat.com> writes:
> The following changes since commit 1ccbc2851282564308f790753d7158487b6af8e2:
>
> qemu-sockets: Fix parsing of the inet option 'to'. (2012-11-21 12:07:59 +0400)
>
> are available in the git repository at:
> git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>
> Bruce Rogers (1):
> Legacy qemu-kvm options have no argument
Pulled. Thanks.
Regards,
Anthony Liguori
>
> qemu-options.hx | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
@ 2013-05-06 12:44 Gleb Natapov
0 siblings, 0 replies; 17+ messages in thread
From: Gleb Natapov @ 2013-05-06 12:44 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel, kvm
Anthony please pull if it is not too later for 1.5.
The following changes since commit 467b34689d277fa56c09ad07ca0f08d7d7539f6d:
Update OpenBIOS images (2013-05-05 09:53:22 +0000)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
for you to fetch changes up to 0c1cd0ae2a4faabeb948b9a07ea1696e853de174:
kvmvapic: add ioport read accessor (2013-05-06 14:52:26 +0300)
----------------------------------------------------------------
Marcelo Tosatti (1):
kvmvapic: add ioport read accessor
hw/i386/kvmvapic.c | 6 ++++++
1 file changed, 6 insertions(+)
^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
@ 2011-10-03 20:55 Marcelo Tosatti
2011-10-10 14:41 ` Anthony Liguori
0 siblings, 1 reply; 17+ messages in thread
From: Marcelo Tosatti @ 2011-10-03 20:55 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
The following changes since commit d11cf8cc80d946dfc9a23597cd9a0bb1c487cfa7:
etrax-dma: Remove bogus if statement (2011-10-03 10:20:13 +0200)
are available in the git repository at:
git://github.com/avikivity/qemu.git uq/master
Liu, Jinsong (1):
kvm: support TSC deadline MSR
target-i386/cpu.h | 4 +++-
target-i386/kvm.c | 14 ++++++++++++++
target-i386/machine.c | 1 +
3 files changed, 18 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-03 20:55 Marcelo Tosatti
@ 2011-10-10 14:41 ` Anthony Liguori
2011-10-10 14:48 ` Avi Kivity
0 siblings, 1 reply; 17+ messages in thread
From: Anthony Liguori @ 2011-10-10 14:41 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: qemu-devel, kvm, Avi Kivity
On 10/03/2011 03:55 PM, Marcelo Tosatti wrote:
> The following changes since commit d11cf8cc80d946dfc9a23597cd9a0bb1c487cfa7:
>
> etrax-dma: Remove bogus if statement (2011-10-03 10:20:13 +0200)
>
> are available in the git repository at:
> git://github.com/avikivity/qemu.git uq/master
Pulled. Thanks.
Are ya'll planning on moving your repo back to kernel.org or sticking with github?
Regards,
Anthony Liguori
>
> Liu, Jinsong (1):
> kvm: support TSC deadline MSR
>
> target-i386/cpu.h | 4 +++-
> target-i386/kvm.c | 14 ++++++++++++++
> target-i386/machine.c | 1 +
> 3 files changed, 18 insertions(+), 1 deletions(-)
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 14:41 ` Anthony Liguori
@ 2011-10-10 14:48 ` Avi Kivity
2011-10-10 14:55 ` Anthony Liguori
0 siblings, 1 reply; 17+ messages in thread
From: Avi Kivity @ 2011-10-10 14:48 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 04:41 PM, Anthony Liguori wrote:
> On 10/03/2011 03:55 PM, Marcelo Tosatti wrote:
>> The following changes since commit
>> d11cf8cc80d946dfc9a23597cd9a0bb1c487cfa7:
>>
>> etrax-dma: Remove bogus if statement (2011-10-03 10:20:13 +0200)
>>
>> are available in the git repository at:
>> git://github.com/avikivity/qemu.git uq/master
>
> Pulled. Thanks.
>
Um, this had a comment about it regarding s/version bump/subsection/
> Are ya'll planning on moving your repo back to kernel.org or sticking
> with github?
We'll move back to kernel.org as soon as we sort around the keys.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 14:48 ` Avi Kivity
@ 2011-10-10 14:55 ` Anthony Liguori
2011-10-10 15:00 ` Avi Kivity
0 siblings, 1 reply; 17+ messages in thread
From: Anthony Liguori @ 2011-10-10 14:55 UTC (permalink / raw)
To: Avi Kivity; +Cc: Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 09:48 AM, Avi Kivity wrote:
> On 10/10/2011 04:41 PM, Anthony Liguori wrote:
>> On 10/03/2011 03:55 PM, Marcelo Tosatti wrote:
>>> The following changes since commit d11cf8cc80d946dfc9a23597cd9a0bb1c487cfa7:
>>>
>>> etrax-dma: Remove bogus if statement (2011-10-03 10:20:13 +0200)
>>>
>>> are available in the git repository at:
>>> git://github.com/avikivity/qemu.git uq/master
>>
>> Pulled. Thanks.
>>
>
> Um, this had a comment about it regarding s/version bump/subsection/
Hrm, sorry about that. In the future, it would be helpful to explicitly
withdrawal a PULL request.
Do you want me to revert? FWIW, I think bumping the version is the right thing
to do.
Regards,
Anthony Liguori
>
>> Are ya'll planning on moving your repo back to kernel.org or sticking with
>> github?
>
> We'll move back to kernel.org as soon as we sort around the keys.
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 14:55 ` Anthony Liguori
@ 2011-10-10 15:00 ` Avi Kivity
2011-10-10 15:12 ` Anthony Liguori
0 siblings, 1 reply; 17+ messages in thread
From: Avi Kivity @ 2011-10-10 15:00 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 04:55 PM, Anthony Liguori wrote:
>
> Hrm, sorry about that. In the future, it would be helpful to
> explicitly withdrawal a PULL request.
>
> Do you want me to revert?
We'll send the revert together with the new patch.
> FWIW, I think bumping the version is the right thing to do.
Why?
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 15:00 ` Avi Kivity
@ 2011-10-10 15:12 ` Anthony Liguori
2011-10-10 15:24 ` Avi Kivity
0 siblings, 1 reply; 17+ messages in thread
From: Anthony Liguori @ 2011-10-10 15:12 UTC (permalink / raw)
To: Avi Kivity; +Cc: Anthony Liguori, Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 10:00 AM, Avi Kivity wrote:
> On 10/10/2011 04:55 PM, Anthony Liguori wrote:
>>
>> Hrm, sorry about that. In the future, it would be helpful to explicitly
>> withdrawal a PULL request.
>>
>> Do you want me to revert?
>
> We'll send the revert together with the new patch.
>
>> FWIW, I think bumping the version is the right thing to do.
>
> Why?
Because we still haven't fixed subsections. Juan's patches help but they can
still result in sending bad data to and older QEMU that won't handle it properly.
We need to figure out a proper fix for subsections, either Paolo's protocol
change or moving subsections out to a detected section.
Regards,
Anthony Liguori
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 15:12 ` Anthony Liguori
@ 2011-10-10 15:24 ` Avi Kivity
2011-10-10 15:36 ` Anthony Liguori
0 siblings, 1 reply; 17+ messages in thread
From: Avi Kivity @ 2011-10-10 15:24 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Anthony Liguori, Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 05:12 PM, Anthony Liguori wrote:
> On 10/10/2011 10:00 AM, Avi Kivity wrote:
>> On 10/10/2011 04:55 PM, Anthony Liguori wrote:
>>>
>>> Hrm, sorry about that. In the future, it would be helpful to explicitly
>>> withdrawal a PULL request.
>>>
>>> Do you want me to revert?
>>
>> We'll send the revert together with the new patch.
>>
>>> FWIW, I think bumping the version is the right thing to do.
>>
>> Why?
>
> Because we still haven't fixed subsections. Juan's patches help but
> they can still result in sending bad data to and older QEMU that won't
> handle it properly.
>
> We need to figure out a proper fix for subsections, either Paolo's
> protocol change or moving subsections out to a detected section.
Ok. So bumping the version is only right if we don't fix subsections.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 15:24 ` Avi Kivity
@ 2011-10-10 15:36 ` Anthony Liguori
2011-10-10 15:41 ` Avi Kivity
0 siblings, 1 reply; 17+ messages in thread
From: Anthony Liguori @ 2011-10-10 15:36 UTC (permalink / raw)
To: Avi Kivity; +Cc: Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 10:24 AM, Avi Kivity wrote:
> On 10/10/2011 05:12 PM, Anthony Liguori wrote:
>> On 10/10/2011 10:00 AM, Avi Kivity wrote:
>>> On 10/10/2011 04:55 PM, Anthony Liguori wrote:
>>>>
>>>> Hrm, sorry about that. In the future, it would be helpful to explicitly
>>>> withdrawal a PULL request.
>>>>
>>>> Do you want me to revert?
>>>
>>> We'll send the revert together with the new patch.
>>>
>>>> FWIW, I think bumping the version is the right thing to do.
>>>
>>> Why?
>>
>> Because we still haven't fixed subsections. Juan's patches help but they can
>> still result in sending bad data to and older QEMU that won't handle it properly.
>>
>> We need to figure out a proper fix for subsections, either Paolo's protocol
>> change or moving subsections out to a detected section.
>
> Ok. So bumping the version is only right if we don't fix subsections.
If we bump *any* version from 0.15 -> 1.0, then there's no point at all in
having a subsection. If we break compatibility by using Paolo's new protocol,
or doing subsections as sections, then there's no point in making it a
subsection either.
Regards,
Anthony Liguori
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2011-10-10 15:36 ` Anthony Liguori
@ 2011-10-10 15:41 ` Avi Kivity
0 siblings, 0 replies; 17+ messages in thread
From: Avi Kivity @ 2011-10-10 15:41 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
On 10/10/2011 05:36 PM, Anthony Liguori wrote:
>> Ok. So bumping the version is only right if we don't fix subsections.
>
>
> If we bump *any* version from 0.15 -> 1.0, then there's no point at
> all in having a subsection.
Did we bump versions of relevant devices?
> If we break compatibility by using Paolo's new protocol, or doing
> subsections as sections, then there's no point in making it a
> subsection either.
These are workaroundable. For example if you migrate 0.15 to 1.0 you
start the destination with -old-subsection-format. Even if you don't,
since subsections are rarely present, migration will succeed.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
@ 2010-11-06 0:44 Marcelo Tosatti
2010-11-16 14:50 ` Anthony Liguori
0 siblings, 1 reply; 17+ messages in thread
From: Marcelo Tosatti @ 2010-11-06 0:44 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
The following changes since commit d33ea50a958b2e050d2b28e5f17e3b55e91c6d74:
scsi-disk: Fix immediate failure of bdrv_aio_* (2010-11-04 13:54:37 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
Gleb Natapov (1):
Add support for async page fault to qemu
target-i386/cpu.h | 1 +
target-i386/cpuid.c | 2 +-
target-i386/kvm.c | 14 ++++++++++++++
target-i386/machine.c | 26 ++++++++++++++++++++++++++
4 files changed, 42 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
2010-11-06 0:44 Marcelo Tosatti
@ 2010-11-16 14:50 ` Anthony Liguori
0 siblings, 0 replies; 17+ messages in thread
From: Anthony Liguori @ 2010-11-16 14:50 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: qemu-devel, kvm
On 11/05/2010 07:44 PM, Marcelo Tosatti wrote:
> The following changes since commit d33ea50a958b2e050d2b28e5f17e3b55e91c6d74:
>
> scsi-disk: Fix immediate failure of bdrv_aio_* (2010-11-04 13:54:37 +0100)
>
Pulled. Thanks.
Regards,
Anthony Liguori
> are available in the git repository at:
> git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>
> Gleb Natapov (1):
> Add support for async page fault to qemu
>
> target-i386/cpu.h | 1 +
> target-i386/cpuid.c | 2 +-
> target-i386/kvm.c | 14 ++++++++++++++
> target-i386/machine.c | 26 ++++++++++++++++++++++++++
> 4 files changed, 42 insertions(+), 1 deletions(-)
>
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue
@ 2010-11-06 0:43 Marcelo Tosatti
0 siblings, 0 replies; 17+ messages in thread
From: Marcelo Tosatti @ 2010-11-06 0:43 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm
The following changes since commit d33ea50a958b2e050d2b28e5f17e3b55e91c6d74:
scsi-disk: Fix immediate failure of bdrv_aio_* (2010-11-04 13:54:37 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
Gleb Natapov (1):
Add support for async page fault to qemu
target-i386/cpu.h | 1 +
target-i386/cpuid.c | 2 +-
target-i386/kvm.c | 14 ++++++++++++++
target-i386/machine.c | 26 ++++++++++++++++++++++++++
4 files changed, 42 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2013-05-06 12:45 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-23 12:41 [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2012-11-23 12:41 ` [Qemu-devel] [PATCH 1/1] Legacy qemu-kvm options have no argument Marcelo Tosatti
2012-11-23 16:45 ` Andreas Färber
2012-11-26 15:35 ` [Qemu-devel] [PATCH 0/1] [PULL] qemu-kvm.git uq/master queue Anthony Liguori
-- strict thread matches above, loose matches on Subject: below --
2013-05-06 12:44 Gleb Natapov
2011-10-03 20:55 Marcelo Tosatti
2011-10-10 14:41 ` Anthony Liguori
2011-10-10 14:48 ` Avi Kivity
2011-10-10 14:55 ` Anthony Liguori
2011-10-10 15:00 ` Avi Kivity
2011-10-10 15:12 ` Anthony Liguori
2011-10-10 15:24 ` Avi Kivity
2011-10-10 15:36 ` Anthony Liguori
2011-10-10 15:41 ` Avi Kivity
2010-11-06 0:44 Marcelo Tosatti
2010-11-16 14:50 ` Anthony Liguori
2010-11-06 0:43 Marcelo Tosatti
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).