* [PATCH] RDMA/core: Fix repeated words in comments
@ 2023-08-22 17:48 Rohit Chavan
2023-09-11 9:55 ` Leon Romanovsky
0 siblings, 1 reply; 4+ messages in thread
From: Rohit Chavan @ 2023-08-22 17:48 UTC (permalink / raw)
To: Jason Gunthorpe, Leon Romanovsky, linux-rdma, linux-kernel; +Cc: Rohit Chavan
Corrected the repeated words in the documentation for
rdma_replace_ah_attr and ah_attribute.
Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
---
drivers/infiniband/core/verbs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c
index b99b3cc283b6..0c5b24ce3966 100644
--- a/drivers/infiniband/core/verbs.c
+++ b/drivers/infiniband/core/verbs.c
@@ -366,7 +366,7 @@ void rdma_copy_ah_attr(struct rdma_ah_attr *dest,
EXPORT_SYMBOL(rdma_copy_ah_attr);
/**
- * rdma_replace_ah_attr - Replace valid ah_attr with new one.
+ * rdma_replace_ah_attr - Replace valid ah_attr with new one.
* @old: Pointer to existing ah_attr which needs to be replaced.
* old is assumed to be valid or zero'd
* @new: Pointer to the new ah_attr.
@@ -744,7 +744,7 @@ EXPORT_SYMBOL(ib_get_gids_from_rdma_hdr);
/* Resolve destination mac address and hop limit for unicast destination
* GID entry, considering the source GID entry as well.
- * ah_attribute must have valid port_num, sgid_index.
+ * ah_attribute must have valid port_num, sgid_index.
*/
static int ib_resolve_unicast_gid_dmac(struct ib_device *device,
struct rdma_ah_attr *ah_attr)
--
2.30.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] RDMA/core: Fix repeated words in comments
@ 2023-08-24 8:13 Rohit Chavan
2023-09-11 11:15 ` Leon Romanovsky
0 siblings, 1 reply; 4+ messages in thread
From: Rohit Chavan @ 2023-08-24 8:13 UTC (permalink / raw)
To: Jason Gunthorpe, Leon Romanovsky, linux-rdma, linux-kernel; +Cc: Rohit Chavan
Corrected the repeated words in the documentation of
rdma_replace_ah_attr() and ib_resolve_unicast_gid_dmac()
functions.
Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
---
drivers/infiniband/core/verbs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c
index b99b3cc283b6..0c5b24ce3966 100644
--- a/drivers/infiniband/core/verbs.c
+++ b/drivers/infiniband/core/verbs.c
@@ -366,7 +366,7 @@ void rdma_copy_ah_attr(struct rdma_ah_attr *dest,
EXPORT_SYMBOL(rdma_copy_ah_attr);
/**
- * rdma_replace_ah_attr - Replace valid ah_attr with new new one.
+ * rdma_replace_ah_attr - Replace valid ah_attr with new one.
* @old: Pointer to existing ah_attr which needs to be replaced.
* old is assumed to be valid or zero'd
* @new: Pointer to the new ah_attr.
@@ -744,7 +744,7 @@ EXPORT_SYMBOL(ib_get_gids_from_rdma_hdr);
/* Resolve destination mac address and hop limit for unicast destination
* GID entry, considering the source GID entry as well.
- * ah_attribute must have have valid port_num, sgid_index.
+ * ah_attribute must have valid port_num, sgid_index.
*/
static int ib_resolve_unicast_gid_dmac(struct ib_device *device,
struct rdma_ah_attr *ah_attr)
--
2.30.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] RDMA/core: Fix repeated words in comments
2023-08-22 17:48 [PATCH] RDMA/core: Fix repeated words in comments Rohit Chavan
@ 2023-09-11 9:55 ` Leon Romanovsky
0 siblings, 0 replies; 4+ messages in thread
From: Leon Romanovsky @ 2023-09-11 9:55 UTC (permalink / raw)
To: Rohit Chavan; +Cc: Jason Gunthorpe, linux-rdma, linux-kernel
On Tue, Aug 22, 2023 at 11:18:57PM +0530, Rohit Chavan wrote:
> Corrected the repeated words in the documentation for
> rdma_replace_ah_attr and ah_attribute.
>
> Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
> ---
> drivers/infiniband/core/verbs.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c
> index b99b3cc283b6..0c5b24ce3966 100644
> --- a/drivers/infiniband/core/verbs.c
> +++ b/drivers/infiniband/core/verbs.c
> @@ -366,7 +366,7 @@ void rdma_copy_ah_attr(struct rdma_ah_attr *dest,
> EXPORT_SYMBOL(rdma_copy_ah_attr);
>
> /**
> - * rdma_replace_ah_attr - Replace valid ah_attr with new one.
> + * rdma_replace_ah_attr - Replace valid ah_attr with new one.
<...>
> - * ah_attribute must have valid port_num, sgid_index.
> + * ah_attribute must have valid port_num, sgid_index.
What does this patch fix/change?
Thanks
> */
> static int ib_resolve_unicast_gid_dmac(struct ib_device *device,
> struct rdma_ah_attr *ah_attr)
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] RDMA/core: Fix repeated words in comments
2023-08-24 8:13 Rohit Chavan
@ 2023-09-11 11:15 ` Leon Romanovsky
0 siblings, 0 replies; 4+ messages in thread
From: Leon Romanovsky @ 2023-09-11 11:15 UTC (permalink / raw)
To: Jason Gunthorpe, linux-rdma, linux-kernel, Rohit Chavan
On Thu, 24 Aug 2023 13:43:04 +0530, Rohit Chavan wrote:
> Corrected the repeated words in the documentation of
> rdma_replace_ah_attr() and ib_resolve_unicast_gid_dmac()
> functions.
>
>
Applied, thanks!
[1/1] RDMA/core: Fix repeated words in comments
https://git.kernel.org/rdma/rdma/c/e57b0eef668497
Best regards,
--
Leon Romanovsky <leon@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-09-11 22:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-22 17:48 [PATCH] RDMA/core: Fix repeated words in comments Rohit Chavan
2023-09-11 9:55 ` Leon Romanovsky
-- strict thread matches above, loose matches on Subject: below --
2023-08-24 8:13 Rohit Chavan
2023-09-11 11:15 ` Leon Romanovsky
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).