linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle"
@ 2018-03-29 12:11 Colin King
  2018-03-29 13:49 ` Shamir Rabinovitch
  2018-03-29 19:20 ` Jason Gunthorpe
  0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2018-03-29 12:11 UTC (permalink / raw)
  To: Michal Kalderon, Ariel Elior, Doug Ledford, Jason Gunthorpe, linux-rdma
  Cc: kernel-janitors, linux-kernel

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

Trivial fix to spelling mistake in DP_ERR message text

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

diff --git a/drivers/infiniband/hw/qedr/main.c b/drivers/infiniband/hw/qedr/main.c
index 1f032fdbdb19..36d60d3c1630 100644
--- a/drivers/infiniband/hw/qedr/main.c
+++ b/drivers/infiniband/hw/qedr/main.c
@@ -708,7 +708,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
 			     "Error: CQ event with NULL pointer ibcq. Handle=%llx\n",
 			     roce_handle64);
 		}
-		DP_ERR(dev, "CQ event %d on hanlde %p\n", e_code, cq);
+		DP_ERR(dev, "CQ event %d on handle %p\n", e_code, cq);
 		break;
 	case EVENT_TYPE_QP:
 		qp = (struct qedr_qp *)(uintptr_t)roce_handle64;
@@ -724,7 +724,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
 			     "Error: QP event with NULL pointer ibqp. Handle=%llx\n",
 			     roce_handle64);
 		}
-		DP_ERR(dev, "QP event %d on hanlde %p\n", e_code, qp);
+		DP_ERR(dev, "QP event %d on handle %p\n", e_code, qp);
 		break;
 	default:
 		break;
-- 
2.15.1

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

* Re: [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle"
  2018-03-29 12:11 [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle" Colin King
@ 2018-03-29 13:49 ` Shamir Rabinovitch
  2018-03-29 19:20 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Shamir Rabinovitch @ 2018-03-29 13:49 UTC (permalink / raw)
  To: Colin King
  Cc: Michal Kalderon, Ariel Elior, Doug Ledford, Jason Gunthorpe,
	linux-rdma, kernel-janitors, linux-kernel

On Thu, Mar 29, 2018 at 01:11:07PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in DP_ERR message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/infiniband/hw/qedr/main.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/infiniband/hw/qedr/main.c b/drivers/infiniband/hw/qedr/main.c
> index 1f032fdbdb19..36d60d3c1630 100644
> --- a/drivers/infiniband/hw/qedr/main.c
> +++ b/drivers/infiniband/hw/qedr/main.c
> @@ -708,7 +708,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
>  			     "Error: CQ event with NULL pointer ibcq. Handle=%llx\n",
>  			     roce_handle64);
>  		}
> -		DP_ERR(dev, "CQ event %d on hanlde %p\n", e_code, cq);
> +		DP_ERR(dev, "CQ event %d on handle %p\n", e_code, cq);
>  		break;
>  	case EVENT_TYPE_QP:
>  		qp = (struct qedr_qp *)(uintptr_t)roce_handle64;
> @@ -724,7 +724,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
>  			     "Error: QP event with NULL pointer ibqp. Handle=%llx\n",
>  			     roce_handle64);
>  		}
> -		DP_ERR(dev, "QP event %d on hanlde %p\n", e_code, qp);
> +		DP_ERR(dev, "QP event %d on handle %p\n", e_code, qp);
>  		break;
>  	default:
>  		break;
> -- 
> 2.15.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reviewed-by: Shamir Rabinovitch <shamir.rabinovitch@oracle.com>

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

* Re: [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle"
  2018-03-29 12:11 [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle" Colin King
  2018-03-29 13:49 ` Shamir Rabinovitch
@ 2018-03-29 19:20 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2018-03-29 19:20 UTC (permalink / raw)
  To: Colin King
  Cc: Michal Kalderon, Ariel Elior, Doug Ledford, linux-rdma,
	kernel-janitors, linux-kernel

On Thu, Mar 29, 2018 at 01:11:07PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in DP_ERR message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> Reviewed-by: Shamir Rabinovitch <shamir.rabinovitch@oracle.com>
> ---
>  drivers/infiniband/hw/qedr/main.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

applied to for-next, thanks.

I also fixed the spelling error in the subject :)

Jason

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

end of thread, other threads:[~2018-03-29 19:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-29 12:11 [PATCH] qedr: ix spelling mistake: "hanlde" -> "handle" Colin King
2018-03-29 13:49 ` Shamir Rabinovitch
2018-03-29 19:20 ` Jason Gunthorpe

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