linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] s390/qeth: fix spelling mistake "alocpool" -> "allocpool"
@ 2019-09-11 15:35 Colin King
  2019-09-12  7:19 ` Ursula Braun
  0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2019-09-11 15:35 UTC (permalink / raw)
  To: Julian Wiedmann, Ursula Braun, Heiko Carstens, Vasily Gorbik,
	Christian Borntraeger, linux-s390
  Cc: kernel-janitors, linux-kernel

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

There is a spelling mistake in QETH_CARD_TEXT text. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/s390/net/qeth_core_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c
index a7868c8133ee..ab96b22db3fe 100644
--- a/drivers/s390/net/qeth_core_main.c
+++ b/drivers/s390/net/qeth_core_main.c
@@ -218,7 +218,7 @@ static int qeth_alloc_buffer_pool(struct qeth_card *card)
 	void *ptr;
 	int i, j;
 
-	QETH_CARD_TEXT(card, 5, "alocpool");
+	QETH_CARD_TEXT(card, 5, "allocpool");
 	for (i = 0; i < card->qdio.init_pool.buf_count; ++i) {
 		pool_entry = kzalloc(sizeof(*pool_entry), GFP_KERNEL);
 		if (!pool_entry) {
-- 
2.20.1


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

* Re: [PATCH] s390/qeth: fix spelling mistake "alocpool" -> "allocpool"
  2019-09-11 15:35 [PATCH] s390/qeth: fix spelling mistake "alocpool" -> "allocpool" Colin King
@ 2019-09-12  7:19 ` Ursula Braun
  2019-09-12  7:22   ` Colin Ian King
  0 siblings, 1 reply; 3+ messages in thread
From: Ursula Braun @ 2019-09-12  7:19 UTC (permalink / raw)
  To: Colin King, linux-s390
  Cc: Julian Wiedmann, Vasily Gorbik, Christian Borntraeger,
	kernel-janitors, linux-kernel, Heiko Carstens



On 9/11/19 5:35 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in QETH_CARD_TEXT text. Fix it.
> 

This spelling mistake is intended, because this qeth trace area is defined for
8 byte length entries. We try to make the entries as speaking as possible - even
at cost of spelling mistakes.

> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/s390/net/qeth_core_main.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c
> index a7868c8133ee..ab96b22db3fe 100644
> --- a/drivers/s390/net/qeth_core_main.c
> +++ b/drivers/s390/net/qeth_core_main.c
> @@ -218,7 +218,7 @@ static int qeth_alloc_buffer_pool(struct qeth_card *card)
>  	void *ptr;
>  	int i, j;
>  
> -	QETH_CARD_TEXT(card, 5, "alocpool");
> +	QETH_CARD_TEXT(card, 5, "allocpool");
>  	for (i = 0; i < card->qdio.init_pool.buf_count; ++i) {
>  		pool_entry = kzalloc(sizeof(*pool_entry), GFP_KERNEL);
>  		if (!pool_entry) {
> 


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

* Re: [PATCH] s390/qeth: fix spelling mistake "alocpool" -> "allocpool"
  2019-09-12  7:19 ` Ursula Braun
@ 2019-09-12  7:22   ` Colin Ian King
  0 siblings, 0 replies; 3+ messages in thread
From: Colin Ian King @ 2019-09-12  7:22 UTC (permalink / raw)
  To: Ursula Braun, linux-s390
  Cc: Julian Wiedmann, Vasily Gorbik, Christian Borntraeger,
	kernel-janitors, linux-kernel, Heiko Carstens

On 12/09/2019 08:19, Ursula Braun wrote:
> 
> 
> On 9/11/19 5:35 PM, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> There is a spelling mistake in QETH_CARD_TEXT text. Fix it.
>>
> 
> This spelling mistake is intended, because this qeth trace area is defined for
> 8 byte length entries. We try to make the entries as speaking as possible - even
> at cost of spelling mistakes.

Ah, OK.

> 
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>>  drivers/s390/net/qeth_core_main.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c
>> index a7868c8133ee..ab96b22db3fe 100644
>> --- a/drivers/s390/net/qeth_core_main.c
>> +++ b/drivers/s390/net/qeth_core_main.c
>> @@ -218,7 +218,7 @@ static int qeth_alloc_buffer_pool(struct qeth_card *card)
>>  	void *ptr;
>>  	int i, j;
>>  
>> -	QETH_CARD_TEXT(card, 5, "alocpool");
>> +	QETH_CARD_TEXT(card, 5, "allocpool");
>>  	for (i = 0; i < card->qdio.init_pool.buf_count; ++i) {
>>  		pool_entry = kzalloc(sizeof(*pool_entry), GFP_KERNEL);
>>  		if (!pool_entry) {
>>
> 


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

end of thread, other threads:[~2019-09-12  7:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 15:35 [PATCH] s390/qeth: fix spelling mistake "alocpool" -> "allocpool" Colin King
2019-09-12  7:19 ` Ursula Braun
2019-09-12  7:22   ` Colin Ian King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).