netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] selftests/net/pmtu.sh: Fix typo in error message
@ 2024-08-14 17:31 Abhash Jha
  2024-08-15  7:35 ` Hangbin Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Abhash Jha @ 2024-08-14 17:31 UTC (permalink / raw)
  To: linux-kselftest; +Cc: linux-kernel, kuba, shuah, netdev, Abhash Jha

The word 'expected' was spelled as 'exepcted'.
Fixed the typo in this patch.

Signed-off-by: Abhash Jha <abhashkumarjha123@gmail.com>
---
 tools/testing/selftests/net/pmtu.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/net/pmtu.sh b/tools/testing/selftests/net/pmtu.sh
index cfc849580..62eceb385 100755
--- a/tools/testing/selftests/net/pmtu.sh
+++ b/tools/testing/selftests/net/pmtu.sh
@@ -1347,7 +1347,7 @@ test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception() {
 		size=$(du -sb $tmpoutfile)
 		size=${size%%/tmp/*}
 
-		[ $size -ne 1048576 ] && err "File size $size mismatches exepcted value in locally bridged vxlan test" && return 1
+		[ $size -ne 1048576 ] && err "File size $size mismatches expected value in locally bridged vxlan test" && return 1
 	done
 
 	rm -f "$tmpoutfile"
-- 
2.43.0


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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-14 17:31 [PATCH] selftests/net/pmtu.sh: Fix typo in error message Abhash Jha
@ 2024-08-15  7:35 ` Hangbin Liu
  2024-08-15 12:53 ` Simon Horman
  2024-08-16  2:01 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 8+ messages in thread
From: Hangbin Liu @ 2024-08-15  7:35 UTC (permalink / raw)
  To: Abhash Jha; +Cc: linux-kselftest, linux-kernel, kuba, shuah, netdev

Hi Abhash,

You need add target repo for the patch. e.g. [PATCH net] selftests...

On Wed, Aug 14, 2024 at 11:01:21PM +0530, Abhash Jha wrote:
> The word 'expected' was spelled as 'exepcted'.
> Fixed the typo in this patch.
> 

Here you need to add the fixes tag. e.g.
Fixes: 136a1b434bbb ("selftests: net: test vxlan pmtu exceptions with tcp")

> Signed-off-by: Abhash Jha <abhashkumarjha123@gmail.com>
> ---
>  tools/testing/selftests/net/pmtu.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/net/pmtu.sh b/tools/testing/selftests/net/pmtu.sh
> index cfc849580..62eceb385 100755
> --- a/tools/testing/selftests/net/pmtu.sh
> +++ b/tools/testing/selftests/net/pmtu.sh
> @@ -1347,7 +1347,7 @@ test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception() {
>  		size=$(du -sb $tmpoutfile)
>  		size=${size%%/tmp/*}
>  
> -		[ $size -ne 1048576 ] && err "File size $size mismatches exepcted value in locally bridged vxlan test" && return 1
> +		[ $size -ne 1048576 ] && err "File size $size mismatches expected value in locally bridged vxlan test" && return 1
>  	done
>  
>  	rm -f "$tmpoutfile"
> -- 
> 2.43.0
> 

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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-14 17:31 [PATCH] selftests/net/pmtu.sh: Fix typo in error message Abhash Jha
  2024-08-15  7:35 ` Hangbin Liu
@ 2024-08-15 12:53 ` Simon Horman
  2024-08-15 17:07   ` Abhash jha
  2024-08-16  2:01 ` patchwork-bot+netdevbpf
  2 siblings, 1 reply; 8+ messages in thread
From: Simon Horman @ 2024-08-15 12:53 UTC (permalink / raw)
  To: Abhash Jha; +Cc: linux-kselftest, linux-kernel, kuba, shuah, netdev

On Wed, Aug 14, 2024 at 11:01:21PM +0530, Abhash Jha wrote:
> The word 'expected' was spelled as 'exepcted'.
> Fixed the typo in this patch.
> 
> Signed-off-by: Abhash Jha <abhashkumarjha123@gmail.com>

I agree with the correctness of this change.
And I verified that with this patch applied,
coedspell only flags false positives in this file.

Reviewed-by: Simon Horman <horms@kernel.org>


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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-15 12:53 ` Simon Horman
@ 2024-08-15 17:07   ` Abhash jha
  2024-08-15 17:45     ` Simon Horman
  0 siblings, 1 reply; 8+ messages in thread
From: Abhash jha @ 2024-08-15 17:07 UTC (permalink / raw)
  To: Simon Horman; +Cc: linux-kselftest, linux-kernel, kuba, shuah, netdev

> I agree with the correctness of this change.
> And I verified that with this patch applied,
> coedspell only flags false positives in this file.
>
> Reviewed-by: Simon Horman <horms@kernel.org>

Hi Simon,
Thanks for the review, Should I still send the patch again with the
fixes tag and the target repo for the patch as suggested by
liuhangbin@gmail.com. Or is it fine for now.

Regards,
Abhash

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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-15 17:07   ` Abhash jha
@ 2024-08-15 17:45     ` Simon Horman
  2024-08-16  0:38       ` Jakub Kicinski
  0 siblings, 1 reply; 8+ messages in thread
From: Simon Horman @ 2024-08-15 17:45 UTC (permalink / raw)
  To: Abhash jha; +Cc: linux-kselftest, linux-kernel, kuba, shuah, netdev, liuhangbin

On Thu, Aug 15, 2024 at 10:37:19PM +0530, Abhash jha wrote:
> > I agree with the correctness of this change.
> > And I verified that with this patch applied,
> > coedspell only flags false positives in this file.
> >
> > Reviewed-by: Simon Horman <horms@kernel.org>
> 
> Hi Simon,
> Thanks for the review, Should I still send the patch again with the
> fixes tag and the target repo for the patch as suggested by
> liuhangbin@gmail.com. Or is it fine for now.

Sorry for sending my response before I noticed Hangbin's -
I didn't mean to send conflicting information.

TBH, I'm not entirely sure this is a fix, for which my
rule of thumb is that it resolves a user-visible bug.
But if you believe it is, then please follow Hangbin's advice.


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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-15 17:45     ` Simon Horman
@ 2024-08-16  0:38       ` Jakub Kicinski
  2024-08-16  3:55         ` Hangbin Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2024-08-16  0:38 UTC (permalink / raw)
  To: Simon Horman
  Cc: Abhash jha, linux-kselftest, linux-kernel, shuah, netdev,
	liuhangbin

On Thu, 15 Aug 2024 18:45:08 +0100 Simon Horman wrote:
> On Thu, Aug 15, 2024 at 10:37:19PM +0530, Abhash jha wrote:
> > > I agree with the correctness of this change.
> > > And I verified that with this patch applied,
> > > coedspell only flags false positives in this file.
> > >
> > > Reviewed-by: Simon Horman <horms@kernel.org>  
> > 
> > Hi Simon,
> > Thanks for the review, Should I still send the patch again with the
> > fixes tag and the target repo for the patch as suggested by
> > liuhangbin@gmail.com. Or is it fine for now.  
> 
> Sorry for sending my response before I noticed Hangbin's -
> I didn't mean to send conflicting information.
> 
> TBH, I'm not entirely sure this is a fix, for which my
> rule of thumb is that it resolves a user-visible bug.

+1, same feeling here, I'll apply as is.

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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-14 17:31 [PATCH] selftests/net/pmtu.sh: Fix typo in error message Abhash Jha
  2024-08-15  7:35 ` Hangbin Liu
  2024-08-15 12:53 ` Simon Horman
@ 2024-08-16  2:01 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 8+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-08-16  2:01 UTC (permalink / raw)
  To: Abhash jha; +Cc: linux-kselftest, linux-kernel, kuba, shuah, netdev

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 14 Aug 2024 23:01:21 +0530 you wrote:
> The word 'expected' was spelled as 'exepcted'.
> Fixed the typo in this patch.
> 
> Signed-off-by: Abhash Jha <abhashkumarjha123@gmail.com>
> ---
>  tools/testing/selftests/net/pmtu.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - selftests/net/pmtu.sh: Fix typo in error message
    https://git.kernel.org/netdev/net-next/c/e7d731326ef0

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [PATCH] selftests/net/pmtu.sh: Fix typo in error message
  2024-08-16  0:38       ` Jakub Kicinski
@ 2024-08-16  3:55         ` Hangbin Liu
  0 siblings, 0 replies; 8+ messages in thread
From: Hangbin Liu @ 2024-08-16  3:55 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Simon Horman, Abhash jha, linux-kselftest, linux-kernel, shuah,
	netdev

On Thu, Aug 15, 2024 at 05:38:18PM -0700, Jakub Kicinski wrote:
> On Thu, 15 Aug 2024 18:45:08 +0100 Simon Horman wrote:
> > On Thu, Aug 15, 2024 at 10:37:19PM +0530, Abhash jha wrote:
> > > > I agree with the correctness of this change.
> > > > And I verified that with this patch applied,
> > > > coedspell only flags false positives in this file.
> > > >
> > > > Reviewed-by: Simon Horman <horms@kernel.org>  
> > > 
> > > Hi Simon,
> > > Thanks for the review, Should I still send the patch again with the
> > > fixes tag and the target repo for the patch as suggested by
> > > liuhangbin@gmail.com. Or is it fine for now.  
> > 
> > Sorry for sending my response before I noticed Hangbin's -
> > I didn't mean to send conflicting information.
> > 
> > TBH, I'm not entirely sure this is a fix, for which my
> > rule of thumb is that it resolves a user-visible bug.
> 
> +1, same feeling here, I'll apply as is.

Thanks, good to know this.

Hangbin

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

end of thread, other threads:[~2024-08-16  3:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-14 17:31 [PATCH] selftests/net/pmtu.sh: Fix typo in error message Abhash Jha
2024-08-15  7:35 ` Hangbin Liu
2024-08-15 12:53 ` Simon Horman
2024-08-15 17:07   ` Abhash jha
2024-08-15 17:45     ` Simon Horman
2024-08-16  0:38       ` Jakub Kicinski
2024-08-16  3:55         ` Hangbin Liu
2024-08-16  2:01 ` patchwork-bot+netdevbpf

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