[PATCH] kselftests/x86: Correct grammer in VMX pairing message

Sukrut Heroorkar posted 1 patch 7 months ago
tools/testing/selftests/x86/ioperm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] kselftests/x86: Correct grammer in VMX pairing message
Posted by Sukrut Heroorkar 7 months ago
Fixes a small grammatical error in the print message.

signed-off-by: Sukrut Heroorkar <hsukrut3@gmail.com>
---
 tools/testing/selftests/x86/ioperm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/x86/ioperm.c b/tools/testing/selftests/x86/ioperm.c
index 69d5fb7050c2..a5099e526912 100644
--- a/tools/testing/selftests/x86/ioperm.c
+++ b/tools/testing/selftests/x86/ioperm.c
@@ -107,7 +107,7 @@ int main(void)
 		err(1, "fork");
 
 	if (child == 0) {
-		printf("[RUN]\tchild: check that we inherited permissions\n");
+		printf("[RUN]\tchild: check that if we inherited permissions\n");
 		expect_ok(0x80);
 		expect_gp(0xed);
 		printf("[RUN]\tchild: Extend permissions to 0x81\n");
-- 
2.43.0
Re: [PATCH] kselftests/x86: Correct grammer in VMX pairing message
Posted by Ingo Molnar 7 months ago
* Sukrut Heroorkar <hsukrut3@gmail.com> wrote:

> Fixes a small grammatical error in the print message.

No it doesn't.

> signed-off-by: Sukrut Heroorkar <hsukrut3@gmail.com>
> ---
>  tools/testing/selftests/x86/ioperm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/x86/ioperm.c b/tools/testing/selftests/x86/ioperm.c
> index 69d5fb7050c2..a5099e526912 100644
> --- a/tools/testing/selftests/x86/ioperm.c
> +++ b/tools/testing/selftests/x86/ioperm.c
> @@ -107,7 +107,7 @@ int main(void)
>  		err(1, "fork");
>  
>  	if (child == 0) {
> -		printf("[RUN]\tchild: check that we inherited permissions\n");
> +		printf("[RUN]\tchild: check that if we inherited permissions\n");

Wot?

Thanks,

	Ingo