[PATCH] print: fix spelling error in message

Madhur Kumar posted 1 patch 1 month, 2 weeks ago
tools/testing/selftests/net/openvswitch/ovs-dpctl.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] print: fix spelling error in message
Posted by Madhur Kumar 1 month, 2 weeks ago
Signed-off-by: Madhur Kumar <madhurkumar004@gmail.com>
---
 tools/testing/selftests/net/openvswitch/ovs-dpctl.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
index 8a0396bfa..b521e0dea 100644
--- a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
+++ b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
@@ -1877,7 +1877,7 @@ class OvsPacket(GenericNetlinkSocket):
                     elif msg["cmd"] == OvsPacket.OVS_PACKET_CMD_EXECUTE:
                         up.execute(msg)
                     else:
-                        print("Unkonwn cmd: %d" % msg["cmd"])
+                        print("Unknown cmd: %d" % msg["cmd"])
             except NetlinkError as ne:
                 raise ne
 
-- 
2.50.1
Re: [PATCH] print: fix spelling error in message
Posted by Shuah Khan 1 month, 2 weeks ago
On 8/14/25 08:49, Madhur Kumar wrote:

Missing changelog - commit summary log is missing the subsystem
details - selftests/net: ------

> Signed-off-by: Madhur Kumar <madhurkumar004@gmail.com>
> ---
>   tools/testing/selftests/net/openvswitch/ovs-dpctl.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
> index 8a0396bfa..b521e0dea 100644
> --- a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
> +++ b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
> @@ -1877,7 +1877,7 @@ class OvsPacket(GenericNetlinkSocket):
>                       elif msg["cmd"] == OvsPacket.OVS_PACKET_CMD_EXECUTE:
>                           up.execute(msg)
>                       else:
> -                        print("Unkonwn cmd: %d" % msg["cmd"])
> +                        print("Unknown cmd: %d" % msg["cmd"])
>               except NetlinkError as ne:
>                   raise ne
>   

Look at the submitting patches documentation to learn how to write
commit summary, logs, and how to submit patches in general.

thanks,
-- Shuah