diff mbox series

[next] selftests/bpf: fix spelling mistake "tranmission" -> "transmission"

Message ID 20201214223539.83168-1-colin.king@canonical.com
State New
Headers show
Series [next] selftests/bpf: fix spelling mistake "tranmission" -> "transmission" | expand

Commit Message

Colin King Dec. 14, 2020, 10:35 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There are two spelling mistakes in output messages. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/testing/selftests/bpf/xdpxceiver.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Dec. 18, 2020, 3:20 p.m. UTC | #1
Hello:

This patch was applied to bpf/bpf.git (refs/heads/master):

On Mon, 14 Dec 2020 22:35:39 +0000 you wrote:
> From: Colin Ian King <colin.king@canonical.com>

> 

> There are two spelling mistakes in output messages. Fix these.

> 

> Signed-off-by: Colin Ian King <colin.king@canonical.com>

> ---

>  tools/testing/selftests/bpf/xdpxceiver.c | 4 ++--

>  1 file changed, 2 insertions(+), 2 deletions(-)


Here is the summary with links:
  - [next] selftests/bpf: fix spelling mistake "tranmission" -> "transmission"
    https://git.kernel.org/bpf/bpf/c/e79bb299ccad

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

Patch

diff --git a/tools/testing/selftests/bpf/xdpxceiver.c b/tools/testing/selftests/bpf/xdpxceiver.c
index 014dedaa4dd2..1e722ee76b1f 100644
--- a/tools/testing/selftests/bpf/xdpxceiver.c
+++ b/tools/testing/selftests/bpf/xdpxceiver.c
@@ -715,7 +715,7 @@  static void worker_pkt_dump(void)
 		int payload = *((uint32_t *)(pkt_buf[iter]->payload + PKT_HDR_SIZE));
 
 		if (payload == EOT) {
-			ksft_print_msg("End-of-tranmission frame received\n");
+			ksft_print_msg("End-of-transmission frame received\n");
 			fprintf(stdout, "---------------------------------------\n");
 			break;
 		}
@@ -747,7 +747,7 @@  static void worker_pkt_validate(void)
 			}
 
 			if (payloadseqnum == EOT) {
-				ksft_print_msg("End-of-tranmission frame received: PASS\n");
+				ksft_print_msg("End-of-transmission frame received: PASS\n");
 				sigvar = 1;
 				break;
 			}