DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration
@ 2021-04-28  8:42 Min Hu (Connor)
  2021-06-28  2:17 ` Min Hu (Connor)
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Min Hu (Connor) @ 2021-04-28  8:42 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

From: Huisong Li <lihuisong@huawei.com>

Currently, the pause command in ethtool to enable Rx/Tx pause has the
following problem. Namely, Assume that the device supports flow control
auto-negotiation to set pause parameters, which will the device that does
not support flow control auto-negotiation fails to run this command.

This patch supports the configuration of flow control auto-negotiation
and fixes the print format and style of the pause cmd to make it more
readable.

Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")

Signed-off-by: Huisong Li <lihuisong@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
---
 examples/ethtool/ethtool-app/ethapp.c | 59 +++++++++++++++++++++--------------
 1 file changed, 36 insertions(+), 23 deletions(-)

diff --git a/examples/ethtool/ethtool-app/ethapp.c b/examples/ethtool/ethtool-app/ethapp.c
index 36a1c37..057fa97 100644
--- a/examples/ethtool/ethtool-app/ethapp.c
+++ b/examples/ethtool/ethtool-app/ethapp.c
@@ -49,6 +49,13 @@ struct pcmd_intintint_params {
 	uint16_t rx;
 };
 
+struct pcmd_pause_params {
+	cmdline_fixed_string_t cmd;
+	uint16_t port;
+	cmdline_fixed_string_t mode;
+	cmdline_fixed_string_t autoneg;
+	cmdline_fixed_string_t an_status;
+};
 
 /* Parameter-less commands */
 cmdline_parse_token_string_t pcmd_quit_token_cmd =
@@ -116,12 +123,18 @@ cmdline_parse_token_num_t pcmd_intintint_token_rx =
 
 /* Pause commands */
 cmdline_parse_token_string_t pcmd_pause_token_cmd =
-	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params, cmd, "pause");
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params, cmd, "pause");
 cmdline_parse_token_num_t pcmd_pause_token_port =
-	TOKEN_NUM_INITIALIZER(struct pcmd_intstr_params, port, RTE_UINT16);
-cmdline_parse_token_string_t pcmd_pause_token_opt =
-	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params,
-		opt, "all#tx#rx#none");
+	TOKEN_NUM_INITIALIZER(struct pcmd_pause_params, port, RTE_UINT16);
+cmdline_parse_token_string_t pcmd_pause_token_mode =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		mode, "full#tx#rx#none");
+cmdline_parse_token_string_t pcmd_pause_token_autoneg =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		autoneg, "autoneg");
+cmdline_parse_token_string_t pcmd_pause_token_an_status =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		an_status, "on#off");
 
 /* VLAN commands */
 cmdline_parse_token_string_t pcmd_vlan_token_cmd =
@@ -348,13 +361,12 @@ pcmd_module_eeprom_callback(void *ptr_params,
 	fclose(fp_eeprom);
 }
 
-
 static void
 pcmd_pause_callback(void *ptr_params,
 	__rte_unused struct cmdline *ctx,
 	void *ptr_data)
 {
-	struct pcmd_intstr_params *params = ptr_params;
+	struct pcmd_pause_params *params = ptr_params;
 	struct ethtool_pauseparam info;
 	int stat;
 
@@ -366,39 +378,38 @@ pcmd_pause_callback(void *ptr_params,
 		stat = rte_ethtool_get_pauseparam(params->port, &info);
 	} else {
 		memset(&info, 0, sizeof(info));
-		if (strcasecmp("all", params->opt) == 0) {
+		if (strcasecmp("full", params->mode) == 0) {
 			info.tx_pause = 1;
 			info.rx_pause = 1;
-		} else if (strcasecmp("tx", params->opt) == 0) {
+		} else if (strcasecmp("tx", params->mode) == 0) {
 			info.tx_pause = 1;
 			info.rx_pause = 0;
-		} else if (strcasecmp("rx", params->opt) == 0) {
+		} else if (strcasecmp("rx", params->mode) == 0) {
 			info.tx_pause = 0;
 			info.rx_pause = 1;
 		} else {
 			info.tx_pause = 0;
 			info.rx_pause = 0;
 		}
-		/* Assume auto-negotiation wanted */
-		info.autoneg = 1;
+
+		if (strcasecmp("on", params->an_status) == 0)
+			info.autoneg = 1;
+		else
+			info.autoneg = 0;
+
 		stat = rte_ethtool_set_pauseparam(params->port, &info);
 	}
 	if (stat == 0) {
-		if (info.rx_pause && info.tx_pause)
-			printf("Port %i: Tx & Rx Paused\n", params->port);
-		else if (info.rx_pause)
-			printf("Port %i: Rx Paused\n", params->port);
-		else if (info.tx_pause)
-			printf("Port %i: Tx Paused\n", params->port);
-		else
-			printf("Port %i: Tx & Rx not paused\n", params->port);
+		printf("Pause parameters for Port %i:\n", params->port);
+		printf("Rx pause: %s\n", info.rx_pause ? "on" : "off");
+		printf("Tx pause: %s\n", info.tx_pause ? "on" : "off");
+		printf("Autoneg: %s\n", info.autoneg ? "on" : "off");
 	} else if (stat == -ENOTSUP)
 		printf("Port %i: Operation not supported\n", params->port);
 	else
 		printf("Port %i: Error %i\n", params->port, stat);
 }
 
-
 static void
 pcmd_open_callback(__rte_unused void *ptr_params,
 	__rte_unused struct cmdline *ctx,
@@ -741,11 +752,13 @@ cmdline_parse_inst_t pcmd_pause = {
 	.f = pcmd_pause_callback,
 	.data = NULL,
 	.help_str =
-		"pause <port_id> <all|tx|rx|none>\n     Pause/unpause port",
+		"pause <port_id> <full|tx|rx|none> autoneg <on|off>\n     Pause/unpause port",
 	.tokens = {
 		(void *)&pcmd_pause_token_cmd,
 		(void *)&pcmd_pause_token_port,
-		(void *)&pcmd_pause_token_opt,
+		(void *)&pcmd_pause_token_mode,
+		(void *)&pcmd_pause_token_autoneg,
+		(void *)&pcmd_pause_token_an_status,
 		NULL
 	},
 };
-- 
2.7.4


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

* Re: [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration
  2021-04-28  8:42 [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration Min Hu (Connor)
@ 2021-06-28  2:17 ` Min Hu (Connor)
  2021-07-17  2:15   ` Min Hu (Connor)
  2023-07-03 23:19 ` Stephen Hemminger
  2023-11-10  3:30 ` [PATCH v2] " Huisong Li
  2 siblings, 1 reply; 7+ messages in thread
From: Min Hu (Connor) @ 2021-06-28  2:17 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

Hi, all,
	any comments?

在 2021/4/28 16:42, Min Hu (Connor) 写道:
> From: Huisong Li <lihuisong@huawei.com>
> 
> Currently, the pause command in ethtool to enable Rx/Tx pause has the
> following problem. Namely, Assume that the device supports flow control
> auto-negotiation to set pause parameters, which will the device that does
> not support flow control auto-negotiation fails to run this command.
> 
> This patch supports the configuration of flow control auto-negotiation
> and fixes the print format and style of the pause cmd to make it more
> readable.
> 
> Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")
> 
> Signed-off-by: Huisong Li <lihuisong@huawei.com>
> Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
> ---
>   examples/ethtool/ethtool-app/ethapp.c | 59 +++++++++++++++++++++--------------
>   1 file changed, 36 insertions(+), 23 deletions(-)
> 
> diff --git a/examples/ethtool/ethtool-app/ethapp.c b/examples/ethtool/ethtool-app/ethapp.c
> index 36a1c37..057fa97 100644
> --- a/examples/ethtool/ethtool-app/ethapp.c
> +++ b/examples/ethtool/ethtool-app/ethapp.c
> @@ -49,6 +49,13 @@ struct pcmd_intintint_params {
>   	uint16_t rx;
>   };
>   
> +struct pcmd_pause_params {
> +	cmdline_fixed_string_t cmd;
> +	uint16_t port;
> +	cmdline_fixed_string_t mode;
> +	cmdline_fixed_string_t autoneg;
> +	cmdline_fixed_string_t an_status;
> +};
>   
>   /* Parameter-less commands */
>   cmdline_parse_token_string_t pcmd_quit_token_cmd =
> @@ -116,12 +123,18 @@ cmdline_parse_token_num_t pcmd_intintint_token_rx =
>   
>   /* Pause commands */
>   cmdline_parse_token_string_t pcmd_pause_token_cmd =
> -	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params, cmd, "pause");
> +	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params, cmd, "pause");
>   cmdline_parse_token_num_t pcmd_pause_token_port =
> -	TOKEN_NUM_INITIALIZER(struct pcmd_intstr_params, port, RTE_UINT16);
> -cmdline_parse_token_string_t pcmd_pause_token_opt =
> -	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params,
> -		opt, "all#tx#rx#none");
> +	TOKEN_NUM_INITIALIZER(struct pcmd_pause_params, port, RTE_UINT16);
> +cmdline_parse_token_string_t pcmd_pause_token_mode =
> +	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
> +		mode, "full#tx#rx#none");
> +cmdline_parse_token_string_t pcmd_pause_token_autoneg =
> +	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
> +		autoneg, "autoneg");
> +cmdline_parse_token_string_t pcmd_pause_token_an_status =
> +	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
> +		an_status, "on#off");
>   
>   /* VLAN commands */
>   cmdline_parse_token_string_t pcmd_vlan_token_cmd =
> @@ -348,13 +361,12 @@ pcmd_module_eeprom_callback(void *ptr_params,
>   	fclose(fp_eeprom);
>   }
>   
> -
>   static void
>   pcmd_pause_callback(void *ptr_params,
>   	__rte_unused struct cmdline *ctx,
>   	void *ptr_data)
>   {
> -	struct pcmd_intstr_params *params = ptr_params;
> +	struct pcmd_pause_params *params = ptr_params;
>   	struct ethtool_pauseparam info;
>   	int stat;
>   
> @@ -366,39 +378,38 @@ pcmd_pause_callback(void *ptr_params,
>   		stat = rte_ethtool_get_pauseparam(params->port, &info);
>   	} else {
>   		memset(&info, 0, sizeof(info));
> -		if (strcasecmp("all", params->opt) == 0) {
> +		if (strcasecmp("full", params->mode) == 0) {
>   			info.tx_pause = 1;
>   			info.rx_pause = 1;
> -		} else if (strcasecmp("tx", params->opt) == 0) {
> +		} else if (strcasecmp("tx", params->mode) == 0) {
>   			info.tx_pause = 1;
>   			info.rx_pause = 0;
> -		} else if (strcasecmp("rx", params->opt) == 0) {
> +		} else if (strcasecmp("rx", params->mode) == 0) {
>   			info.tx_pause = 0;
>   			info.rx_pause = 1;
>   		} else {
>   			info.tx_pause = 0;
>   			info.rx_pause = 0;
>   		}
> -		/* Assume auto-negotiation wanted */
> -		info.autoneg = 1;
> +
> +		if (strcasecmp("on", params->an_status) == 0)
> +			info.autoneg = 1;
> +		else
> +			info.autoneg = 0;
> +
>   		stat = rte_ethtool_set_pauseparam(params->port, &info);
>   	}
>   	if (stat == 0) {
> -		if (info.rx_pause && info.tx_pause)
> -			printf("Port %i: Tx & Rx Paused\n", params->port);
> -		else if (info.rx_pause)
> -			printf("Port %i: Rx Paused\n", params->port);
> -		else if (info.tx_pause)
> -			printf("Port %i: Tx Paused\n", params->port);
> -		else
> -			printf("Port %i: Tx & Rx not paused\n", params->port);
> +		printf("Pause parameters for Port %i:\n", params->port);
> +		printf("Rx pause: %s\n", info.rx_pause ? "on" : "off");
> +		printf("Tx pause: %s\n", info.tx_pause ? "on" : "off");
> +		printf("Autoneg: %s\n", info.autoneg ? "on" : "off");
>   	} else if (stat == -ENOTSUP)
>   		printf("Port %i: Operation not supported\n", params->port);
>   	else
>   		printf("Port %i: Error %i\n", params->port, stat);
>   }
>   
> -
>   static void
>   pcmd_open_callback(__rte_unused void *ptr_params,
>   	__rte_unused struct cmdline *ctx,
> @@ -741,11 +752,13 @@ cmdline_parse_inst_t pcmd_pause = {
>   	.f = pcmd_pause_callback,
>   	.data = NULL,
>   	.help_str =
> -		"pause <port_id> <all|tx|rx|none>\n     Pause/unpause port",
> +		"pause <port_id> <full|tx|rx|none> autoneg <on|off>\n     Pause/unpause port",
>   	.tokens = {
>   		(void *)&pcmd_pause_token_cmd,
>   		(void *)&pcmd_pause_token_port,
> -		(void *)&pcmd_pause_token_opt,
> +		(void *)&pcmd_pause_token_mode,
> +		(void *)&pcmd_pause_token_autoneg,
> +		(void *)&pcmd_pause_token_an_status,
>   		NULL
>   	},
>   };
> 

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

* Re: [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration
  2021-06-28  2:17 ` Min Hu (Connor)
@ 2021-07-17  2:15   ` Min Hu (Connor)
  2021-09-28  1:20     ` Min Hu (Connor)
  0 siblings, 1 reply; 7+ messages in thread
From: Min Hu (Connor) @ 2021-07-17  2:15 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit, Andrew Rybchenko

Hi, all,
	any comments?

在 2021/6/28 10:17, Min Hu (Connor) 写道:
> Hi, all,
>      any comments?
> 
> 在 2021/4/28 16:42, Min Hu (Connor) 写道:
>> From: Huisong Li <lihuisong@huawei.com>
>>
>> Currently, the pause command in ethtool to enable Rx/Tx pause has the
>> following problem. Namely, Assume that the device supports flow control
>> auto-negotiation to set pause parameters, which will the device that does
>> not support flow control auto-negotiation fails to run this command.
>>
>> This patch supports the configuration of flow control auto-negotiation
>> and fixes the print format and style of the pause cmd to make it more
>> readable.
>>
>> Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample 
>> application")
>>
>> Signed-off-by: Huisong Li <lihuisong@huawei.com>
>> Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
>> ---
>>   examples/ethtool/ethtool-app/ethapp.c | 59 
>> +++++++++++++++++++++--------------
>>   1 file changed, 36 insertions(+), 23 deletions(-)
>>
>> diff --git a/examples/ethtool/ethtool-app/ethapp.c 
>> b/examples/ethtool/ethtool-app/ethapp.c
>> index 36a1c37..057fa97 100644
>> --- a/examples/ethtool/ethtool-app/ethapp.c
>> +++ b/examples/ethtool/ethtool-app/ethapp.c
>> @@ -49,6 +49,13 @@ struct pcmd_intintint_params {
>>       uint16_t rx;
>>   };
>> +struct pcmd_pause_params {
>> +    cmdline_fixed_string_t cmd;
>> +    uint16_t port;
>> +    cmdline_fixed_string_t mode;
>> +    cmdline_fixed_string_t autoneg;
>> +    cmdline_fixed_string_t an_status;
>> +};
>>   /* Parameter-less commands */
>>   cmdline_parse_token_string_t pcmd_quit_token_cmd =
>> @@ -116,12 +123,18 @@ cmdline_parse_token_num_t pcmd_intintint_token_rx =
>>   /* Pause commands */
>>   cmdline_parse_token_string_t pcmd_pause_token_cmd =
>> -    TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params, cmd, "pause");
>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params, cmd, "pause");
>>   cmdline_parse_token_num_t pcmd_pause_token_port =
>> -    TOKEN_NUM_INITIALIZER(struct pcmd_intstr_params, port, RTE_UINT16);
>> -cmdline_parse_token_string_t pcmd_pause_token_opt =
>> -    TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params,
>> -        opt, "all#tx#rx#none");
>> +    TOKEN_NUM_INITIALIZER(struct pcmd_pause_params, port, RTE_UINT16);
>> +cmdline_parse_token_string_t pcmd_pause_token_mode =
>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>> +        mode, "full#tx#rx#none");
>> +cmdline_parse_token_string_t pcmd_pause_token_autoneg =
>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>> +        autoneg, "autoneg");
>> +cmdline_parse_token_string_t pcmd_pause_token_an_status =
>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>> +        an_status, "on#off");
>>   /* VLAN commands */
>>   cmdline_parse_token_string_t pcmd_vlan_token_cmd =
>> @@ -348,13 +361,12 @@ pcmd_module_eeprom_callback(void *ptr_params,
>>       fclose(fp_eeprom);
>>   }
>> -
>>   static void
>>   pcmd_pause_callback(void *ptr_params,
>>       __rte_unused struct cmdline *ctx,
>>       void *ptr_data)
>>   {
>> -    struct pcmd_intstr_params *params = ptr_params;
>> +    struct pcmd_pause_params *params = ptr_params;
>>       struct ethtool_pauseparam info;
>>       int stat;
>> @@ -366,39 +378,38 @@ pcmd_pause_callback(void *ptr_params,
>>           stat = rte_ethtool_get_pauseparam(params->port, &info);
>>       } else {
>>           memset(&info, 0, sizeof(info));
>> -        if (strcasecmp("all", params->opt) == 0) {
>> +        if (strcasecmp("full", params->mode) == 0) {
>>               info.tx_pause = 1;
>>               info.rx_pause = 1;
>> -        } else if (strcasecmp("tx", params->opt) == 0) {
>> +        } else if (strcasecmp("tx", params->mode) == 0) {
>>               info.tx_pause = 1;
>>               info.rx_pause = 0;
>> -        } else if (strcasecmp("rx", params->opt) == 0) {
>> +        } else if (strcasecmp("rx", params->mode) == 0) {
>>               info.tx_pause = 0;
>>               info.rx_pause = 1;
>>           } else {
>>               info.tx_pause = 0;
>>               info.rx_pause = 0;
>>           }
>> -        /* Assume auto-negotiation wanted */
>> -        info.autoneg = 1;
>> +
>> +        if (strcasecmp("on", params->an_status) == 0)
>> +            info.autoneg = 1;
>> +        else
>> +            info.autoneg = 0;
>> +
>>           stat = rte_ethtool_set_pauseparam(params->port, &info);
>>       }
>>       if (stat == 0) {
>> -        if (info.rx_pause && info.tx_pause)
>> -            printf("Port %i: Tx & Rx Paused\n", params->port);
>> -        else if (info.rx_pause)
>> -            printf("Port %i: Rx Paused\n", params->port);
>> -        else if (info.tx_pause)
>> -            printf("Port %i: Tx Paused\n", params->port);
>> -        else
>> -            printf("Port %i: Tx & Rx not paused\n", params->port);
>> +        printf("Pause parameters for Port %i:\n", params->port);
>> +        printf("Rx pause: %s\n", info.rx_pause ? "on" : "off");
>> +        printf("Tx pause: %s\n", info.tx_pause ? "on" : "off");
>> +        printf("Autoneg: %s\n", info.autoneg ? "on" : "off");
>>       } else if (stat == -ENOTSUP)
>>           printf("Port %i: Operation not supported\n", params->port);
>>       else
>>           printf("Port %i: Error %i\n", params->port, stat);
>>   }
>> -
>>   static void
>>   pcmd_open_callback(__rte_unused void *ptr_params,
>>       __rte_unused struct cmdline *ctx,
>> @@ -741,11 +752,13 @@ cmdline_parse_inst_t pcmd_pause = {
>>       .f = pcmd_pause_callback,
>>       .data = NULL,
>>       .help_str =
>> -        "pause <port_id> <all|tx|rx|none>\n     Pause/unpause port",
>> +        "pause <port_id> <full|tx|rx|none> autoneg <on|off>\n     
>> Pause/unpause port",
>>       .tokens = {
>>           (void *)&pcmd_pause_token_cmd,
>>           (void *)&pcmd_pause_token_port,
>> -        (void *)&pcmd_pause_token_opt,
>> +        (void *)&pcmd_pause_token_mode,
>> +        (void *)&pcmd_pause_token_autoneg,
>> +        (void *)&pcmd_pause_token_an_status,
>>           NULL
>>       },
>>   };
>>
> .

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

* Re: [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration
  2021-07-17  2:15   ` Min Hu (Connor)
@ 2021-09-28  1:20     ` Min Hu (Connor)
  0 siblings, 0 replies; 7+ messages in thread
From: Min Hu (Connor) @ 2021-09-28  1:20 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit, Andrew Rybchenko

Hi, Ferruh,
	any comments about this patch?

在 2021/7/17 10:15, Min Hu (Connor) 写道:
> Hi, all,
>      any comments?
> 
> 在 2021/6/28 10:17, Min Hu (Connor) 写道:
>> Hi, all,
>>      any comments?
>>
>> 在 2021/4/28 16:42, Min Hu (Connor) 写道:
>>> From: Huisong Li <lihuisong@huawei.com>
>>>
>>> Currently, the pause command in ethtool to enable Rx/Tx pause has the
>>> following problem. Namely, Assume that the device supports flow control
>>> auto-negotiation to set pause parameters, which will the device that 
>>> does
>>> not support flow control auto-negotiation fails to run this command.
>>>
>>> This patch supports the configuration of flow control auto-negotiation
>>> and fixes the print format and style of the pause cmd to make it more
>>> readable.
>>>
>>> Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample 
>>> application")
>>>
>>> Signed-off-by: Huisong Li <lihuisong@huawei.com>
>>> Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
>>> ---
>>>   examples/ethtool/ethtool-app/ethapp.c | 59 
>>> +++++++++++++++++++++--------------
>>>   1 file changed, 36 insertions(+), 23 deletions(-)
>>>
>>> diff --git a/examples/ethtool/ethtool-app/ethapp.c 
>>> b/examples/ethtool/ethtool-app/ethapp.c
>>> index 36a1c37..057fa97 100644
>>> --- a/examples/ethtool/ethtool-app/ethapp.c
>>> +++ b/examples/ethtool/ethtool-app/ethapp.c
>>> @@ -49,6 +49,13 @@ struct pcmd_intintint_params {
>>>       uint16_t rx;
>>>   };
>>> +struct pcmd_pause_params {
>>> +    cmdline_fixed_string_t cmd;
>>> +    uint16_t port;
>>> +    cmdline_fixed_string_t mode;
>>> +    cmdline_fixed_string_t autoneg;
>>> +    cmdline_fixed_string_t an_status;
>>> +};
>>>   /* Parameter-less commands */
>>>   cmdline_parse_token_string_t pcmd_quit_token_cmd =
>>> @@ -116,12 +123,18 @@ cmdline_parse_token_num_t 
>>> pcmd_intintint_token_rx =
>>>   /* Pause commands */
>>>   cmdline_parse_token_string_t pcmd_pause_token_cmd =
>>> -    TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params, cmd, "pause");
>>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params, cmd, "pause");
>>>   cmdline_parse_token_num_t pcmd_pause_token_port =
>>> -    TOKEN_NUM_INITIALIZER(struct pcmd_intstr_params, port, RTE_UINT16);
>>> -cmdline_parse_token_string_t pcmd_pause_token_opt =
>>> -    TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params,
>>> -        opt, "all#tx#rx#none");
>>> +    TOKEN_NUM_INITIALIZER(struct pcmd_pause_params, port, RTE_UINT16);
>>> +cmdline_parse_token_string_t pcmd_pause_token_mode =
>>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>>> +        mode, "full#tx#rx#none");
>>> +cmdline_parse_token_string_t pcmd_pause_token_autoneg =
>>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>>> +        autoneg, "autoneg");
>>> +cmdline_parse_token_string_t pcmd_pause_token_an_status =
>>> +    TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
>>> +        an_status, "on#off");
>>>   /* VLAN commands */
>>>   cmdline_parse_token_string_t pcmd_vlan_token_cmd =
>>> @@ -348,13 +361,12 @@ pcmd_module_eeprom_callback(void *ptr_params,
>>>       fclose(fp_eeprom);
>>>   }
>>> -
>>>   static void
>>>   pcmd_pause_callback(void *ptr_params,
>>>       __rte_unused struct cmdline *ctx,
>>>       void *ptr_data)
>>>   {
>>> -    struct pcmd_intstr_params *params = ptr_params;
>>> +    struct pcmd_pause_params *params = ptr_params;
>>>       struct ethtool_pauseparam info;
>>>       int stat;
>>> @@ -366,39 +378,38 @@ pcmd_pause_callback(void *ptr_params,
>>>           stat = rte_ethtool_get_pauseparam(params->port, &info);
>>>       } else {
>>>           memset(&info, 0, sizeof(info));
>>> -        if (strcasecmp("all", params->opt) == 0) {
>>> +        if (strcasecmp("full", params->mode) == 0) {
>>>               info.tx_pause = 1;
>>>               info.rx_pause = 1;
>>> -        } else if (strcasecmp("tx", params->opt) == 0) {
>>> +        } else if (strcasecmp("tx", params->mode) == 0) {
>>>               info.tx_pause = 1;
>>>               info.rx_pause = 0;
>>> -        } else if (strcasecmp("rx", params->opt) == 0) {
>>> +        } else if (strcasecmp("rx", params->mode) == 0) {
>>>               info.tx_pause = 0;
>>>               info.rx_pause = 1;
>>>           } else {
>>>               info.tx_pause = 0;
>>>               info.rx_pause = 0;
>>>           }
>>> -        /* Assume auto-negotiation wanted */
>>> -        info.autoneg = 1;
>>> +
>>> +        if (strcasecmp("on", params->an_status) == 0)
>>> +            info.autoneg = 1;
>>> +        else
>>> +            info.autoneg = 0;
>>> +
>>>           stat = rte_ethtool_set_pauseparam(params->port, &info);
>>>       }
>>>       if (stat == 0) {
>>> -        if (info.rx_pause && info.tx_pause)
>>> -            printf("Port %i: Tx & Rx Paused\n", params->port);
>>> -        else if (info.rx_pause)
>>> -            printf("Port %i: Rx Paused\n", params->port);
>>> -        else if (info.tx_pause)
>>> -            printf("Port %i: Tx Paused\n", params->port);
>>> -        else
>>> -            printf("Port %i: Tx & Rx not paused\n", params->port);
>>> +        printf("Pause parameters for Port %i:\n", params->port);
>>> +        printf("Rx pause: %s\n", info.rx_pause ? "on" : "off");
>>> +        printf("Tx pause: %s\n", info.tx_pause ? "on" : "off");
>>> +        printf("Autoneg: %s\n", info.autoneg ? "on" : "off");
>>>       } else if (stat == -ENOTSUP)
>>>           printf("Port %i: Operation not supported\n", params->port);
>>>       else
>>>           printf("Port %i: Error %i\n", params->port, stat);
>>>   }
>>> -
>>>   static void
>>>   pcmd_open_callback(__rte_unused void *ptr_params,
>>>       __rte_unused struct cmdline *ctx,
>>> @@ -741,11 +752,13 @@ cmdline_parse_inst_t pcmd_pause = {
>>>       .f = pcmd_pause_callback,
>>>       .data = NULL,
>>>       .help_str =
>>> -        "pause <port_id> <all|tx|rx|none>\n     Pause/unpause port",
>>> +        "pause <port_id> <full|tx|rx|none> autoneg <on|off>\n 
>>> Pause/unpause port",
>>>       .tokens = {
>>>           (void *)&pcmd_pause_token_cmd,
>>>           (void *)&pcmd_pause_token_port,
>>> -        (void *)&pcmd_pause_token_opt,
>>> +        (void *)&pcmd_pause_token_mode,
>>> +        (void *)&pcmd_pause_token_autoneg,
>>> +        (void *)&pcmd_pause_token_an_status,
>>>           NULL
>>>       },
>>>   };
>>>
>> .
> .

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

* Re: [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration
  2021-04-28  8:42 [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration Min Hu (Connor)
  2021-06-28  2:17 ` Min Hu (Connor)
@ 2023-07-03 23:19 ` Stephen Hemminger
  2023-11-10  3:30 ` [PATCH v2] " Huisong Li
  2 siblings, 0 replies; 7+ messages in thread
From: Stephen Hemminger @ 2023-07-03 23:19 UTC (permalink / raw)
  To: Min Hu (Connor); +Cc: dev, ferruh.yigit

On Wed, 28 Apr 2021 16:42:59 +0800
"Min Hu (Connor)" <humin29@huawei.com> wrote:

> From: Huisong Li <lihuisong@huawei.com>
> 
> Currently, the pause command in ethtool to enable Rx/Tx pause has the
> following problem. Namely, Assume that the device supports flow control
> auto-negotiation to set pause parameters, which will the device that does
> not support flow control auto-negotiation fails to run this command.
> 
> This patch supports the configuration of flow control auto-negotiation
> and fixes the print format and style of the pause cmd to make it more
> readable.
> 
> Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")
> 
> Signed-off-by: Huisong Li <lihuisong@huawei.com>
> Signed-off-by: Min Hu (Connor) <humin29@huawei.com>

Overall, this looks good.
DPDK is mainly used in devices 1G and above where I think that
auto negotiation is required by IEEE spec.

Acked-by: Stephen Hemminger <stephen@networkplumber.org>

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

* [PATCH v2] examples/ethtool: fix pause configuration
  2021-04-28  8:42 [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration Min Hu (Connor)
  2021-06-28  2:17 ` Min Hu (Connor)
  2023-07-03 23:19 ` Stephen Hemminger
@ 2023-11-10  3:30 ` Huisong Li
  2023-11-22 22:50   ` Thomas Monjalon
  2 siblings, 1 reply; 7+ messages in thread
From: Huisong Li @ 2023-11-10  3:30 UTC (permalink / raw)
  To: dev, Remy Horton; +Cc: thomas, ferruh.yigit, lihuisong, liudongdong3

Currently, the pause command in ethtool to enable Rx/Tx pause has the
following problem. Namely, Assume that the device supports flow control
auto-negotiation to set pause parameters, which will the device that does
not support flow control auto-negotiation fails to run this command.

This patch supports the configuration of flow control auto-negotiation
and fixes the print format and style of the pause cmd to make it more
readable.

Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")
Cc: stable@dpdk.org

Signed-off-by: Huisong Li <lihuisong@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
---
 -v2: add acked-by Stephen Hemminger <stephen@networkplumber.org>

---
 examples/ethtool/ethtool-app/ethapp.c | 59 ++++++++++++++++-----------
 1 file changed, 36 insertions(+), 23 deletions(-)

diff --git a/examples/ethtool/ethtool-app/ethapp.c b/examples/ethtool/ethtool-app/ethapp.c
index 4ea504ed6a..489cd4f515 100644
--- a/examples/ethtool/ethtool-app/ethapp.c
+++ b/examples/ethtool/ethtool-app/ethapp.c
@@ -51,6 +51,13 @@ struct pcmd_intintint_params {
 	uint16_t rx;
 };
 
+struct pcmd_pause_params {
+	cmdline_fixed_string_t cmd;
+	uint16_t port;
+	cmdline_fixed_string_t mode;
+	cmdline_fixed_string_t autoneg;
+	cmdline_fixed_string_t an_status;
+};
 
 /* Parameter-less commands */
 cmdline_parse_token_string_t pcmd_quit_token_cmd =
@@ -118,12 +125,18 @@ cmdline_parse_token_num_t pcmd_intintint_token_rx =
 
 /* Pause commands */
 cmdline_parse_token_string_t pcmd_pause_token_cmd =
-	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params, cmd, "pause");
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params, cmd, "pause");
 cmdline_parse_token_num_t pcmd_pause_token_port =
-	TOKEN_NUM_INITIALIZER(struct pcmd_intstr_params, port, RTE_UINT16);
-cmdline_parse_token_string_t pcmd_pause_token_opt =
-	TOKEN_STRING_INITIALIZER(struct pcmd_intstr_params,
-		opt, "all#tx#rx#none");
+	TOKEN_NUM_INITIALIZER(struct pcmd_pause_params, port, RTE_UINT16);
+cmdline_parse_token_string_t pcmd_pause_token_mode =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		mode, "full#tx#rx#none");
+cmdline_parse_token_string_t pcmd_pause_token_autoneg =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		autoneg, "autoneg");
+cmdline_parse_token_string_t pcmd_pause_token_an_status =
+	TOKEN_STRING_INITIALIZER(struct pcmd_pause_params,
+		an_status, "on#off");
 
 /* VLAN commands */
 cmdline_parse_token_string_t pcmd_vlan_token_cmd =
@@ -350,13 +363,12 @@ pcmd_module_eeprom_callback(void *ptr_params,
 	fclose(fp_eeprom);
 }
 
-
 static void
 pcmd_pause_callback(void *ptr_params,
 	__rte_unused struct cmdline *ctx,
 	void *ptr_data)
 {
-	struct pcmd_intstr_params *params = ptr_params;
+	struct pcmd_pause_params *params = ptr_params;
 	struct ethtool_pauseparam info;
 	int stat;
 
@@ -368,39 +380,38 @@ pcmd_pause_callback(void *ptr_params,
 		stat = rte_ethtool_get_pauseparam(params->port, &info);
 	} else {
 		memset(&info, 0, sizeof(info));
-		if (strcasecmp("all", params->opt) == 0) {
+		if (strcasecmp("full", params->mode) == 0) {
 			info.tx_pause = 1;
 			info.rx_pause = 1;
-		} else if (strcasecmp("tx", params->opt) == 0) {
+		} else if (strcasecmp("tx", params->mode) == 0) {
 			info.tx_pause = 1;
 			info.rx_pause = 0;
-		} else if (strcasecmp("rx", params->opt) == 0) {
+		} else if (strcasecmp("rx", params->mode) == 0) {
 			info.tx_pause = 0;
 			info.rx_pause = 1;
 		} else {
 			info.tx_pause = 0;
 			info.rx_pause = 0;
 		}
-		/* Assume auto-negotiation wanted */
-		info.autoneg = 1;
+
+		if (strcasecmp("on", params->an_status) == 0)
+			info.autoneg = 1;
+		else
+			info.autoneg = 0;
+
 		stat = rte_ethtool_set_pauseparam(params->port, &info);
 	}
 	if (stat == 0) {
-		if (info.rx_pause && info.tx_pause)
-			printf("Port %i: Tx & Rx Paused\n", params->port);
-		else if (info.rx_pause)
-			printf("Port %i: Rx Paused\n", params->port);
-		else if (info.tx_pause)
-			printf("Port %i: Tx Paused\n", params->port);
-		else
-			printf("Port %i: Tx & Rx not paused\n", params->port);
+		printf("Pause parameters for Port %i:\n", params->port);
+		printf("Rx pause: %s\n", info.rx_pause ? "on" : "off");
+		printf("Tx pause: %s\n", info.tx_pause ? "on" : "off");
+		printf("Autoneg: %s\n", info.autoneg ? "on" : "off");
 	} else if (stat == -ENOTSUP)
 		printf("Port %i: Operation not supported\n", params->port);
 	else
 		printf("Port %i: Error %i\n", params->port, stat);
 }
 
-
 static void
 pcmd_open_callback(__rte_unused void *ptr_params,
 	__rte_unused struct cmdline *ctx,
@@ -737,11 +748,13 @@ cmdline_parse_inst_t pcmd_pause = {
 	.f = pcmd_pause_callback,
 	.data = NULL,
 	.help_str =
-		"pause <port_id> <all|tx|rx|none>\n     Pause/unpause port",
+		"pause <port_id> <full|tx|rx|none> autoneg <on|off>\n     Pause/unpause port",
 	.tokens = {
 		(void *)&pcmd_pause_token_cmd,
 		(void *)&pcmd_pause_token_port,
-		(void *)&pcmd_pause_token_opt,
+		(void *)&pcmd_pause_token_mode,
+		(void *)&pcmd_pause_token_autoneg,
+		(void *)&pcmd_pause_token_an_status,
 		NULL
 	},
 };
-- 
2.33.0


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

* Re: [PATCH v2] examples/ethtool: fix pause configuration
  2023-11-10  3:30 ` [PATCH v2] " Huisong Li
@ 2023-11-22 22:50   ` Thomas Monjalon
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2023-11-22 22:50 UTC (permalink / raw)
  To: Huisong Li; +Cc: dev, Remy Horton, ferruh.yigit, lihuisong, liudongdong3

10/11/2023 04:30, Huisong Li:
> Currently, the pause command in ethtool to enable Rx/Tx pause has the
> following problem. Namely, Assume that the device supports flow control
> auto-negotiation to set pause parameters, which will the device that does
> not support flow control auto-negotiation fails to run this command.
> 
> This patch supports the configuration of flow control auto-negotiation
> and fixes the print format and style of the pause cmd to make it more
> readable.
> 
> Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Huisong Li <lihuisong@huawei.com>
> Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
> Acked-by: Stephen Hemminger <stephen@networkplumber.org>

Applied, thanks.




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

end of thread, other threads:[~2023-11-22 22:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-28  8:42 [dpdk-dev] [PATCH] examples/ethtool: fix pause configuration Min Hu (Connor)
2021-06-28  2:17 ` Min Hu (Connor)
2021-07-17  2:15   ` Min Hu (Connor)
2021-09-28  1:20     ` Min Hu (Connor)
2023-07-03 23:19 ` Stephen Hemminger
2023-11-10  3:30 ` [PATCH v2] " Huisong Li
2023-11-22 22:50   ` Thomas Monjalon

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).