diff mbox series

[11/17] xen/x86: nested_ept: Fix typo in the message in nept_translate_l2ga()

Message ID 20200322161418.31606-12-julien@xen.org (mailing list archive)
State New, archived
Headers show
Series Bunch of typesafe conversion | expand

Commit Message

Julien Grall March 22, 2020, 4:14 p.m. UTC
From: Julien Grall <jgrall@amazon.com>

Signed-off-by: Julien Grall <jgrall@amazon.com>
---
 xen/arch/x86/mm/hap/nested_ept.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jan Beulich March 27, 2020, 11:35 a.m. UTC | #1
On 22.03.2020 17:14, julien@xen.org wrote:
> From: Julien Grall <jgrall@amazon.com>
> 
> Signed-off-by: Julien Grall <jgrall@amazon.com>

Acked-by: Jan Beulich <jbeulich@suse.com>
diff mbox series

Patch

diff --git a/xen/arch/x86/mm/hap/nested_ept.c b/xen/arch/x86/mm/hap/nested_ept.c
index 1cb7fefc37..7bae71cc47 100644
--- a/xen/arch/x86/mm/hap/nested_ept.c
+++ b/xen/arch/x86/mm/hap/nested_ept.c
@@ -255,7 +255,7 @@  int nept_translate_l2ga(struct vcpu *v, paddr_t l2ga,
         }
         else
         {
-            gdprintk(XENLOG_ERR, "Uncorrect l1 entry!\n");
+            gdprintk(XENLOG_ERR, "Incorrect l1 entry!\n");
             BUG();
         }
         if ( nept_permission_check(rwx_acc, rwx_bits) )