* [TRIVIAL PATCH kvm-unit-tests] x86: desc: fix typo
@ 2015-08-26 9:46 Levente Kurusa
2015-09-07 11:03 ` Paolo Bonzini
0 siblings, 1 reply; 2+ messages in thread
From: Levente Kurusa @ 2015-08-26 9:46 UTC (permalink / raw)
To: Paolo Bonzini, Marcelo Tosatti; +Cc: KVM list, Levente Kurusa
It should be 'exception' instead of 'excecption'.
Signed-off-by: Levente Kurusa <lkurusa@redhat.com>
---
lib/x86/desc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/x86/desc.c b/lib/x86/desc.c
index 3237778..e3bf175 100644
--- a/lib/x86/desc.c
+++ b/lib/x86/desc.c
@@ -46,7 +46,7 @@ static void check_exception_table(struct ex_regs *regs)
return;
}
}
- printf("unhandled excecption %d\n", regs->vector);
+ printf("unhandled exception %d\n", regs->vector);
exit(7);
}
@@ -68,7 +68,7 @@ void do_handle_exception(struct ex_regs *regs)
exception_handlers[regs->vector](regs);
return;
}
- printf("unhandled cpu excecption %d\n", regs->vector);
+ printf("unhandled cpu exception %d\n", regs->vector);
if (regs->vector == 14)
printf("PF at %p addr %p\n", regs->rip, read_cr2());
exit(7);
--
2.4.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [TRIVIAL PATCH kvm-unit-tests] x86: desc: fix typo
2015-08-26 9:46 [TRIVIAL PATCH kvm-unit-tests] x86: desc: fix typo Levente Kurusa
@ 2015-09-07 11:03 ` Paolo Bonzini
0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2015-09-07 11:03 UTC (permalink / raw)
To: Levente Kurusa, Marcelo Tosatti; +Cc: KVM list
On 26/08/2015 11:46, Levente Kurusa wrote:
> It should be 'exception' instead of 'excecption'.
>
> Signed-off-by: Levente Kurusa <lkurusa@redhat.com>
> ---
> lib/x86/desc.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/x86/desc.c b/lib/x86/desc.c
> index 3237778..e3bf175 100644
> --- a/lib/x86/desc.c
> +++ b/lib/x86/desc.c
> @@ -46,7 +46,7 @@ static void check_exception_table(struct ex_regs *regs)
> return;
> }
> }
> - printf("unhandled excecption %d\n", regs->vector);
> + printf("unhandled exception %d\n", regs->vector);
> exit(7);
> }
>
> @@ -68,7 +68,7 @@ void do_handle_exception(struct ex_regs *regs)
> exception_handlers[regs->vector](regs);
> return;
> }
> - printf("unhandled cpu excecption %d\n", regs->vector);
> + printf("unhandled cpu exception %d\n", regs->vector);
> if (regs->vector == 14)
> printf("PF at %p addr %p\n", regs->rip, read_cr2());
> exit(7);
>
Applied, thanks.
Paolo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-07 11:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-26 9:46 [TRIVIAL PATCH kvm-unit-tests] x86: desc: fix typo Levente Kurusa
2015-09-07 11:03 ` Paolo Bonzini
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).