All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-13 15:41 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-10-13 15:41 UTC (permalink / raw)
  To: Shuah Khan, Paolo Bonzini, linux-kselftest; +Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 6fd8c089cafc..a56ef6b187bb 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
 
 	/* Allocate memory. */
 	vm = calloc(1, sizeof(*vm));
-	TEST_ASSERT(vm != NULL, "Insufficent Memory");
+	TEST_ASSERT(vm != NULL, "Insufficient Memory");
 
 	vm->mode = mode;
 	vm_open(vm, perm);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-13 15:41 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-10-13 15:41 UTC (permalink / raw)
  To: kernel-janitors

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 6fd8c089cafc..a56ef6b187bb 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
 
 	/* Allocate memory. */
 	vm = calloc(1, sizeof(*vm));
-	TEST_ASSERT(vm != NULL, "Insufficent Memory");
+	TEST_ASSERT(vm != NULL, "Insufficient Memory");
 
 	vm->mode = mode;
 	vm_open(vm, perm);
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-13 15:41 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: colin.king @ 2018-10-13 15:41 UTC (permalink / raw)


From: Colin Ian King <colin.king at canonical.com>

Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 6fd8c089cafc..a56ef6b187bb 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
 
 	/* Allocate memory. */
 	vm = calloc(1, sizeof(*vm));
-	TEST_ASSERT(vm != NULL, "Insufficent Memory");
+	TEST_ASSERT(vm != NULL, "Insufficient Memory");
 
 	vm->mode = mode;
 	vm_open(vm, perm);
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-13 15:41 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-10-13 15:41 UTC (permalink / raw)


From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 6fd8c089cafc..a56ef6b187bb 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
 
 	/* Allocate memory. */
 	vm = calloc(1, sizeof(*vm));
-	TEST_ASSERT(vm != NULL, "Insufficent Memory");
+	TEST_ASSERT(vm != NULL, "Insufficient Memory");
 
 	vm->mode = mode;
 	vm_open(vm, perm);
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
  2018-10-13 15:41 ` Colin King
  (?)
  (?)
@ 2018-10-16 14:47   ` Shuah Khan
  -1 siblings, 0 replies; 28+ messages in thread
From: Shuah Khan @ 2018-10-16 14:47 UTC (permalink / raw)
  To: Colin King, Paolo Bonzini, linux-kselftest
  Cc: kernel-janitors, linux-kernel, Shuah Khan

On 10/13/2018 09:41 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in TEST_ASSERT message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index 6fd8c089cafc..a56ef6b187bb 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
>  
>  	/* Allocate memory. */
>  	vm = calloc(1, sizeof(*vm));
> -	TEST_ASSERT(vm != NULL, "Insufficent Memory");
> +	TEST_ASSERT(vm != NULL, "Insufficient Memory");
>  
>  	vm->mode = mode;
>  	vm_open(vm, perm);
> 

Thanks for the patch. Applied to linux-kselftest next for 4.20-rc1

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-16 14:47   ` Shuah Khan
  0 siblings, 0 replies; 28+ messages in thread
From: Shuah Khan @ 2018-10-16 14:47 UTC (permalink / raw)
  To: kernel-janitors

On 10/13/2018 09:41 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in TEST_ASSERT message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index 6fd8c089cafc..a56ef6b187bb 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
>  
>  	/* Allocate memory. */
>  	vm = calloc(1, sizeof(*vm));
> -	TEST_ASSERT(vm != NULL, "Insufficent Memory");
> +	TEST_ASSERT(vm != NULL, "Insufficient Memory");
>  
>  	vm->mode = mode;
>  	vm_open(vm, perm);
> 

Thanks for the patch. Applied to linux-kselftest next for 4.20-rc1

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-16 14:47   ` Shuah Khan
  0 siblings, 0 replies; 28+ messages in thread
From: shuah @ 2018-10-16 14:47 UTC (permalink / raw)


On 10/13/2018 09:41 AM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
> 
> Trivial fix to spelling mistake in TEST_ASSERT message text
> 
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index 6fd8c089cafc..a56ef6b187bb 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
>  
>  	/* Allocate memory. */
>  	vm = calloc(1, sizeof(*vm));
> -	TEST_ASSERT(vm != NULL, "Insufficent Memory");
> +	TEST_ASSERT(vm != NULL, "Insufficient Memory");
>  
>  	vm->mode = mode;
>  	vm_open(vm, perm);
> 

Thanks for the patch. Applied to linux-kselftest next for 4.20-rc1

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
@ 2018-10-16 14:47   ` Shuah Khan
  0 siblings, 0 replies; 28+ messages in thread
From: Shuah Khan @ 2018-10-16 14:47 UTC (permalink / raw)


On 10/13/2018 09:41 AM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
> 
> Trivial fix to spelling mistake in TEST_ASSERT message text
> 
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index 6fd8c089cafc..a56ef6b187bb 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
>  
>  	/* Allocate memory. */
>  	vm = calloc(1, sizeof(*vm));
> -	TEST_ASSERT(vm != NULL, "Insufficent Memory");
> +	TEST_ASSERT(vm != NULL, "Insufficient Memory");
>  
>  	vm->mode = mode;
>  	vm_open(vm, perm);
> 

Thanks for the patch. Applied to linux-kselftest next for 4.20-rc1

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
  2018-10-13 15:41 ` Colin King
  (?)
  (?)
@ 2018-11-26 16:08 ` Colin King
  -1 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-11-26 16:08 UTC (permalink / raw)
  To: Ken Hofsass, Paolo Bonzini, linux-kselftest; +Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

The text in a TEST_ASSERT message contains a spelling mistake, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 16:08 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-11-26 16:08 UTC (permalink / raw)
  To: kernel-janitors

From: Colin Ian King <colin.king@canonical.com>

The text in a TEST_ASSERT message contains a spelling mistake, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv = offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.19.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 16:08 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: colin.king @ 2018-11-26 16:08 UTC (permalink / raw)


From: Colin Ian King <colin.king at canonical.com>

The text in a TEST_ASSERT message contains a spelling mistake, fix it.

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.19.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 16:08 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2018-11-26 16:08 UTC (permalink / raw)


From: Colin Ian King <colin.king@canonical.com>

The text in a TEST_ASSERT message contains a spelling mistake, fix it.

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.19.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
  2018-11-26 16:08 ` Colin King
  (?)
  (?)
@ 2018-11-26 17:07   ` Paolo Bonzini
  -1 siblings, 0 replies; 28+ messages in thread
From: Paolo Bonzini @ 2018-11-26 17:07 UTC (permalink / raw)
  To: Colin King, Ken Hofsass, linux-kselftest; +Cc: kernel-janitors, linux-kernel

On 26/11/18 17:08, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> The text in a TEST_ASSERT message contains a spelling mistake, fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/elf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
> index 5eb857584aa3..53c48f7587d3 100644
> --- a/tools/testing/selftests/kvm/lib/elf.c
> +++ b/tools/testing/selftests/kvm/lib/elf.c
> @@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
>  		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
>  		offset_rv = lseek(fd, offset, SEEK_SET);
>  		TEST_ASSERT(offset_rv == offset,
> -			"Failed to seek to begining of program header %u,\n"
> +			"Failed to seek to beginning of program header %u,\n"
>  			"  filename: %s\n"
>  			"  rv: %jd errno: %i",
>  			n1, filename, (intmax_t) offset_rv, errno);
> 

Queued, thanks.

Paolo

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 17:07   ` Paolo Bonzini
  0 siblings, 0 replies; 28+ messages in thread
From: Paolo Bonzini @ 2018-11-26 17:07 UTC (permalink / raw)
  To: kernel-janitors

On 26/11/18 17:08, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> The text in a TEST_ASSERT message contains a spelling mistake, fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/elf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
> index 5eb857584aa3..53c48f7587d3 100644
> --- a/tools/testing/selftests/kvm/lib/elf.c
> +++ b/tools/testing/selftests/kvm/lib/elf.c
> @@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
>  		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
>  		offset_rv = lseek(fd, offset, SEEK_SET);
>  		TEST_ASSERT(offset_rv = offset,
> -			"Failed to seek to begining of program header %u,\n"
> +			"Failed to seek to beginning of program header %u,\n"
>  			"  filename: %s\n"
>  			"  rv: %jd errno: %i",
>  			n1, filename, (intmax_t) offset_rv, errno);
> 

Queued, thanks.

Paolo

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 17:07   ` Paolo Bonzini
  0 siblings, 0 replies; 28+ messages in thread
From: pbonzini @ 2018-11-26 17:07 UTC (permalink / raw)


On 26/11/18 17:08, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
> 
> The text in a TEST_ASSERT message contains a spelling mistake, fix it.
> 
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/elf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
> index 5eb857584aa3..53c48f7587d3 100644
> --- a/tools/testing/selftests/kvm/lib/elf.c
> +++ b/tools/testing/selftests/kvm/lib/elf.c
> @@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
>  		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
>  		offset_rv = lseek(fd, offset, SEEK_SET);
>  		TEST_ASSERT(offset_rv == offset,
> -			"Failed to seek to begining of program header %u,\n"
> +			"Failed to seek to beginning of program header %u,\n"
>  			"  filename: %s\n"
>  			"  rv: %jd errno: %i",
>  			n1, filename, (intmax_t) offset_rv, errno);
> 

Queued, thanks.

Paolo

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2018-11-26 17:07   ` Paolo Bonzini
  0 siblings, 0 replies; 28+ messages in thread
From: Paolo Bonzini @ 2018-11-26 17:07 UTC (permalink / raw)


On 26/11/18 17:08, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
> 
> The text in a TEST_ASSERT message contains a spelling mistake, fix it.
> 
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/elf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
> index 5eb857584aa3..53c48f7587d3 100644
> --- a/tools/testing/selftests/kvm/lib/elf.c
> +++ b/tools/testing/selftests/kvm/lib/elf.c
> @@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
>  		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
>  		offset_rv = lseek(fd, offset, SEEK_SET);
>  		TEST_ASSERT(offset_rv == offset,
> -			"Failed to seek to begining of program header %u,\n"
> +			"Failed to seek to beginning of program header %u,\n"
>  			"  filename: %s\n"
>  			"  rv: %jd errno: %i",
>  			n1, filename, (intmax_t) offset_rv, errno);
> 

Queued, thanks.

Paolo

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
  2018-10-13 15:41 ` Colin King
  (?)
  (?)
@ 2019-02-17 22:40 ` Colin King
  -1 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2019-02-17 22:40 UTC (permalink / raw)
  To: Shuah Khan, Paolo Bonzini, Ken Hofsass, linux-kselftest
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in the message test of a TEST_ASSERT macro,
fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2019-02-17 22:40 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2019-02-17 22:40 UTC (permalink / raw)
  To: kernel-janitors

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in the message test of a TEST_ASSERT macro,
fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv = offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2019-02-17 22:40 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: colin.king @ 2019-02-17 22:40 UTC (permalink / raw)


From: Colin Ian King <colin.king at canonical.com>

There is a spelling mistake in the message test of a TEST_ASSERT macro,
fix it.

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning"
@ 2019-02-17 22:40 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2019-02-17 22:40 UTC (permalink / raw)


From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in the message test of a TEST_ASSERT macro,
fix it.

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 5eb857584aa3..53c48f7587d3 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -141,7 +141,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename,
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake: missmatch -> mismatch
  2018-10-13 15:41 ` Colin King
@ 2019-10-04  8:13 ` Colin King
  -1 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2019-10-04  8:13 UTC (permalink / raw)
  To: Paolo Bonzini, Radim Krčmář,
	Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in in an error message, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
index 031ba3c932ed..59ffba902e61 100644
--- a/tools/testing/selftests/kvm/lib/sparsebit.c
+++ b/tools/testing/selftests/kvm/lib/sparsebit.c
@@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
 		 * of total bits set.
 		 */
 		if (s->num_set != total_bits_set) {
-			fprintf(stderr, "Number of bits set missmatch,\n"
+			fprintf(stderr, "Number of bits set mismatch,\n"
 				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
 				s->num_set, total_bits_set);
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake: missmatch -> mismatch
@ 2019-10-04  8:13 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2019-10-04  8:13 UTC (permalink / raw)
  To: Paolo Bonzini, Radim Krčmář,
	Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in in an error message, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
index 031ba3c932ed..59ffba902e61 100644
--- a/tools/testing/selftests/kvm/lib/sparsebit.c
+++ b/tools/testing/selftests/kvm/lib/sparsebit.c
@@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
 		 * of total bits set.
 		 */
 		if (s->num_set != total_bits_set) {
-			fprintf(stderr, "Number of bits set missmatch,\n"
+			fprintf(stderr, "Number of bits set mismatch,\n"
 				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
 				s->num_set, total_bits_set);
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake: "missmatch" -> "missmatch"
  2018-10-13 15:41 ` Colin King
@ 2020-08-10 10:16 ` Colin King
  -1 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2020-08-10 10:16 UTC (permalink / raw)
  To: Paolo Bonzini, Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in an error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
index 031ba3c932ed..59ffba902e61 100644
--- a/tools/testing/selftests/kvm/lib/sparsebit.c
+++ b/tools/testing/selftests/kvm/lib/sparsebit.c
@@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
 		 * of total bits set.
 		 */
 		if (s->num_set != total_bits_set) {
-			fprintf(stderr, "Number of bits set missmatch,\n"
+			fprintf(stderr, "Number of bits set mismatch,\n"
 				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
 				s->num_set, total_bits_set);
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [PATCH] kvm: selftests: fix spelling mistake: "missmatch" -> "missmatch"
@ 2020-08-10 10:16 ` Colin King
  0 siblings, 0 replies; 28+ messages in thread
From: Colin King @ 2020-08-10 10:16 UTC (permalink / raw)
  To: Paolo Bonzini, Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in an error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
index 031ba3c932ed..59ffba902e61 100644
--- a/tools/testing/selftests/kvm/lib/sparsebit.c
+++ b/tools/testing/selftests/kvm/lib/sparsebit.c
@@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
 		 * of total bits set.
 		 */
 		if (s->num_set != total_bits_set) {
-			fprintf(stderr, "Number of bits set missmatch,\n"
+			fprintf(stderr, "Number of bits set mismatch,\n"
 				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
 				s->num_set, total_bits_set);
 
-- 
2.27.0

^ permalink raw reply related	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake: "missmatch" -> "missmatch"
  2020-08-10 10:16 ` Colin King
@ 2020-08-10 11:21   ` Paolo Bonzini
  -1 siblings, 0 replies; 28+ messages in thread
From: Paolo Bonzini @ 2020-08-10 11:21 UTC (permalink / raw)
  To: Colin King, Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

On 10/08/20 12:16, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in an error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
> index 031ba3c932ed..59ffba902e61 100644
> --- a/tools/testing/selftests/kvm/lib/sparsebit.c
> +++ b/tools/testing/selftests/kvm/lib/sparsebit.c
> @@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
>  		 * of total bits set.
>  		 */
>  		if (s->num_set != total_bits_set) {
> -			fprintf(stderr, "Number of bits set missmatch,\n"
> +			fprintf(stderr, "Number of bits set mismatch,\n"
>  				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
>  				s->num_set, total_bits_set);
>  
> 

If you have a script that generates the commit message, that needs a
fix. :)  Queued though.

Paolo


^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PATCH] kvm: selftests: fix spelling mistake: "missmatch" -> "missmatch"
@ 2020-08-10 11:21   ` Paolo Bonzini
  0 siblings, 0 replies; 28+ messages in thread
From: Paolo Bonzini @ 2020-08-10 11:21 UTC (permalink / raw)
  To: Colin King, Shuah Khan, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

On 10/08/20 12:16, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in an error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/testing/selftests/kvm/lib/sparsebit.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/kvm/lib/sparsebit.c b/tools/testing/selftests/kvm/lib/sparsebit.c
> index 031ba3c932ed..59ffba902e61 100644
> --- a/tools/testing/selftests/kvm/lib/sparsebit.c
> +++ b/tools/testing/selftests/kvm/lib/sparsebit.c
> @@ -1866,7 +1866,7 @@ void sparsebit_validate_internal(struct sparsebit *s)
>  		 * of total bits set.
>  		 */
>  		if (s->num_set != total_bits_set) {
> -			fprintf(stderr, "Number of bits set missmatch,\n"
> +			fprintf(stderr, "Number of bits set mismatch,\n"
>  				"  s->num_set: 0x%lx total_bits_set: 0x%lx",
>  				s->num_set, total_bits_set);
>  
> 

If you have a script that generates the commit message, that needs a
fix. :)  Queued though.

Paolo

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [PATCH] KVM: selftests: Fix spelling mistake "begining" -> "beginning"
  2022-09-28 21:34 [PATCH] KVM: selftests: Fix " Colin Ian King
@ 2022-09-28 21:36 ` Jim Mattson
  0 siblings, 0 replies; 28+ messages in thread
From: Jim Mattson @ 2022-09-28 21:36 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Paolo Bonzini, Shuah Khan, Sean Christopherson, kvm,
	linux-kselftest, kernel-janitors, linux-kernel

On Wed, Sep 28, 2022 at 2:35 PM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in an asset message. Fix it.

Nit: assert :-)
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Jim Mattson <jmattson@google.com>

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [PATCH] KVM: selftests: Fix spelling mistake "begining" -> "beginning"
@ 2022-09-28 21:34 Colin Ian King
  2022-09-28 21:36 ` Jim Mattson
  0 siblings, 1 reply; 28+ messages in thread
From: Colin Ian King @ 2022-09-28 21:34 UTC (permalink / raw)
  To: Paolo Bonzini, Shuah Khan, Sean Christopherson, kvm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in an asset message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/kvm/lib/elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/elf.c b/tools/testing/selftests/kvm/lib/elf.c
index 9f54c098d9d0..d71a9a5974de 100644
--- a/tools/testing/selftests/kvm/lib/elf.c
+++ b/tools/testing/selftests/kvm/lib/elf.c
@@ -138,7 +138,7 @@ void kvm_vm_elf_load(struct kvm_vm *vm, const char *filename)
 		offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
 		offset_rv = lseek(fd, offset, SEEK_SET);
 		TEST_ASSERT(offset_rv == offset,
-			"Failed to seek to begining of program header %u,\n"
+			"Failed to seek to beginning of program header %u,\n"
 			"  filename: %s\n"
 			"  rv: %jd errno: %i",
 			n1, filename, (intmax_t) offset_rv, errno);
-- 
2.37.1


^ permalink raw reply related	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2022-09-28 21:37 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 16:08 [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning" Colin King
2018-11-26 16:08 ` Colin King
2018-11-26 16:08 ` colin.king
2018-11-26 16:08 ` Colin King
2018-11-26 17:07 ` Paolo Bonzini
2018-11-26 17:07   ` Paolo Bonzini
2018-11-26 17:07   ` pbonzini
2018-11-26 17:07   ` Paolo Bonzini
  -- strict thread matches above, loose matches on Subject: below --
2022-09-28 21:34 [PATCH] KVM: selftests: Fix " Colin Ian King
2022-09-28 21:36 ` Jim Mattson
2020-08-10 10:16 [PATCH] kvm: selftests: fix spelling mistake: "missmatch" -> "missmatch" Colin King
2020-08-10 10:16 ` Colin King
2020-08-10 11:21 ` Paolo Bonzini
2020-08-10 11:21   ` Paolo Bonzini
2019-10-04  8:13 [PATCH] kvm: selftests: fix spelling mistake: missmatch -> mismatch Colin King
2019-10-04  8:13 ` Colin King
2019-02-17 22:40 [PATCH] kvm: selftests: fix spelling mistake "begining" -> "beginning" Colin King
2019-02-17 22:40 ` Colin King
2019-02-17 22:40 ` colin.king
2019-02-17 22:40 ` Colin King
2018-10-13 15:41 [PATCH] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient" Colin King
2018-10-13 15:41 ` Colin King
2018-10-13 15:41 ` colin.king
2018-10-13 15:41 ` Colin King
2018-10-16 14:47 ` Shuah Khan
2018-10-16 14:47   ` Shuah Khan
2018-10-16 14:47   ` shuah
2018-10-16 14:47   ` Shuah Khan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.