linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hyperv: Few mundane typo fixes
@ 2021-03-21 23:31 Bhaskar Chowdhury
  2021-03-21 23:41 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-21 23:31 UTC (permalink / raw)
  To: kys, haiyangz, sthemmin, wei.liu, linux-hyperv, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/sructure/structure/
s/extention/extension/
s/offerred/offered/
s/adversley/adversely/

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

diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
index f1d74dcf0353..2c18c8e768ef 100644
--- a/include/linux/hyperv.h
+++ b/include/linux/hyperv.h
@@ -284,7 +284,7 @@ struct vmbus_channel_offer {

 		/*
 		 * Pipes:
-		 * The following sructure is an integrated pipe protocol, which
+		 * The following structure is an integrated pipe protocol, which
 		 * is implemented on top of standard user-defined data. Pipe
 		 * clients have MAX_PIPE_USER_DEFINED_BYTES left for their own
 		 * use.
@@ -883,11 +883,11 @@ struct vmbus_channel {
 	 * Support for sub-channels. For high performance devices,
 	 * it will be useful to have multiple sub-channels to support
 	 * a scalable communication infrastructure with the host.
-	 * The support for sub-channels is implemented as an extention
+	 * The support for sub-channels is implemented as an extension
 	 * to the current infrastructure.
 	 * The initial offer is considered the primary channel and this
 	 * offer message will indicate if the host supports sub-channels.
-	 * The guest is free to ask for sub-channels to be offerred and can
+	 * The guest is free to ask for sub-channels to be offered and can
 	 * open these sub-channels as a normal "primary" channel. However,
 	 * all sub-channels will have the same type and instance guids as the
 	 * primary channel. Requests sent on a given channel will result in a
@@ -951,7 +951,7 @@ struct vmbus_channel {
 	 * Clearly, these optimizations improve throughput at the expense of
 	 * latency. Furthermore, since the channel is shared for both
 	 * control and data messages, control messages currently suffer
-	 * unnecessary latency adversley impacting performance and boot
+	 * unnecessary latency adversely impacting performance and boot
 	 * time. To fix this issue, permit tagging the channel as being
 	 * in "low latency" mode. In this mode, we will bypass the monitor
 	 * mechanism.
--
2.31.0


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

* Re: [PATCH] hyperv: Few mundane typo fixes
  2021-03-21 23:31 [PATCH] hyperv: Few mundane typo fixes Bhaskar Chowdhury
@ 2021-03-21 23:41 ` Randy Dunlap
  2021-03-22 11:08   ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2021-03-21 23:41 UTC (permalink / raw)
  To: Bhaskar Chowdhury, kys, haiyangz, sthemmin, wei.liu,
	linux-hyperv, linux-kernel

On March 21, 2021 4:31:08 PM PDT, Bhaskar Chowdhury <unixbhaskar@gmail.com> wrote:
>
>s/sructure/structure/
>s/extention/extension/
>s/offerred/offered/
>s/adversley/adversely/
>
>Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

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

>---
> include/linux/hyperv.h | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
>diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
>index f1d74dcf0353..2c18c8e768ef 100644
>--- a/include/linux/hyperv.h
>+++ b/include/linux/hyperv.h
>@@ -284,7 +284,7 @@ struct vmbus_channel_offer {
>
> 		/*
> 		 * Pipes:
>-		 * The following sructure is an integrated pipe protocol, which
>+		 * The following structure is an integrated pipe protocol, which
> 		 * is implemented on top of standard user-defined data. Pipe
> 		 * clients have MAX_PIPE_USER_DEFINED_BYTES left for their own
> 		 * use.
>@@ -883,11 +883,11 @@ struct vmbus_channel {
> 	 * Support for sub-channels. For high performance devices,
> 	 * it will be useful to have multiple sub-channels to support
> 	 * a scalable communication infrastructure with the host.
>-	 * The support for sub-channels is implemented as an extention
>+	 * The support for sub-channels is implemented as an extension
> 	 * to the current infrastructure.
> 	 * The initial offer is considered the primary channel and this
> 	 * offer message will indicate if the host supports sub-channels.
>-	 * The guest is free to ask for sub-channels to be offerred and can
>+	 * The guest is free to ask for sub-channels to be offered and can
> 	 * open these sub-channels as a normal "primary" channel. However,
> 	 * all sub-channels will have the same type and instance guids as the
> 	 * primary channel. Requests sent on a given channel will result in a
>@@ -951,7 +951,7 @@ struct vmbus_channel {
> 	 * Clearly, these optimizations improve throughput at the expense of
> 	 * latency. Furthermore, since the channel is shared for both
> 	 * control and data messages, control messages currently suffer
>-	 * unnecessary latency adversley impacting performance and boot
>+	 * unnecessary latency adversely impacting performance and boot
> 	 * time. To fix this issue, permit tagging the channel as being
> 	 * in "low latency" mode. In this mode, we will bypass the monitor
> 	 * mechanism.
>--
>2.31.0


-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

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

* Re: [PATCH] hyperv: Few mundane typo fixes
  2021-03-21 23:41 ` Randy Dunlap
@ 2021-03-22 11:08   ` Wei Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Wei Liu @ 2021-03-22 11:08 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Bhaskar Chowdhury, kys, haiyangz, sthemmin, wei.liu,
	linux-hyperv, linux-kernel

On Sun, Mar 21, 2021 at 04:41:53PM -0700, Randy Dunlap wrote:
> On March 21, 2021 4:31:08 PM PDT, Bhaskar Chowdhury <unixbhaskar@gmail.com> wrote:
> >
> >s/sructure/structure/
> >s/extention/extension/
> >s/offerred/offered/
> >s/adversley/adversely/
> >
> >Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> 
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> 

Queued for hyperv-next. Thanks.

Wei.

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

end of thread, other threads:[~2021-03-22 11:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-21 23:31 [PATCH] hyperv: Few mundane typo fixes Bhaskar Chowdhury
2021-03-21 23:41 ` Randy Dunlap
2021-03-22 11:08   ` Wei Liu

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