Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1532823 > unrolled thread

[PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume

Started byGrygorii Strashko <grygorii.strashko@ti.com>
First post2016-11-29 23:30 +0100
Last post2016-11-30 21:00 +0100
Articles 4 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume Grygorii Strashko <grygorii.strashko@ti.com> - 2016-11-29 23:30 +0100
    Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning  during resume Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> - 2016-11-30 01:20 +0100
      Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during  resume Dave Gerlach <d-gerlach@ti.com> - 2016-11-30 17:10 +0100
    Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning  during resume David Miller <davem@davemloft.net> - 2016-11-30 21:00 +0100

#1532823 — [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume

FromGrygorii Strashko <grygorii.strashko@ti.com>
Date2016-11-29 23:30 +0100
Subject[PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume
Message-ID<sIZ4t-60M-19@gated-at.bofh.it>
netif_set_real_num_tx/rx_queues() are required to be called with rtnl_lock
taken, otherwise ASSERT_RTNL() warning will be triggered - which happens
now during System resume from suspend:
cpsw_resume()
|- cpsw_ndo_open()
  |- netif_set_real_num_tx/rx_queues()
     |- ASSERT_RTNL();

Hence, fix it by surrounding cpsw_ndo_open() by rtnl_lock/unlock() calls.

Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Fixes: commit e05107e6b747 ("net: ethernet: ti: cpsw: add multi queue support")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
---
 drivers/net/ethernet/ti/cpsw.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
index ae1ec6a..fd6c03b 100644
--- a/drivers/net/ethernet/ti/cpsw.c
+++ b/drivers/net/ethernet/ti/cpsw.c
@@ -2944,6 +2944,8 @@ static int cpsw_resume(struct device *dev)
 	/* Select default pin state */
 	pinctrl_pm_select_default_state(dev);
 
+	/* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
+	rtnl_lock();
 	if (cpsw->data.dual_emac) {
 		int i;
 
@@ -2955,6 +2957,8 @@ static int cpsw_resume(struct device *dev)
 		if (netif_running(ndev))
 			cpsw_ndo_open(ndev);
 	}
+	rtnl_unlock();
+
 	return 0;
 }
 #endif
-- 
2.10.1

[toc] | [next] | [standalone]


#1532863 — Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume

FromIvan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Date2016-11-30 01:20 +0100
SubjectRe: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume
Message-ID<sJ0MW-79y-21@gated-at.bofh.it>
In reply to#1532823
On Tue, Nov 29, 2016 at 04:27:03PM -0600, Grygorii Strashko wrote:
> netif_set_real_num_tx/rx_queues() are required to be called with rtnl_lock
> taken, otherwise ASSERT_RTNL() warning will be triggered - which happens
> now during System resume from suspend:
> cpsw_resume()
> |- cpsw_ndo_open()
>   |- netif_set_real_num_tx/rx_queues()
>      |- ASSERT_RTNL();
> 
> Hence, fix it by surrounding cpsw_ndo_open() by rtnl_lock/unlock() calls.
> 
> Cc: Dave Gerlach <d-gerlach@ti.com>
> Cc: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
> Fixes: commit e05107e6b747 ("net: ethernet: ti: cpsw: add multi queue support")
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Reviewed-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>

> ---
>  drivers/net/ethernet/ti/cpsw.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index ae1ec6a..fd6c03b 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2944,6 +2944,8 @@ static int cpsw_resume(struct device *dev)
>  	/* Select default pin state */
>  	pinctrl_pm_select_default_state(dev);
>  
> +	/* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
> +	rtnl_lock();
>  	if (cpsw->data.dual_emac) {
>  		int i;
>  
> @@ -2955,6 +2957,8 @@ static int cpsw_resume(struct device *dev)
>  		if (netif_running(ndev))
>  			cpsw_ndo_open(ndev);
>  	}
> +	rtnl_unlock();
> +
>  	return 0;
>  }
>  #endif
> -- 
> 2.10.1
> 

[toc] | [prev] | [next] | [standalone]


#1533403 — Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume

FromDave Gerlach <d-gerlach@ti.com>
Date2016-11-30 17:10 +0100
SubjectRe: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume
Message-ID<sJfCi-8ja-43@gated-at.bofh.it>
In reply to#1532863
On 11/29/2016 06:18 PM, Ivan Khoronzhuk wrote:
> On Tue, Nov 29, 2016 at 04:27:03PM -0600, Grygorii Strashko wrote:
>> netif_set_real_num_tx/rx_queues() are required to be called with rtnl_lock
>> taken, otherwise ASSERT_RTNL() warning will be triggered - which happens
>> now during System resume from suspend:
>> cpsw_resume()
>> |- cpsw_ndo_open()
>>   |- netif_set_real_num_tx/rx_queues()
>>      |- ASSERT_RTNL();
>>
>> Hence, fix it by surrounding cpsw_ndo_open() by rtnl_lock/unlock() calls.
>>
>> Cc: Dave Gerlach <d-gerlach@ti.com>
>> Cc: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
>> Fixes: commit e05107e6b747 ("net: ethernet: ti: cpsw: add multi queue support")
>> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> Reviewed-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
>

Tested-by: Dave Gerlach <d-gerlach@ti.com>

>> ---
>>  drivers/net/ethernet/ti/cpsw.c | 4 ++++
>>  1 file changed, 4 insertions(+)
>>
>> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
>> index ae1ec6a..fd6c03b 100644
>> --- a/drivers/net/ethernet/ti/cpsw.c
>> +++ b/drivers/net/ethernet/ti/cpsw.c
>> @@ -2944,6 +2944,8 @@ static int cpsw_resume(struct device *dev)
>>  	/* Select default pin state */
>>  	pinctrl_pm_select_default_state(dev);
>>
>> +	/* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
>> +	rtnl_lock();
>>  	if (cpsw->data.dual_emac) {
>>  		int i;
>>
>> @@ -2955,6 +2957,8 @@ static int cpsw_resume(struct device *dev)
>>  		if (netif_running(ndev))
>>  			cpsw_ndo_open(ndev);
>>  	}
>> +	rtnl_unlock();
>> +
>>  	return 0;
>>  }
>>  #endif
>> --
>> 2.10.1
>>

[toc] | [prev] | [next] | [standalone]


#1533536 — Re: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume

FromDavid Miller <davem@davemloft.net>
Date2016-11-30 21:00 +0100
SubjectRe: [PATCH] net: ethernet: ti: cpsw: fix ASSERT_RTNL() warning during resume
Message-ID<sJjcR-1U1-5@gated-at.bofh.it>
In reply to#1532823
From: Grygorii Strashko <grygorii.strashko@ti.com>
Date: Tue, 29 Nov 2016 16:27:03 -0600

> netif_set_real_num_tx/rx_queues() are required to be called with rtnl_lock
> taken, otherwise ASSERT_RTNL() warning will be triggered - which happens
> now during System resume from suspend:
> cpsw_resume()
> |- cpsw_ndo_open()
>   |- netif_set_real_num_tx/rx_queues()
>      |- ASSERT_RTNL();
> 
> Hence, fix it by surrounding cpsw_ndo_open() by rtnl_lock/unlock() calls.
> 
> Cc: Dave Gerlach <d-gerlach@ti.com>
> Cc: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
> Fixes: commit e05107e6b747 ("net: ethernet: ti: cpsw: add multi queue support")
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>

Applied.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web