diff mbox series

[net-next,1/2] enic: Move RX coalescing set function

Message ID 20250107025135.15167-2-johndale@cisco.com (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series enic: Set link speed only after link up | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 1 this patch: 1
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 7 of 7 maintainers
netdev/build_clang success Errors and warnings before: 2 this patch: 2
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 11 this patch: 11
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 72 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest fail net-next-2025-01-07--06-00 (tests: 883)

Commit Message

John Daley Jan. 7, 2025, 2:51 a.m. UTC
Move the function used for setting the RX coalescing range to before
the function that checks the link status. It needs to be called from
there instead of from the probe function.

There is no functional change.

Co-developed-by: Nelson Escobar <neescoba@cisco.com>
Signed-off-by: Nelson Escobar <neescoba@cisco.com>
Co-developed-by: Satish Kharat <satishkh@cisco.com>
Signed-off-by: Satish Kharat <satishkh@cisco.com>
Signed-off-by: John Daley <johndale@cisco.com>
---
 drivers/net/ethernet/cisco/enic/enic_main.c | 60 ++++++++++-----------
 1 file changed, 30 insertions(+), 30 deletions(-)

Comments

Michal Swiatkowski Jan. 7, 2025, 5:51 a.m. UTC | #1
On Mon, Jan 06, 2025 at 06:51:34PM -0800, John Daley wrote:
> Move the function used for setting the RX coalescing range to before
> the function that checks the link status. It needs to be called from
> there instead of from the probe function.
> 
> There is no functional change.
> 
> Co-developed-by: Nelson Escobar <neescoba@cisco.com>
> Signed-off-by: Nelson Escobar <neescoba@cisco.com>
> Co-developed-by: Satish Kharat <satishkh@cisco.com>
> Signed-off-by: Satish Kharat <satishkh@cisco.com>
> Signed-off-by: John Daley <johndale@cisco.com>
> ---
>  drivers/net/ethernet/cisco/enic/enic_main.c | 60 ++++++++++-----------
>  1 file changed, 30 insertions(+), 30 deletions(-)
> 
> diff --git a/drivers/net/ethernet/cisco/enic/enic_main.c b/drivers/net/ethernet/cisco/enic/enic_main.c
> index 9913952ccb42..957efe73e41a 100644
> --- a/drivers/net/ethernet/cisco/enic/enic_main.c
> +++ b/drivers/net/ethernet/cisco/enic/enic_main.c
> @@ -428,6 +428,36 @@ static void enic_mtu_check(struct enic *enic)
>  	}
>  }
>  
> +static void enic_set_rx_coal_setting(struct enic *enic)
> +{
> +	unsigned int speed;
> +	int index = -1;
> +	struct enic_rx_coal *rx_coal = &enic->rx_coalesce_setting;
> +
> +	/* 1. Read the link speed from fw
> +	 * 2. Pick the default range for the speed
> +	 * 3. Update it in enic->rx_coalesce_setting
> +	 */
> +	speed = vnic_dev_port_speed(enic->vdev);
> +	if (speed > ENIC_LINK_SPEED_10G)
> +		index = ENIC_LINK_40G_INDEX;
> +	else if (speed > ENIC_LINK_SPEED_4G)
> +		index = ENIC_LINK_10G_INDEX;
> +	else
> +		index = ENIC_LINK_4G_INDEX;
> +
> +	rx_coal->small_pkt_range_start = mod_range[index].small_pkt_range_start;
> +	rx_coal->large_pkt_range_start = mod_range[index].large_pkt_range_start;
> +	rx_coal->range_end = ENIC_RX_COALESCE_RANGE_END;
> +
> +	/* Start with the value provided by UCSM */
> +	for (index = 0; index < enic->rq_count; index++)
> +		enic->cq[index].cur_rx_coal_timeval =
> +				enic->config.intr_timer_usec;
> +
> +	rx_coal->use_adaptive_rx_coalesce = 1;
> +}
> +
>  static void enic_link_check(struct enic *enic)
>  {
>  	int link_status = vnic_dev_link_status(enic->vdev);
> @@ -1901,36 +1931,6 @@ static void enic_synchronize_irqs(struct enic *enic)
>  	}
>  }
>  
> -static void enic_set_rx_coal_setting(struct enic *enic)
> -{
> -	unsigned int speed;
> -	int index = -1;
> -	struct enic_rx_coal *rx_coal = &enic->rx_coalesce_setting;
> -
> -	/* 1. Read the link speed from fw
> -	 * 2. Pick the default range for the speed
> -	 * 3. Update it in enic->rx_coalesce_setting
> -	 */
> -	speed = vnic_dev_port_speed(enic->vdev);
> -	if (ENIC_LINK_SPEED_10G < speed)
> -		index = ENIC_LINK_40G_INDEX;
> -	else if (ENIC_LINK_SPEED_4G < speed)
> -		index = ENIC_LINK_10G_INDEX;
> -	else
> -		index = ENIC_LINK_4G_INDEX;
> -
> -	rx_coal->small_pkt_range_start = mod_range[index].small_pkt_range_start;
> -	rx_coal->large_pkt_range_start = mod_range[index].large_pkt_range_start;
> -	rx_coal->range_end = ENIC_RX_COALESCE_RANGE_END;
> -
> -	/* Start with the value provided by UCSM */
> -	for (index = 0; index < enic->rq_count; index++)
> -		enic->cq[index].cur_rx_coal_timeval =
> -				enic->config.intr_timer_usec;
> -
> -	rx_coal->use_adaptive_rx_coalesce = 1;
> -}
> -
>  static int enic_dev_notify_set(struct enic *enic)
>  {
>  	int err;
> -- 
> 2.35.2

Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Andrew Lunn Jan. 7, 2025, 1:35 p.m. UTC | #2
On Mon, Jan 06, 2025 at 06:51:34PM -0800, John Daley wrote:
> Move the function used for setting the RX coalescing range to before
> the function that checks the link status. It needs to be called from
> there instead of from the probe function.
> 
> There is no functional change.
> 
> Co-developed-by: Nelson Escobar <neescoba@cisco.com>
> Signed-off-by: Nelson Escobar <neescoba@cisco.com>
> Co-developed-by: Satish Kharat <satishkh@cisco.com>
> Signed-off-by: Satish Kharat <satishkh@cisco.com>
> Signed-off-by: John Daley <johndale@cisco.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew
diff mbox series

Patch

diff --git a/drivers/net/ethernet/cisco/enic/enic_main.c b/drivers/net/ethernet/cisco/enic/enic_main.c
index 9913952ccb42..957efe73e41a 100644
--- a/drivers/net/ethernet/cisco/enic/enic_main.c
+++ b/drivers/net/ethernet/cisco/enic/enic_main.c
@@ -428,6 +428,36 @@  static void enic_mtu_check(struct enic *enic)
 	}
 }
 
+static void enic_set_rx_coal_setting(struct enic *enic)
+{
+	unsigned int speed;
+	int index = -1;
+	struct enic_rx_coal *rx_coal = &enic->rx_coalesce_setting;
+
+	/* 1. Read the link speed from fw
+	 * 2. Pick the default range for the speed
+	 * 3. Update it in enic->rx_coalesce_setting
+	 */
+	speed = vnic_dev_port_speed(enic->vdev);
+	if (speed > ENIC_LINK_SPEED_10G)
+		index = ENIC_LINK_40G_INDEX;
+	else if (speed > ENIC_LINK_SPEED_4G)
+		index = ENIC_LINK_10G_INDEX;
+	else
+		index = ENIC_LINK_4G_INDEX;
+
+	rx_coal->small_pkt_range_start = mod_range[index].small_pkt_range_start;
+	rx_coal->large_pkt_range_start = mod_range[index].large_pkt_range_start;
+	rx_coal->range_end = ENIC_RX_COALESCE_RANGE_END;
+
+	/* Start with the value provided by UCSM */
+	for (index = 0; index < enic->rq_count; index++)
+		enic->cq[index].cur_rx_coal_timeval =
+				enic->config.intr_timer_usec;
+
+	rx_coal->use_adaptive_rx_coalesce = 1;
+}
+
 static void enic_link_check(struct enic *enic)
 {
 	int link_status = vnic_dev_link_status(enic->vdev);
@@ -1901,36 +1931,6 @@  static void enic_synchronize_irqs(struct enic *enic)
 	}
 }
 
-static void enic_set_rx_coal_setting(struct enic *enic)
-{
-	unsigned int speed;
-	int index = -1;
-	struct enic_rx_coal *rx_coal = &enic->rx_coalesce_setting;
-
-	/* 1. Read the link speed from fw
-	 * 2. Pick the default range for the speed
-	 * 3. Update it in enic->rx_coalesce_setting
-	 */
-	speed = vnic_dev_port_speed(enic->vdev);
-	if (ENIC_LINK_SPEED_10G < speed)
-		index = ENIC_LINK_40G_INDEX;
-	else if (ENIC_LINK_SPEED_4G < speed)
-		index = ENIC_LINK_10G_INDEX;
-	else
-		index = ENIC_LINK_4G_INDEX;
-
-	rx_coal->small_pkt_range_start = mod_range[index].small_pkt_range_start;
-	rx_coal->large_pkt_range_start = mod_range[index].large_pkt_range_start;
-	rx_coal->range_end = ENIC_RX_COALESCE_RANGE_END;
-
-	/* Start with the value provided by UCSM */
-	for (index = 0; index < enic->rq_count; index++)
-		enic->cq[index].cur_rx_coal_timeval =
-				enic->config.intr_timer_usec;
-
-	rx_coal->use_adaptive_rx_coalesce = 1;
-}
-
 static int enic_dev_notify_set(struct enic *enic)
 {
 	int err;