linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload"
@ 2019-04-17 13:43 Colin King
  2019-04-18  4:24 ` Manish Rangankar
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin King @ 2019-04-17 13:43 UTC (permalink / raw)
  To: QLogic-Storage-Upstream, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi
  Cc: kernel-janitors, linux-kernel

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

There are a couple of spelling mistakes in some kernel alert messages.
Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/qedi/qedi_iscsi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/qedi/qedi_iscsi.c b/drivers/scsi/qedi/qedi_iscsi.c
index 6d6d6013e35b..e4391ee2c27a 100644
--- a/drivers/scsi/qedi/qedi_iscsi.c
+++ b/drivers/scsi/qedi/qedi_iscsi.c
@@ -579,7 +579,7 @@ static int qedi_conn_start(struct iscsi_cls_conn *cls_conn)
 	rval = qedi_iscsi_update_conn(qedi, qedi_conn);
 	if (rval) {
 		iscsi_conn_printk(KERN_ALERT, conn,
-				  "conn_start: FW oflload conn failed.\n");
+				  "conn_start: FW offload conn failed.\n");
 		rval = -EINVAL;
 		goto start_err;
 	}
@@ -590,7 +590,7 @@ static int qedi_conn_start(struct iscsi_cls_conn *cls_conn)
 	rval = iscsi_conn_start(cls_conn);
 	if (rval) {
 		iscsi_conn_printk(KERN_ALERT, conn,
-				  "iscsi_conn_start: FW oflload conn failed!!\n");
+				  "iscsi_conn_start: FW offload conn failed!!\n");
 	}
 
 start_err:
-- 
2.20.1


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

* RE: [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload"
  2019-04-17 13:43 [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload" Colin King
@ 2019-04-18  4:24 ` Manish Rangankar
  2019-04-18  5:59 ` Mukesh Ojha
  2019-04-19  0:34 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Manish Rangankar @ 2019-04-18  4:24 UTC (permalink / raw)
  To: Colin King, QLogic-Storage-Upstream, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi
  Cc: kernel-janitors, linux-kernel


> -----Original Message-----
> From: Colin King <colin.king@canonical.com>
> Sent: Wednesday, April 17, 2019 7:13 PM
> To: QLogic-Storage-Upstream@cavium.com; James E . J . Bottomley
> <jejb@linux.ibm.com>; Martin K . Petersen <martin.petersen@oracle.com>;
> linux-scsi@vger.kernel.org
> Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload"
> 
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are a couple of spelling mistakes in some kernel alert messages.
> Fix these.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/scsi/qedi/qedi_iscsi.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/scsi/qedi/qedi_iscsi.c b/drivers/scsi/qedi/qedi_iscsi.c
> index 6d6d6013e35b..e4391ee2c27a 100644
> --- a/drivers/scsi/qedi/qedi_iscsi.c
> +++ b/drivers/scsi/qedi/qedi_iscsi.c
> @@ -579,7 +579,7 @@ static int qedi_conn_start(struct iscsi_cls_conn
> *cls_conn)
>  	rval = qedi_iscsi_update_conn(qedi, qedi_conn);
>  	if (rval) {
>  		iscsi_conn_printk(KERN_ALERT, conn,
> -				  "conn_start: FW oflload conn failed.\n");
> +				  "conn_start: FW offload conn failed.\n");
>  		rval = -EINVAL;
>  		goto start_err;
>  	}
> @@ -590,7 +590,7 @@ static int qedi_conn_start(struct iscsi_cls_conn
> *cls_conn)
>  	rval = iscsi_conn_start(cls_conn);
>  	if (rval) {
>  		iscsi_conn_printk(KERN_ALERT, conn,
> -				  "iscsi_conn_start: FW oflload conn
> failed!!\n");
> +				  "iscsi_conn_start: FW offload conn
> failed!!\n");
>  	}
> 
>  start_err:
> --
> 2.20.1

Thanks,
Acked-by: Manish Rangankar <mrangankar@marvell.com>


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

* Re: [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload"
  2019-04-17 13:43 [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload" Colin King
  2019-04-18  4:24 ` Manish Rangankar
@ 2019-04-18  5:59 ` Mukesh Ojha
  2019-04-19  0:34 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Mukesh Ojha @ 2019-04-18  5:59 UTC (permalink / raw)
  To: Colin King, QLogic-Storage-Upstream, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi
  Cc: kernel-janitors, linux-kernel


On 4/17/2019 7:13 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There are a couple of spelling mistakes in some kernel alert messages.
> Fix these.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh
> ---
>   drivers/scsi/qedi/qedi_iscsi.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/qedi/qedi_iscsi.c b/drivers/scsi/qedi/qedi_iscsi.c
> index 6d6d6013e35b..e4391ee2c27a 100644
> --- a/drivers/scsi/qedi/qedi_iscsi.c
> +++ b/drivers/scsi/qedi/qedi_iscsi.c
> @@ -579,7 +579,7 @@ static int qedi_conn_start(struct iscsi_cls_conn *cls_conn)
>   	rval = qedi_iscsi_update_conn(qedi, qedi_conn);
>   	if (rval) {
>   		iscsi_conn_printk(KERN_ALERT, conn,
> -				  "conn_start: FW oflload conn failed.\n");
> +				  "conn_start: FW offload conn failed.\n");
>   		rval = -EINVAL;
>   		goto start_err;
>   	}
> @@ -590,7 +590,7 @@ static int qedi_conn_start(struct iscsi_cls_conn *cls_conn)
>   	rval = iscsi_conn_start(cls_conn);
>   	if (rval) {
>   		iscsi_conn_printk(KERN_ALERT, conn,
> -				  "iscsi_conn_start: FW oflload conn failed!!\n");
> +				  "iscsi_conn_start: FW offload conn failed!!\n");
>   	}
>   
>   start_err:

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

* Re: [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload"
  2019-04-17 13:43 [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload" Colin King
  2019-04-18  4:24 ` Manish Rangankar
  2019-04-18  5:59 ` Mukesh Ojha
@ 2019-04-19  0:34 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2019-04-19  0:34 UTC (permalink / raw)
  To: Colin King
  Cc: QLogic-Storage-Upstream, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi, kernel-janitors, linux-kernel


Colin,

> There are a couple of spelling mistakes in some kernel alert messages.
> Fix these.

Applied to 5.2/scsi-queue, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2019-04-19  0:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-17 13:43 [PATCH] scsi: qedi: fix spelling mistake "oflload" -> "offload" Colin King
2019-04-18  4:24 ` Manish Rangankar
2019-04-18  5:59 ` Mukesh Ojha
2019-04-19  0:34 ` Martin K. Petersen

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).