From: Sergei Shtylyov <sshtylyov@mvista.com>
To: Aaron Lu <aaron.lu@intel.com>
Cc: Jeff Garzik <jgarzik@pobox.com>,
linux-ide@vger.kernel.org, linux-pm@vger.kernel.org,
linux-acpi@vger.kernel.org, Aaron Lu <aaron.lwe@gmail.com>,
Jeff Wu <jeff.wu@amd.com>, Tejun Heo <tj@kernel.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>
Subject: Re: [PATCH v2 2/2] libata: PM code cleanup for ata port
Date: Fri, 25 Jan 2013 15:33:36 +0400 [thread overview]
Message-ID: <51026D90.7040309@mvista.com> (raw)
In-Reply-To: <510226F9.5000709@intel.com>
Hello.
On 25-01-2013 10:32, Aaron Lu wrote:
> For system freeze, if the port is already runtime suspended, leave it
> alone and just return. The port will be resumed on thaw before it will
> be used.
> And since we will call get_noresume for every device during prepare
> phase, and the port is resumed during thaw phase, it can't be in runtime
> suspended state during the poweroff phase. So remove the
> runtime_suspended check in poweroff callback.
> And for all suspend(freeze/suspend/poweroff/etc.), there is no need to
> touch the device, so set no_autopsy and no_recovery for them all.
> Signed-off-by: Aaron Lu <aaron.lu@intel.com>
> ---
> drivers/ata/libata-core.c | 16 ++++------------
> 1 file changed, 4 insertions(+), 12 deletions(-)
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index 6a5ef86..439c608 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -5334,9 +5334,6 @@ static int ata_port_request_pm(struct ata_port *ap, pm_message_t mesg,
>
> static int __ata_port_suspend_common(struct ata_port *ap, pm_message_t mesg, int *async)
> {
> - unsigned int ehi_flags = ATA_EHI_QUIET;
> - int rc;
> -
> /*
> * On some hardware, device fails to respond after spun down
> * for suspend. As the device won't be used before being
> @@ -5345,11 +5342,9 @@ static int __ata_port_suspend_common(struct ata_port *ap, pm_message_t mesg, int
> *
> * http://thread.gmane.org/gmane.linux.ide/46764
> */
> - if (mesg.event & PM_EVENT_SUSPEND)
> - ehi_flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_NO_RECOVERY;
> -
> - rc = ata_port_request_pm(ap, mesg, 0, ehi_flags, async);
> - return rc;
> + unsigned int ehi_flags = ATA_EHI_QUIET | ATA_EHI_NO_AUTOPSY |
> + ATA_EHI_NO_RECOVERY;
Please keep the existing coding style and insert empty line after
declarations.
Wait, you don't need this variable at all...
> + return ata_port_request_pm(ap, mesg, 0, ehi_flags, async);
> }
MBR, Sergei
next prev parent reply other threads:[~2013-01-25 11:33 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-28 8:49 [PATCH] libata: pm: differentiate system and runtime pm for ata port Aaron Lu
2013-01-21 20:44 ` Jeff Garzik
2013-01-22 8:48 ` Aaron Lu
2013-01-25 6:29 ` [PATCH v2 1/2] " Aaron Lu
2013-01-25 6:32 ` [PATCH v2 2/2] libata: PM code cleanup " Aaron Lu
2013-01-25 11:33 ` Sergei Shtylyov [this message]
2013-01-25 12:29 ` Rafael J. Wysocki
2013-01-25 20:34 ` Jeff Garzik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51026D90.7040309@mvista.com \
--to=sshtylyov@mvista.com \
--cc=aaron.lu@intel.com \
--cc=aaron.lwe@gmail.com \
--cc=jeff.wu@amd.com \
--cc=jgarzik@pobox.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.