* [PATCH] virtio_net: Fix a typo error in virtio_net
@ 2025-11-03 7:43 Chu Guangqing
2025-11-03 23:56 ` Jacob Keller
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Chu Guangqing @ 2025-11-03 7:43 UTC (permalink / raw)
To: mst, jasowang, xuanzhuo, eperezma, andrew+netdev, davem, edumazet,
kuba, pabeni
Cc: virtualization, netdev, linux-kernel, Chu Guangqing
Fix the spelling error of "separate".
Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
---
drivers/net/virtio_net.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 8e8a179aaa49..1e6f5e650f11 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -3760,7 +3760,7 @@ static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
* (2) no user configuration.
*
* During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
- * the device updates queue_pairs together with rss, so we can skip the sperate queue_pairs
+ * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
* update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
*/
if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
--
2.43.7
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] virtio_net: Fix a typo error in virtio_net
2025-11-03 7:43 [PATCH] virtio_net: Fix a typo error in virtio_net Chu Guangqing
@ 2025-11-03 23:56 ` Jacob Keller
2025-11-04 7:20 ` Michael S. Tsirkin
2025-11-05 1:10 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: Jacob Keller @ 2025-11-03 23:56 UTC (permalink / raw)
To: Chu Guangqing, mst, jasowang, xuanzhuo, eperezma, andrew+netdev,
davem, edumazet, kuba, pabeni
Cc: virtualization, netdev, linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 1062 bytes --]
On 11/2/2025 11:43 PM, Chu Guangqing wrote:
> Fix the spelling error of "separate".
>
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
> drivers/net/virtio_net.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> index 8e8a179aaa49..1e6f5e650f11 100644
> --- a/drivers/net/virtio_net.c
> +++ b/drivers/net/virtio_net.c
> @@ -3760,7 +3760,7 @@ static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
> * (2) no user configuration.
> *
> * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
> - * the device updates queue_pairs together with rss, so we can skip the sperate queue_pairs
> + * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
> * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
> */
> if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] virtio_net: Fix a typo error in virtio_net
2025-11-03 7:43 [PATCH] virtio_net: Fix a typo error in virtio_net Chu Guangqing
2025-11-03 23:56 ` Jacob Keller
@ 2025-11-04 7:20 ` Michael S. Tsirkin
2025-11-05 1:10 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: Michael S. Tsirkin @ 2025-11-04 7:20 UTC (permalink / raw)
To: Chu Guangqing
Cc: jasowang, xuanzhuo, eperezma, andrew+netdev, davem, edumazet,
kuba, pabeni, virtualization, netdev, linux-kernel
On Mon, Nov 03, 2025 at 03:43:05PM +0800, Chu Guangqing wrote:
> Fix the spelling error of "separate".
>
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---
Acked-by: Michael S. Tsirkin <mst@redhat.com>
> drivers/net/virtio_net.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> index 8e8a179aaa49..1e6f5e650f11 100644
> --- a/drivers/net/virtio_net.c
> +++ b/drivers/net/virtio_net.c
> @@ -3760,7 +3760,7 @@ static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
> * (2) no user configuration.
> *
> * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
> - * the device updates queue_pairs together with rss, so we can skip the sperate queue_pairs
> + * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
> * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
> */
> if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
> --
> 2.43.7
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] virtio_net: Fix a typo error in virtio_net
2025-11-03 7:43 [PATCH] virtio_net: Fix a typo error in virtio_net Chu Guangqing
2025-11-03 23:56 ` Jacob Keller
2025-11-04 7:20 ` Michael S. Tsirkin
@ 2025-11-05 1:10 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-11-05 1:10 UTC (permalink / raw)
To: Chu Guangqing
Cc: mst, jasowang, xuanzhuo, eperezma, andrew+netdev, davem, edumazet,
kuba, pabeni, virtualization, netdev, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 3 Nov 2025 15:43:05 +0800 you wrote:
> Fix the spelling error of "separate".
>
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---
> drivers/net/virtio_net.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- virtio_net: Fix a typo error in virtio_net
https://git.kernel.org/netdev/net-next/c/f4b2786fb14b
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] 6+ messages in thread
* [PATCH] virtio_net: Fix a typo error in virtio_net
@ 2025-11-03 6:36 Chu Guangqing
2025-11-03 23:45 ` Jacob Keller
0 siblings, 1 reply; 6+ messages in thread
From: Chu Guangqing @ 2025-11-03 6:36 UTC (permalink / raw)
To: mst; +Cc: xuanzhuo, eperezma, virtualization, netdev, linux-kernel,
Chu Guangqing
Fix the spelling error of "separate".
Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
---
drivers/net/virtio_net.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 8e8a179aaa49..1e6f5e650f11 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -3760,7 +3760,7 @@ static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
* (2) no user configuration.
*
* During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
- * the device updates queue_pairs together with rss, so we can skip the sperate queue_pairs
+ * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
* update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
*/
if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
--
2.43.7
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] virtio_net: Fix a typo error in virtio_net
2025-11-03 6:36 Chu Guangqing
@ 2025-11-03 23:45 ` Jacob Keller
0 siblings, 0 replies; 6+ messages in thread
From: Jacob Keller @ 2025-11-03 23:45 UTC (permalink / raw)
To: Chu Guangqing; +Cc: xuanzhuo, eperezma, virtualization, netdev, linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 1215 bytes --]
On 11/2/2025 10:36 PM, Chu Guangqing wrote:
> Fix the spelling error of "separate".
>
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
(As a note, several addresses on the to line were somehow
merged/combined so my email client marked them as invalid.. not sure
what happened there)
> drivers/net/virtio_net.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> index 8e8a179aaa49..1e6f5e650f11 100644
> --- a/drivers/net/virtio_net.c
> +++ b/drivers/net/virtio_net.c
> @@ -3760,7 +3760,7 @@ static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
> * (2) no user configuration.
> *
> * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
> - * the device updates queue_pairs together with rss, so we can skip the sperate queue_pairs
> + * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
> * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
> */
> if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-11-05 1:10 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-03 7:43 [PATCH] virtio_net: Fix a typo error in virtio_net Chu Guangqing
2025-11-03 23:56 ` Jacob Keller
2025-11-04 7:20 ` Michael S. Tsirkin
2025-11-05 1:10 ` patchwork-bot+netdevbpf
-- strict thread matches above, loose matches on Subject: below --
2025-11-03 6:36 Chu Guangqing
2025-11-03 23:45 ` Jacob Keller
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).