diff mbox

fix serious regression

Message ID 1248220646-22129-1-git-send-email-glommer@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Glauber Costa July 21, 2009, 11:57 p.m. UTC
Today I found a very catastrophic regression: I cannot run my mission
critical servers running RHL7.1 anymore. This is a total disaster.

Fortunately, I was able to isolate the commit that caused it:
    commit bb598da496c040d42dde564bd8ace181be52293e
    Author: Glauber Costa <glommer@redhat.com>
    Date:   Mon Jul 6 16:12:52 2009 -0400

This guy is certainly stupid, and deserves punishment. It means I'll
be writting code using emacs for the next week.

Marcelo, please apply

Signed-off-by: Glauber Costa <glommer@redhat.com>
---
 qemu-kvm.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

Comments

Anthony Liguori July 22, 2009, 1:04 p.m. UTC | #1
Glauber Costa wrote:
> Today I found a very catastrophic regression: I cannot run my mission
> critical servers running RHL7.1 anymore. This is a total disaster.
>
> Fortunately, I was able to isolate the commit that caused it:
>     commit bb598da496c040d42dde564bd8ace181be52293e
>     Author: Glauber Costa <glommer@redhat.com>
>     Date:   Mon Jul 6 16:12:52 2009 -0400
>
> This guy is certainly stupid, and deserves punishment. It means I'll
> be writting code using emacs for the next week.
>
> Marcelo, please apply
>
> Signed-off-by: Glauber Costa <glommer@redhat.com>
>   

Does this mean the goofy MMIO thing isn't strictly needed?

Regards,

Anthony Liguori
--
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
Avi Kivity July 26, 2009, 2:01 p.m. UTC | #2
On 07/22/2009 02:57 AM, Glauber Costa wrote:
> Today I found a very catastrophic regression: I cannot run my mission
> critical servers running RHL7.1 anymore. This is a total disaster.
>
> Fortunately, I was able to isolate the commit that caused it:
>      commit bb598da496c040d42dde564bd8ace181be52293e
>      Author: Glauber Costa<glommer@redhat.com>
>      Date:   Mon Jul 6 16:12:52 2009 -0400
>
> This guy is certainly stupid, and deserves punishment. It means I'll
> be writting code using emacs for the next week.
>
> Marcelo, please apply
>
>    

While I appreciate the humour, it means I have to totally rewrite the 
changelog plus ask a question.  Please submit patches with the most 
boring changelogs you can and reserve the funnies for the "---" section 
where they belong.

> diff --git a/qemu-kvm.c b/qemu-kvm.c
> index e200dea..393c5cc 100644
> --- a/qemu-kvm.c
> +++ b/qemu-kvm.c
> @@ -1003,8 +1003,6 @@ int pre_kvm_run(kvm_context_t kvm, CPUState *env)
>   {
>       kvm_arch_pre_kvm_run(kvm->opaque, env);
>
> -    if (env->exit_request)
> -        return 1;
>       pthread_mutex_unlock(&qemu_mutex);
>       return 0;
>   }
>    

Can you explain the failure mode?
diff mbox

Patch

diff --git a/qemu-kvm.c b/qemu-kvm.c
index e200dea..393c5cc 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -1003,8 +1003,6 @@  int pre_kvm_run(kvm_context_t kvm, CPUState *env)
 {
     kvm_arch_pre_kvm_run(kvm->opaque, env);
 
-    if (env->exit_request)
-        return 1;
     pthread_mutex_unlock(&qemu_mutex);
     return 0;
 }