diff mbox

[v3,5/5] PM / sleep: Asynchronous threads for suspend_late

Message ID 1392617954-5292-6-git-send-email-chuansheng.liu@intel.com (mailing list archive)
State Changes Requested, archived
Headers show

Commit Message

Chuansheng Liu Feb. 17, 2014, 6:19 a.m. UTC
In analogy with commits 5af84b82701a and 97df8c12995, using
asynchronous threads can improve the overall suspend_late
time significantly.

This patch is for suspend_late phase.

Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
---
 drivers/base/power/main.c | 66 ++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 54 insertions(+), 12 deletions(-)

Comments

Rafael J. Wysocki Feb. 17, 2014, 5:27 p.m. UTC | #1
On Monday, February 17, 2014 02:19:14 PM Chuansheng Liu wrote:
> In analogy with commits 5af84b82701a and 97df8c12995, using
> asynchronous threads can improve the overall suspend_late
> time significantly.
> 
> This patch is for suspend_late phase.
> 
> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> ---
>  drivers/base/power/main.c | 66 ++++++++++++++++++++++++++++++++++++++---------
>  1 file changed, 54 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c
> index 72b4c9c..c031050 100644
> --- a/drivers/base/power/main.c
> +++ b/drivers/base/power/main.c
> @@ -1127,16 +1127,26 @@ static int dpm_suspend_noirq(pm_message_t state)
>   *
>   * Runtime PM is disabled for @dev while this function is being executed.
>   */
> -static int device_suspend_late(struct device *dev, pm_message_t state)
> +static int __device_suspend_late(struct device *dev, pm_message_t state, bool async)
>  {
>  	pm_callback_t callback = NULL;
>  	char *info = NULL;
> -	int error;
> +	int error = 0;
> +
> +	dpm_wait_for_children(dev, async);
>  

Like in patch [4/5], all of the "goto Complete" statements can go before
the waiting.

>  	__pm_runtime_disable(dev, false);
>  
> +	if (async_error)
> +		goto Complete;
> +
> +	if (pm_wakeup_pending()) {
> +		async_error = -EBUSY;
> +		goto Complete;
> +	}
> +
>  	if (dev->power.syscore)
> -		return 0;
> +		goto Complete;
>  
>  	if (dev->pm_domain) {
>  		info = "late power domain ";
> @@ -1160,10 +1170,40 @@ static int device_suspend_late(struct device *dev, pm_message_t state)
>  	error = dpm_run_callback(callback, dev, state, info);
>  	if (!error)
>  		dev->power.is_late_suspended = true;
> +	else
> +		async_error = error;
>  
> +Complete:
> +	complete_all(&dev->power.completion);
>  	return error;
>  }
>  
> +static void async_suspend_late(void *data, async_cookie_t cookie)
> +{
> +	struct device *dev = (struct device *)data;
> +	int error;
> +
> +	error = __device_suspend_late(dev, pm_transition, true);
> +	if (error) {
> +		dpm_save_failed_dev(dev_name(dev));
> +		pm_dev_err(dev, pm_transition, " async", error);
> +	}
> +	put_device(dev);
> +}
> +
> +static int device_suspend_late(struct device *dev)
> +{
> +	reinit_completion(&dev->power.completion);
> +
> +	if (pm_async_enabled && dev->power.async_suspend) {
> +		get_device(dev);
> +		async_schedule(async_suspend_late, dev);
> +		return 0;
> +	}
> +
> +	return __device_suspend_late(dev, pm_transition, false);
> +}
> +
>  /**
>   * dpm_suspend_late - Execute "late suspend" callbacks for all devices.
>   * @state: PM transition of the system being carried out.
> @@ -1174,19 +1214,20 @@ static int dpm_suspend_late(pm_message_t state)
>  	int error = 0;
>  
>  	mutex_lock(&dpm_list_mtx);
> +	pm_transition = state;
> +	async_error = 0;
> +
>  	while (!list_empty(&dpm_suspended_list)) {
>  		struct device *dev = to_device(dpm_suspended_list.prev);
>  
>  		get_device(dev);
>  		mutex_unlock(&dpm_list_mtx);
>  
> -		error = device_suspend_late(dev, state);
> +		error = device_suspend_late(dev);
>  
>  		mutex_lock(&dpm_list_mtx);
>  		if (error) {
>  			pm_dev_err(dev, state, " late", error);
> -			suspend_stats.failed_suspend_late++;
> -			dpm_save_failed_step(SUSPEND_SUSPEND_LATE);
>  			dpm_save_failed_dev(dev_name(dev));
>  			put_device(dev);
>  			break;
> @@ -1195,17 +1236,18 @@ static int dpm_suspend_late(pm_message_t state)
>  			list_move(&dev->power.entry, &dpm_late_early_list);
>  		put_device(dev);
>  
> -		if (pm_wakeup_pending()) {
> -			error = -EBUSY;
> +		if (async_error)
>  			break;
> -		}
>  	}
>  	mutex_unlock(&dpm_list_mtx);
> -	if (error)
> +	async_synchronize_full();
> +	if (error) {
> +		suspend_stats.failed_suspend_late++;
> +		dpm_save_failed_step(SUSPEND_SUSPEND_LATE);
>  		dpm_resume_early(resume_event(state));
> -	else
> +	} else {
>  		dpm_show_time(starttime, state, "late");
> -
> +	}
>  	return error;
>  }
>  
>
Chuansheng Liu Feb. 18, 2014, 12:33 a.m. UTC | #2
Hello Rafael,

> -----Original Message-----

> From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]

> Sent: Tuesday, February 18, 2014 1:28 AM

> To: Liu, Chuansheng

> Cc: gregkh@linuxfoundation.org; Brown, Len; pavel@ucw.cz;

> linux-pm@vger.kernel.org; linux-kernel@vger.kernel.org; Li, Zhuangzhi

> Subject: Re: [PATCH v3 5/5] PM / sleep: Asynchronous threads for suspend_late

> 

> On Monday, February 17, 2014 02:19:14 PM Chuansheng Liu wrote:

> > In analogy with commits 5af84b82701a and 97df8c12995, using

> > asynchronous threads can improve the overall suspend_late

> > time significantly.

> >

> > This patch is for suspend_late phase.

> >

> > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>

> > ---

> >  drivers/base/power/main.c | 66

> ++++++++++++++++++++++++++++++++++++++---------

> >  1 file changed, 54 insertions(+), 12 deletions(-)

> >

> > diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c

> > index 72b4c9c..c031050 100644

> > --- a/drivers/base/power/main.c

> > +++ b/drivers/base/power/main.c

> > @@ -1127,16 +1127,26 @@ static int dpm_suspend_noirq(pm_message_t

> state)

> >   *

> >   * Runtime PM is disabled for @dev while this function is being executed.

> >   */

> > -static int device_suspend_late(struct device *dev, pm_message_t state)

> > +static int __device_suspend_late(struct device *dev, pm_message_t state,

> bool async)

> >  {

> >  	pm_callback_t callback = NULL;

> >  	char *info = NULL;

> > -	int error;

> > +	int error = 0;

> > +

> > +	dpm_wait_for_children(dev, async);

> >

> 

> Like in patch [4/5], all of the "goto Complete" statements can go before

> the waiting.

> 

You are right, will do that in patch V4, thanks your reviewing.
Rafael J. Wysocki Feb. 18, 2014, 3:29 p.m. UTC | #3
On Tuesday, February 18, 2014 12:33:11 AM Liu, Chuansheng wrote:
> Hello Rafael,
> 
> > -----Original Message-----
> > From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]
> > Sent: Tuesday, February 18, 2014 1:28 AM
> > To: Liu, Chuansheng
> > Cc: gregkh@linuxfoundation.org; Brown, Len; pavel@ucw.cz;
> > linux-pm@vger.kernel.org; linux-kernel@vger.kernel.org; Li, Zhuangzhi
> > Subject: Re: [PATCH v3 5/5] PM / sleep: Asynchronous threads for suspend_late
> > 
> > On Monday, February 17, 2014 02:19:14 PM Chuansheng Liu wrote:
> > > In analogy with commits 5af84b82701a and 97df8c12995, using
> > > asynchronous threads can improve the overall suspend_late
> > > time significantly.
> > >
> > > This patch is for suspend_late phase.
> > >
> > > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> > > ---
> > >  drivers/base/power/main.c | 66
> > ++++++++++++++++++++++++++++++++++++++---------
> > >  1 file changed, 54 insertions(+), 12 deletions(-)
> > >
> > > diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c
> > > index 72b4c9c..c031050 100644
> > > --- a/drivers/base/power/main.c
> > > +++ b/drivers/base/power/main.c
> > > @@ -1127,16 +1127,26 @@ static int dpm_suspend_noirq(pm_message_t
> > state)
> > >   *
> > >   * Runtime PM is disabled for @dev while this function is being executed.
> > >   */
> > > -static int device_suspend_late(struct device *dev, pm_message_t state)
> > > +static int __device_suspend_late(struct device *dev, pm_message_t state,
> > bool async)
> > >  {
> > >  	pm_callback_t callback = NULL;
> > >  	char *info = NULL;
> > > -	int error;
> > > +	int error = 0;
> > > +
> > > +	dpm_wait_for_children(dev, async);
> > >
> > 
> > Like in patch [4/5], all of the "goto Complete" statements can go before
> > the waiting.
> > 
> You are right, will do that in patch V4, thanks your reviewing.

I've queued up your last series:

http://marc.info/?l=linux-pm&m=139269109711745&w=4

for 3.15, but I've rebased it on some patches already in my queue, so please
double check the result in linux-pm.git/bleeding-edge.

Thanks!
Chuansheng Liu Feb. 19, 2014, 3:34 a.m. UTC | #4
Hello Rafael,

> -----Original Message-----

> From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]

> Sent: Tuesday, February 18, 2014 11:29 PM

> To: Liu, Chuansheng

> Cc: gregkh@linuxfoundation.org; Brown, Len; pavel@ucw.cz;

> linux-pm@vger.kernel.org; linux-kernel@vger.kernel.org; Li, Zhuangzhi

> Subject: Re: [PATCH v3 5/5] PM / sleep: Asynchronous threads for suspend_late

> 

> On Tuesday, February 18, 2014 12:33:11 AM Liu, Chuansheng wrote:

> > Hello Rafael,

> >

> > > -----Original Message-----

> > > From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]

> > > Sent: Tuesday, February 18, 2014 1:28 AM

> > > To: Liu, Chuansheng

> > > Cc: gregkh@linuxfoundation.org; Brown, Len; pavel@ucw.cz;

> > > linux-pm@vger.kernel.org; linux-kernel@vger.kernel.org; Li, Zhuangzhi

> > > Subject: Re: [PATCH v3 5/5] PM / sleep: Asynchronous threads for

> suspend_late

> > >

> > > On Monday, February 17, 2014 02:19:14 PM Chuansheng Liu wrote:

> > > > In analogy with commits 5af84b82701a and 97df8c12995, using

> > > > asynchronous threads can improve the overall suspend_late

> > > > time significantly.

> > > >

> > > > This patch is for suspend_late phase.

> > > >

> > > > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>

> > > > ---

> > > >  drivers/base/power/main.c | 66

> > > ++++++++++++++++++++++++++++++++++++++---------

> > > >  1 file changed, 54 insertions(+), 12 deletions(-)

> > > >

> > > > diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c

> > > > index 72b4c9c..c031050 100644

> > > > --- a/drivers/base/power/main.c

> > > > +++ b/drivers/base/power/main.c

> > > > @@ -1127,16 +1127,26 @@ static int

> dpm_suspend_noirq(pm_message_t

> > > state)

> > > >   *

> > > >   * Runtime PM is disabled for @dev while this function is being

> executed.

> > > >   */

> > > > -static int device_suspend_late(struct device *dev, pm_message_t state)

> > > > +static int __device_suspend_late(struct device *dev, pm_message_t

> state,

> > > bool async)

> > > >  {

> > > >  	pm_callback_t callback = NULL;

> > > >  	char *info = NULL;

> > > > -	int error;

> > > > +	int error = 0;

> > > > +

> > > > +	dpm_wait_for_children(dev, async);

> > > >

> > >

> > > Like in patch [4/5], all of the "goto Complete" statements can go before

> > > the waiting.

> > >

> > You are right, will do that in patch V4, thanks your reviewing.

> 

> I've queued up your last series:

> 

> http://marc.info/?l=linux-pm&m=139269109711745&w=4

> 

> for 3.15, but I've rebased it on some patches already in my queue, so please

> double check the result in linux-pm.git/bleeding-edge.

> 

Thanks. I have pulled the latest linux-pm.git/bleeding-edge branch, and checked
them which are OK.
diff mbox

Patch

diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c
index 72b4c9c..c031050 100644
--- a/drivers/base/power/main.c
+++ b/drivers/base/power/main.c
@@ -1127,16 +1127,26 @@  static int dpm_suspend_noirq(pm_message_t state)
  *
  * Runtime PM is disabled for @dev while this function is being executed.
  */
-static int device_suspend_late(struct device *dev, pm_message_t state)
+static int __device_suspend_late(struct device *dev, pm_message_t state, bool async)
 {
 	pm_callback_t callback = NULL;
 	char *info = NULL;
-	int error;
+	int error = 0;
+
+	dpm_wait_for_children(dev, async);
 
 	__pm_runtime_disable(dev, false);
 
+	if (async_error)
+		goto Complete;
+
+	if (pm_wakeup_pending()) {
+		async_error = -EBUSY;
+		goto Complete;
+	}
+
 	if (dev->power.syscore)
-		return 0;
+		goto Complete;
 
 	if (dev->pm_domain) {
 		info = "late power domain ";
@@ -1160,10 +1170,40 @@  static int device_suspend_late(struct device *dev, pm_message_t state)
 	error = dpm_run_callback(callback, dev, state, info);
 	if (!error)
 		dev->power.is_late_suspended = true;
+	else
+		async_error = error;
 
+Complete:
+	complete_all(&dev->power.completion);
 	return error;
 }
 
+static void async_suspend_late(void *data, async_cookie_t cookie)
+{
+	struct device *dev = (struct device *)data;
+	int error;
+
+	error = __device_suspend_late(dev, pm_transition, true);
+	if (error) {
+		dpm_save_failed_dev(dev_name(dev));
+		pm_dev_err(dev, pm_transition, " async", error);
+	}
+	put_device(dev);
+}
+
+static int device_suspend_late(struct device *dev)
+{
+	reinit_completion(&dev->power.completion);
+
+	if (pm_async_enabled && dev->power.async_suspend) {
+		get_device(dev);
+		async_schedule(async_suspend_late, dev);
+		return 0;
+	}
+
+	return __device_suspend_late(dev, pm_transition, false);
+}
+
 /**
  * dpm_suspend_late - Execute "late suspend" callbacks for all devices.
  * @state: PM transition of the system being carried out.
@@ -1174,19 +1214,20 @@  static int dpm_suspend_late(pm_message_t state)
 	int error = 0;
 
 	mutex_lock(&dpm_list_mtx);
+	pm_transition = state;
+	async_error = 0;
+
 	while (!list_empty(&dpm_suspended_list)) {
 		struct device *dev = to_device(dpm_suspended_list.prev);
 
 		get_device(dev);
 		mutex_unlock(&dpm_list_mtx);
 
-		error = device_suspend_late(dev, state);
+		error = device_suspend_late(dev);
 
 		mutex_lock(&dpm_list_mtx);
 		if (error) {
 			pm_dev_err(dev, state, " late", error);
-			suspend_stats.failed_suspend_late++;
-			dpm_save_failed_step(SUSPEND_SUSPEND_LATE);
 			dpm_save_failed_dev(dev_name(dev));
 			put_device(dev);
 			break;
@@ -1195,17 +1236,18 @@  static int dpm_suspend_late(pm_message_t state)
 			list_move(&dev->power.entry, &dpm_late_early_list);
 		put_device(dev);
 
-		if (pm_wakeup_pending()) {
-			error = -EBUSY;
+		if (async_error)
 			break;
-		}
 	}
 	mutex_unlock(&dpm_list_mtx);
-	if (error)
+	async_synchronize_full();
+	if (error) {
+		suspend_stats.failed_suspend_late++;
+		dpm_save_failed_step(SUSPEND_SUSPEND_LATE);
 		dpm_resume_early(resume_event(state));
-	else
+	} else {
 		dpm_show_time(starttime, state, "late");
-
+	}
 	return error;
 }