From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [TRIVIAL PATCH kvm-unit-tests] x86: desc: fix typo Date: Mon, 7 Sep 2015 13:03:48 +0200 Message-ID: <55ED6F14.6070900@redhat.com> References: <1440582411-11235-1-git-send-email-lkurusa@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: KVM list To: Levente Kurusa , Marcelo Tosatti Return-path: Received: from mx1.redhat.com ([209.132.183.28]:58167 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750878AbbIGLDw (ORCPT ); Mon, 7 Sep 2015 07:03:52 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 4B40391C20 for ; Mon, 7 Sep 2015 11:03:52 +0000 (UTC) In-Reply-To: <1440582411-11235-1-git-send-email-lkurusa@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On 26/08/2015 11:46, Levente Kurusa wrote: > It should be 'exception' instead of 'excecption'. > > Signed-off-by: Levente Kurusa > --- > 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