* [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm"
@ 2017-04-24 9:26 Colin King
[not found] ` <20170424092642.29862-1-colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Colin King @ 2017-04-24 9:26 UTC (permalink / raw)
To: Moni Shoua, Doug Ledford, Sean Hefty, Hal Rosenstock,
linux-rdma-u79uwXL29TY76Z2rM5mHXA
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA
From: Colin Ian King <colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>
trivial fix to typo in pr_err message
Signed-off-by: Colin Ian King <colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>
---
drivers/infiniband/sw/rxe/rxe_verbs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c
index 486035a85bac..6a4b02470d21 100644
--- a/drivers/infiniband/sw/rxe/rxe_verbs.c
+++ b/drivers/infiniband/sw/rxe/rxe_verbs.c
@@ -1324,7 +1324,7 @@ int rxe_register_device(struct rxe_dev *rxe)
rxe->tfm = crypto_alloc_shash("crc32", 0, 0);
if (IS_ERR(rxe->tfm)) {
- pr_err("failed to allocate crc algorithmi err:%ld",
+ pr_err("failed to allocate crc algorithm err:%ld",
PTR_ERR(rxe->tfm));
return PTR_ERR(rxe->tfm);
}
--
2.11.0
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 5+ messages in thread[parent not found: <20170424092642.29862-1-colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>]
* Re: [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm" [not found] ` <20170424092642.29862-1-colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> @ 2017-04-24 9:41 ` Moni Shoua 2017-04-24 17:44 ` Joe Perches 1 sibling, 0 replies; 5+ messages in thread From: Moni Shoua @ 2017-04-24 9:41 UTC (permalink / raw) To: Colin King Cc: Doug Ledford, Sean Hefty, Hal Rosenstock, linux-rdma, Linux Kernel Mailinglist On Mon, Apr 24, 2017 at 12:26 PM, Colin King <colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> wrote: > From: Colin Ian King <colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> > > trivial fix to typo in pr_err message > > Signed-off-by: Colin Ian King <colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> > --- > drivers/infiniband/sw/rxe/rxe_verbs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c > index 486035a85bac..6a4b02470d21 100644 > --- a/drivers/infiniband/sw/rxe/rxe_verbs.c > +++ b/drivers/infiniband/sw/rxe/rxe_verbs.c > @@ -1324,7 +1324,7 @@ int rxe_register_device(struct rxe_dev *rxe) > > rxe->tfm = crypto_alloc_shash("crc32", 0, 0); > if (IS_ERR(rxe->tfm)) { > - pr_err("failed to allocate crc algorithmi err:%ld", > + pr_err("failed to allocate crc algorithm err:%ld", > PTR_ERR(rxe->tfm)); > return PTR_ERR(rxe->tfm); > } > -- > 2.11.0 Thanks (for both patches) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm" [not found] ` <20170424092642.29862-1-colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> 2017-04-24 9:41 ` Moni Shoua @ 2017-04-24 17:44 ` Joe Perches [not found] ` <1493055896.31620.2.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org> 1 sibling, 1 reply; 5+ messages in thread From: Joe Perches @ 2017-04-24 17:44 UTC (permalink / raw) To: Colin King, Moni Shoua, Doug Ledford, Sean Hefty, Hal Rosenstock, linux-rdma-u79uwXL29TY76Z2rM5mHXA Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA On Mon, 2017-04-24 at 10:26 +0100, Colin King wrote: > trivial fix to typo in pr_err message [] > diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c [] > @@ -1324,7 +1324,7 @@ int rxe_register_device(struct rxe_dev *rxe) > > rxe->tfm = crypto_alloc_shash("crc32", 0, 0); > if (IS_ERR(rxe->tfm)) { > - pr_err("failed to allocate crc algorithmi err:%ld", > + pr_err("failed to allocate crc algorithm err:%ld", nicer to add a newline too -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <1493055896.31620.2.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm" [not found] ` <1493055896.31620.2.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org> @ 2017-04-28 17:08 ` Doug Ledford [not found] ` <1493399309.3041.158.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Doug Ledford @ 2017-04-28 17:08 UTC (permalink / raw) To: Joe Perches, Colin King, Moni Shoua, Sean Hefty, Hal Rosenstock, linux-rdma-u79uwXL29TY76Z2rM5mHXA Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA On Mon, 2017-04-24 at 10:44 -0700, Joe Perches wrote: > On Mon, 2017-04-24 at 10:26 +0100, Colin King wrote: > > > > trivial fix to typo in pr_err message > [] > > > > diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c > > b/drivers/infiniband/sw/rxe/rxe_verbs.c > [] > > > > @@ -1324,7 +1324,7 @@ int rxe_register_device(struct rxe_dev *rxe) > > > > rxe->tfm = crypto_alloc_shash("crc32", 0, 0); > > if (IS_ERR(rxe->tfm)) { > > - pr_err("failed to allocate crc algorithmi > > err:%ld", > > + pr_err("failed to allocate crc algorithm err:%ld", > > nicer to add a newline too I added a newline and then applied the patch. Thanks. -- Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> GPG KeyID: B826A3330E572FDD Key fingerprint = AE6B 1BDA 122B 23B4 265B 1274 B826 A333 0E57 2FDD -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <1493399309.3041.158.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm" [not found] ` <1493399309.3041.158.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2017-04-28 17:14 ` Colin Ian King 0 siblings, 0 replies; 5+ messages in thread From: Colin Ian King @ 2017-04-28 17:14 UTC (permalink / raw) To: Doug Ledford, Joe Perches, Moni Shoua, Sean Hefty, Hal Rosenstock, linux-rdma-u79uwXL29TY76Z2rM5mHXA Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA On 28/04/17 18:08, Doug Ledford wrote: > On Mon, 2017-04-24 at 10:44 -0700, Joe Perches wrote: >> On Mon, 2017-04-24 at 10:26 +0100, Colin King wrote: >>> >>> trivial fix to typo in pr_err message >> [] >>> >>> diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c >>> b/drivers/infiniband/sw/rxe/rxe_verbs.c >> [] >>> >>> @@ -1324,7 +1324,7 @@ int rxe_register_device(struct rxe_dev *rxe) >>> >>> rxe->tfm = crypto_alloc_shash("crc32", 0, 0); >>> if (IS_ERR(rxe->tfm)) { >>> - pr_err("failed to allocate crc algorithmi >>> err:%ld", >>> + pr_err("failed to allocate crc algorithm err:%ld", >> >> nicer to add a newline too > > I added a newline and then applied the patch. Thanks. > Thanks Doug. I overlooked replying to the earlier email. Colin -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-04-28 17:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-24 9:26 [PATCH][V2] IB/rxe: fix typo: "algorithmi" -> "algorithm" Colin King
[not found] ` <20170424092642.29862-1-colin.king-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>
2017-04-24 9:41 ` Moni Shoua
2017-04-24 17:44 ` Joe Perches
[not found] ` <1493055896.31620.2.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
2017-04-28 17:08 ` Doug Ledford
[not found] ` <1493399309.3041.158.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-04-28 17:14 ` 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).