diff mbox series

[kvm-unit-tests] x86: Fix misspelled KVM parameter in error message

Message ID 20210609140217.1514-3-sidcha@amazon.de (mailing list archive)
State New, archived
Headers show
Series [kvm-unit-tests] x86: Fix misspelled KVM parameter in error message | expand

Commit Message

Siddharth Chandrasekaran June 9, 2021, 2:02 p.m. UTC
KVM module parameter force_emulation_prefix is misspelled with a
"forced"; fix it.

Signed-off-by: Siddharth Chandrasekaran <sidcha@amazon.de>
---
 x86/emulator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Paolo Bonzini June 9, 2021, 2:23 p.m. UTC | #1
On 09/06/21 16:02, Siddharth Chandrasekaran wrote:
> KVM module parameter force_emulation_prefix is misspelled with a
> "forced"; fix it.
> 
> Signed-off-by: Siddharth Chandrasekaran <sidcha@amazon.de>
> ---
>   x86/emulator.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/x86/emulator.c b/x86/emulator.c
> index 6100b6d..97f28ba 100644
> --- a/x86/emulator.c
> +++ b/x86/emulator.c
> @@ -1124,7 +1124,7 @@ int main(void)
>   		test_mov_dr(mem);
>   	} else {
>   		report_skip("skipping register-only tests, "
> -			    "use kvm.forced_emulation_prefix=1 to enable");
> +			    "use kvm.force_emulation_prefix=1 to enable");
>   	}
>   
>   	test_push16(mem);
> 

Queued this one, thanks!

Paolo
diff mbox series

Patch

diff --git a/x86/emulator.c b/x86/emulator.c
index 6100b6d..97f28ba 100644
--- a/x86/emulator.c
+++ b/x86/emulator.c
@@ -1124,7 +1124,7 @@  int main(void)
 		test_mov_dr(mem);
 	} else {
 		report_skip("skipping register-only tests, "
-			    "use kvm.forced_emulation_prefix=1 to enable");
+			    "use kvm.force_emulation_prefix=1 to enable");
 	}
 
 	test_push16(mem);