linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] RDMA/include: Mundane typo fixes throughout the file
@ 2021-03-18 10:04 Bhaskar Chowdhury
  2021-03-18 18:13 ` Randy Dunlap
  2021-03-23  0:45 ` Jason Gunthorpe
  0 siblings, 2 replies; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-18 10:04 UTC (permalink / raw)
  To: dledford, jgg, linux-rdma, linux-kernel; +Cc: rdunlap, Bhaskar Chowdhury


s/proviee/provide/
s/undelying/underlying/
s/quesiton/question/
s/drivr/driver/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 include/rdma/rdma_vt.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/rdma/rdma_vt.h b/include/rdma/rdma_vt.h
index 9fd217b24916..0af89cedfbf5 100644
--- a/include/rdma/rdma_vt.h
+++ b/include/rdma/rdma_vt.h
@@ -92,7 +92,7 @@ struct rvt_ibport {
 	/*
 	 * The pkey table is allocated and maintained by the driver. Drivers
 	 * need to have access to this before registering with rdmav. However
-	 * rdmavt will need access to it so drivers need to proviee this during
+	 * rdmavt will need access to it so drivers need to provide this during
 	 * the attach port API call.
 	 */
 	u16 *pkey_table;
@@ -230,7 +230,7 @@ struct rvt_driver_provided {
 	void (*do_send)(struct rvt_qp *qp);

 	/*
-	 * Returns a pointer to the undelying hardware's PCI device. This is
+	 * Returns a pointer to the underlying hardware's PCI device. This is
 	 * used to display information as to what hardware is being referenced
 	 * in an output message
 	 */
@@ -257,7 +257,7 @@ struct rvt_driver_provided {
 	void (*qp_priv_free)(struct rvt_dev_info *rdi, struct rvt_qp *qp);

 	/*
-	 * Inform the driver the particular qp in quesiton has been reset so
+	 * Inform the driver the particular qp in question has been reset so
 	 * that it can clean up anything it needs to.
 	 */
 	void (*notify_qp_reset)(struct rvt_qp *qp);
@@ -281,7 +281,7 @@ struct rvt_driver_provided {
 	void (*stop_send_queue)(struct rvt_qp *qp);

 	/*
-	 * Have the drivr drain any in progress operations
+	 * Have the driver drain any in progress operations
 	 */
 	void (*quiesce_qp)(struct rvt_qp *qp);

--
2.26.2


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

* Re: [PATCH] RDMA/include: Mundane typo fixes throughout the file
  2021-03-18 10:04 [PATCH] RDMA/include: Mundane typo fixes throughout the file Bhaskar Chowdhury
@ 2021-03-18 18:13 ` Randy Dunlap
  2021-03-23  0:45 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2021-03-18 18:13 UTC (permalink / raw)
  To: Bhaskar Chowdhury, dledford, jgg, linux-rdma, linux-kernel

On 3/18/21 3:04 AM, Bhaskar Chowdhury wrote:
> 
> s/proviee/provide/
> s/undelying/underlying/
> s/quesiton/question/
> s/drivr/driver/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  include/rdma/rdma_vt.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/include/rdma/rdma_vt.h b/include/rdma/rdma_vt.h
> index 9fd217b24916..0af89cedfbf5 100644
> --- a/include/rdma/rdma_vt.h
> +++ b/include/rdma/rdma_vt.h
> @@ -92,7 +92,7 @@ struct rvt_ibport {
>  	/*
>  	 * The pkey table is allocated and maintained by the driver. Drivers
>  	 * need to have access to this before registering with rdmav. However
> -	 * rdmavt will need access to it so drivers need to proviee this during
> +	 * rdmavt will need access to it so drivers need to provide this during
>  	 * the attach port API call.
>  	 */
>  	u16 *pkey_table;
> @@ -230,7 +230,7 @@ struct rvt_driver_provided {
>  	void (*do_send)(struct rvt_qp *qp);
> 
>  	/*
> -	 * Returns a pointer to the undelying hardware's PCI device. This is
> +	 * Returns a pointer to the underlying hardware's PCI device. This is
>  	 * used to display information as to what hardware is being referenced
>  	 * in an output message
>  	 */
> @@ -257,7 +257,7 @@ struct rvt_driver_provided {
>  	void (*qp_priv_free)(struct rvt_dev_info *rdi, struct rvt_qp *qp);
> 
>  	/*
> -	 * Inform the driver the particular qp in quesiton has been reset so
> +	 * Inform the driver the particular qp in question has been reset so
>  	 * that it can clean up anything it needs to.
>  	 */
>  	void (*notify_qp_reset)(struct rvt_qp *qp);
> @@ -281,7 +281,7 @@ struct rvt_driver_provided {
>  	void (*stop_send_queue)(struct rvt_qp *qp);
> 
>  	/*
> -	 * Have the drivr drain any in progress operations
> +	 * Have the driver drain any in progress operations
>  	 */
>  	void (*quiesce_qp)(struct rvt_qp *qp);
> 
> --


-- 
~Randy


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

* Re: [PATCH] RDMA/include: Mundane typo fixes throughout the file
  2021-03-18 10:04 [PATCH] RDMA/include: Mundane typo fixes throughout the file Bhaskar Chowdhury
  2021-03-18 18:13 ` Randy Dunlap
@ 2021-03-23  0:45 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2021-03-23  0:45 UTC (permalink / raw)
  To: Bhaskar Chowdhury; +Cc: dledford, linux-rdma, linux-kernel, rdunlap

On Thu, Mar 18, 2021 at 03:34:53PM +0530, Bhaskar Chowdhury wrote:
> s/proviee/provide/
> s/undelying/underlying/
> s/quesiton/question/
> s/drivr/driver/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> ---
>  include/rdma/rdma_vt.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Applied to for-next, thanks

Jason

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

end of thread, other threads:[~2021-03-23  0:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-18 10:04 [PATCH] RDMA/include: Mundane typo fixes throughout the file Bhaskar Chowdhury
2021-03-18 18:13 ` Randy Dunlap
2021-03-23  0:45 ` 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).