BPF List
 help / color / mirror / Atom feed
* [PATCH] net, xdp: correct grammar
@ 2023-12-13  4:37 Randy Dunlap
  2023-12-13  8:39 ` Jesper Dangaard Brouer
  2023-12-14 15:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2023-12-13  4:37 UTC (permalink / raw)
  To: netdev
  Cc: Randy Dunlap, Alexei Starovoitov, Daniel Borkmann,
	David S . Miller, Jakub Kicinski, Jesper Dangaard Brouer,
	John Fastabend, bpf

Use the correct verb form in 2 places.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: David S. Miller <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Jesper Dangaard Brouer <hawk@kernel.org>
Cc: John Fastabend <john.fastabend@gmail.com>
Cc: bpf@vger.kernel.org
---
 include/net/xdp.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -- a/include/net/xdp.h b/include/net/xdp.h
--- a/include/net/xdp.h
+++ b/include/net/xdp.h
@@ -16,7 +16,7 @@
  *
  * The XDP RX-queue info (xdp_rxq_info) is associated with the driver
  * level RX-ring queues.  It is information that is specific to how
- * the driver have configured a given RX-ring queue.
+ * the driver has configured a given RX-ring queue.
  *
  * Each xdp_buff frame received in the driver carries a (pointer)
  * reference to this xdp_rxq_info structure.  This provides the XDP
@@ -32,7 +32,7 @@
  * The struct is not directly tied to the XDP prog.  A new XDP prog
  * can be attached as long as it doesn't change the underlying
  * RX-ring.  If the RX-ring does change significantly, the NIC driver
- * naturally need to stop the RX-ring before purging and reallocating
+ * naturally needs to stop the RX-ring before purging and reallocating
  * memory.  In that process the driver MUST call unregister (which
  * also applies for driver shutdown and unload).  The register API is
  * also mandatory during RX-ring setup.

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

* Re: [PATCH] net, xdp: correct grammar
  2023-12-13  4:37 [PATCH] net, xdp: correct grammar Randy Dunlap
@ 2023-12-13  8:39 ` Jesper Dangaard Brouer
  2023-12-14 15:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Jesper Dangaard Brouer @ 2023-12-13  8:39 UTC (permalink / raw)
  To: Randy Dunlap, netdev
  Cc: Alexei Starovoitov, Daniel Borkmann, David S . Miller,
	Jakub Kicinski, John Fastabend, bpf



On 13/12/2023 05.37, Randy Dunlap wrote:
> Use the correct verb form in 2 places.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Alexei Starovoitov <ast@kernel.org>
> Cc: Daniel Borkmann <daniel@iogearbox.net>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Jesper Dangaard Brouer <hawk@kernel.org>
> Cc: John Fastabend <john.fastabend@gmail.com>
> Cc: bpf@vger.kernel.org
> ---
>   include/net/xdp.h |    4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 

Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>

> diff -- a/include/net/xdp.h b/include/net/xdp.h
> --- a/include/net/xdp.h
> +++ b/include/net/xdp.h
> @@ -16,7 +16,7 @@
>    *
>    * The XDP RX-queue info (xdp_rxq_info) is associated with the driver
>    * level RX-ring queues.  It is information that is specific to how
> - * the driver have configured a given RX-ring queue.
> + * the driver has configured a given RX-ring queue.
>    *
>    * Each xdp_buff frame received in the driver carries a (pointer)
>    * reference to this xdp_rxq_info structure.  This provides the XDP
> @@ -32,7 +32,7 @@
>    * The struct is not directly tied to the XDP prog.  A new XDP prog
>    * can be attached as long as it doesn't change the underlying
>    * RX-ring.  If the RX-ring does change significantly, the NIC driver
> - * naturally need to stop the RX-ring before purging and reallocating
> + * naturally needs to stop the RX-ring before purging and reallocating
>    * memory.  In that process the driver MUST call unregister (which
>    * also applies for driver shutdown and unload).  The register API is
>    * also mandatory during RX-ring setup.

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

* Re: [PATCH] net, xdp: correct grammar
  2023-12-13  4:37 [PATCH] net, xdp: correct grammar Randy Dunlap
  2023-12-13  8:39 ` Jesper Dangaard Brouer
@ 2023-12-14 15:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-12-14 15:50 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: netdev, ast, daniel, davem, kuba, hawk, john.fastabend, bpf

Hello:

This patch was applied to bpf/bpf-next.git (master)
by Daniel Borkmann <daniel@iogearbox.net>:

On Tue, 12 Dec 2023 20:37:35 -0800 you wrote:
> Use the correct verb form in 2 places.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Alexei Starovoitov <ast@kernel.org>
> Cc: Daniel Borkmann <daniel@iogearbox.net>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Jesper Dangaard Brouer <hawk@kernel.org>
> Cc: John Fastabend <john.fastabend@gmail.com>
> Cc: bpf@vger.kernel.org
> 
> [...]

Here is the summary with links:
  - net, xdp: correct grammar
    https://git.kernel.org/bpf/bpf-next/c/04d25ccea2b3

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] 3+ messages in thread

end of thread, other threads:[~2023-12-14 15:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-13  4:37 [PATCH] net, xdp: correct grammar Randy Dunlap
2023-12-13  8:39 ` Jesper Dangaard Brouer
2023-12-14 15:50 ` 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