diff mbox series

KVM: selftests: Fix spelling mistake "initally" -> "initially"

Message ID 20250204105647.367743-1-colin.i.king@gmail.com (mailing list archive)
State New
Headers show
Series KVM: selftests: Fix spelling mistake "initally" -> "initially" | expand

Commit Message

Colin Ian King Feb. 4, 2025, 10:56 a.m. UTC
There is a spelling mistake in a literal string and in the function
test_get_inital_dirty. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/kvm/s390/cmma_test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Claudio Imbrenda Feb. 4, 2025, 12:23 p.m. UTC | #1
On Tue,  4 Feb 2025 10:56:47 +0000
Colin Ian King <colin.i.king@gmail.com> wrote:

> There is a spelling mistake in a literal string and in the function
> test_get_inital_dirty. Fix them.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>

> ---
>  tools/testing/selftests/kvm/s390/cmma_test.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/testing/selftests/kvm/s390/cmma_test.c b/tools/testing/selftests/kvm/s390/cmma_test.c
> index e32dd59703a0..85cc8c18d6e7 100644
> --- a/tools/testing/selftests/kvm/s390/cmma_test.c
> +++ b/tools/testing/selftests/kvm/s390/cmma_test.c
> @@ -444,7 +444,7 @@ static void assert_no_pages_cmma_dirty(struct kvm_vm *vm)
>  			 );
>  }
>  
> -static void test_get_inital_dirty(void)
> +static void test_get_initial_dirty(void)
>  {
>  	struct kvm_vm *vm = create_vm_two_memslots();
>  	struct kvm_vcpu *vcpu;
> @@ -651,7 +651,7 @@ struct testdef {
>  } testlist[] = {
>  	{ "migration mode and dirty tracking", test_migration_mode },
>  	{ "GET_CMMA_BITS: basic calls", test_get_cmma_basic },
> -	{ "GET_CMMA_BITS: all pages are dirty initally", test_get_inital_dirty },
> +	{ "GET_CMMA_BITS: all pages are dirty initially", test_get_initial_dirty },
>  	{ "GET_CMMA_BITS: holes are skipped", test_get_skip_holes },
>  };
>
Paolo Bonzini Feb. 4, 2025, 4:15 p.m. UTC | #2
Queued, thanks.

Paolo
diff mbox series

Patch

diff --git a/tools/testing/selftests/kvm/s390/cmma_test.c b/tools/testing/selftests/kvm/s390/cmma_test.c
index e32dd59703a0..85cc8c18d6e7 100644
--- a/tools/testing/selftests/kvm/s390/cmma_test.c
+++ b/tools/testing/selftests/kvm/s390/cmma_test.c
@@ -444,7 +444,7 @@  static void assert_no_pages_cmma_dirty(struct kvm_vm *vm)
 			 );
 }
 
-static void test_get_inital_dirty(void)
+static void test_get_initial_dirty(void)
 {
 	struct kvm_vm *vm = create_vm_two_memslots();
 	struct kvm_vcpu *vcpu;
@@ -651,7 +651,7 @@  struct testdef {
 } testlist[] = {
 	{ "migration mode and dirty tracking", test_migration_mode },
 	{ "GET_CMMA_BITS: basic calls", test_get_cmma_basic },
-	{ "GET_CMMA_BITS: all pages are dirty initally", test_get_inital_dirty },
+	{ "GET_CMMA_BITS: all pages are dirty initially", test_get_initial_dirty },
 	{ "GET_CMMA_BITS: holes are skipped", test_get_skip_holes },
 };