[PATCH v2 0/2] Drivers: hv: fix typos in comments

Hemanth Selam posted 2 patches 2 weeks, 4 days ago
There is a newer version of this series
drivers/hv/channel.c        | 2 +-
tools/hv/hv_get_dns_info.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
[PATCH v2 0/2] Drivers: hv: fix typos in comments
Posted by Hemanth Selam 2 weeks, 4 days ago
This is v2 of the spelling fixes for this tree.

Changes since v1:
Subject prefix of patch 1 corrected to 'Drivers: hv: vmbus:'.
Michael Kelley's Reviewed-by tags are picked up.

Only comments change; no code is touched.

 drivers/hv/channel.c        | 2 +-
 tools/hv/hv_get_dns_info.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
[PATCH v3 0/2] Drivers: hv: fix typos in comments
Posted by Hemanth Selam 1 week, 3 days ago
Two one-line comment typo fixes.  The diffs are unchanged from v2.

v3:
 - Trimmed the commit messages down to a single line each (Wei Liu).
 - Dropped the Assisted-by trailer naming the model.
 - Moved the note about the v1 -> v2 subject prefix change out of patch
   1/2's commit message and into this cover letter: the prefix became
   "Drivers: hv: vmbus:" to match the subsystem's history, as Michael
   Kelley pointed out.

Michael Kelley's Reviewed-by is carried over on both patches, as neither
diff changed.

v2: https://lore.kernel.org/all/20260907044946.10813-1-hemanth.selam@gmail.com/


Hemanth Selam (2):
  Drivers: hv: vmbus: fix typo "substract" in comment
  tools/hv: fix typo "retrive" in comment

 drivers/hv/channel.c        | 2 +-
 tools/hv/hv_get_dns_info.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.48.1
Re: [PATCH v3 0/2] Drivers: hv: fix typos in comments
Posted by Wei Liu 6 days, 2 hours ago
On Tue, Sep 15, 2026 at 12:31:43PM +0530, Hemanth Selam wrote:
> Two one-line comment typo fixes.  The diffs are unchanged from v2.
> 
> v3:
>  - Trimmed the commit messages down to a single line each (Wei Liu).
>  - Dropped the Assisted-by trailer naming the model.
>  - Moved the note about the v1 -> v2 subject prefix change out of patch
>    1/2's commit message and into this cover letter: the prefix became
>    "Drivers: hv: vmbus:" to match the subsystem's history, as Michael
>    Kelley pointed out.
> 
> Michael Kelley's Reviewed-by is carried over on both patches, as neither
> diff changed.
> 
> v2: https://lore.kernel.org/all/20260907044946.10813-1-hemanth.selam@gmail.com/
> 
> 
> Hemanth Selam (2):
>   Drivers: hv: vmbus: fix typo "substract" in comment
>   tools/hv: fix typo "retrive" in comment
> 

Applied. Thanks.
[PATCH v3 1/2] Drivers: hv: vmbus: fix typo "substract" in comment
Posted by Hemanth Selam 1 week, 3 days ago
Correct "substract" to "subtract".

Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 drivers/hv/channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
index 7e4cc6f55237..a0883ddf32e2 100644
--- a/drivers/hv/channel.c
+++ b/drivers/hv/channel.c
@@ -79,7 +79,7 @@ static inline u32 hv_ring_gpadl_send_hvpgoffset(u32 offset)
 	 * therefore leaving a (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap.
 	 *
 	 * And to calculate the effective send offset in gpadl, we need to
-	 * substract this gap.
+	 * subtract this gap.
 	 */
 	return (offset - (PAGE_SIZE - HV_HYP_PAGE_SIZE)) >> HV_HYP_PAGE_SHIFT;
 }
-- 
2.48.1
[PATCH v3 2/2] tools/hv: fix typo "retrive" in comment
Posted by Hemanth Selam 1 week, 3 days ago
Correct "retrive" to "retrieve".

Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 tools/hv/hv_get_dns_info.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/hv/hv_get_dns_info.sh b/tools/hv/hv_get_dns_info.sh
index 268521234d4b..288821565eee 100755
--- a/tools/hv/hv_get_dns_info.sh
+++ b/tools/hv/hv_get_dns_info.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# This example script parses /etc/resolv.conf to retrive DNS information.
+# This example script parses /etc/resolv.conf to retrieve DNS information.
 # In the interest of keeping the KVP daemon code free of distro specific
 # information; the kvp daemon code invokes this external script to gather
 # DNS information.
-- 
2.48.1