[PATCH] veth: Fix a typo error in veth

Chu Guangqing posted 1 patch 3 months, 1 week ago
drivers/net/veth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] veth: Fix a typo error in veth
Posted by Chu Guangqing 3 months, 1 week ago
Fix a spellling error for resources

Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
---
 drivers/net/veth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/veth.c b/drivers/net/veth.c
index a3046142cb8e..87a63c4bee77 100644
--- a/drivers/net/veth.c
+++ b/drivers/net/veth.c
@@ -1323,7 +1323,7 @@ static int veth_set_channels(struct net_device *dev,
 		if (peer)
 			netif_carrier_off(peer);
 
-		/* try to allocate new resurces, as needed*/
+		/* try to allocate new resources, as needed*/
 		err = veth_enable_range_safe(dev, old_rx_count, new_rx_count);
 		if (err)
 			goto out;
-- 
2.43.7
Re: [PATCH] veth: Fix a typo error in veth
Posted by Jacob Keller 3 months ago

On 11/2/2025 9:53 PM, Chu Guangqing wrote:
> Fix a spellling error for resources
> 
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>

Typically the tags should include the target tree. Since this doesn't
impact the functionality, net-next makes the most sense to me.

Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>

> ---
>  drivers/net/veth.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/veth.c b/drivers/net/veth.c
> index a3046142cb8e..87a63c4bee77 100644
> --- a/drivers/net/veth.c
> +++ b/drivers/net/veth.c
> @@ -1323,7 +1323,7 @@ static int veth_set_channels(struct net_device *dev,
>  		if (peer)
>  			netif_carrier_off(peer);
>  
> -		/* try to allocate new resurces, as needed*/
> +		/* try to allocate new resources, as needed*/
>  		err = veth_enable_range_safe(dev, old_rx_count, new_rx_count);
>  		if (err)
>  			goto out;