lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 08 May 2012 15:25:30 +0200
From:	Takashi Iwai <tiwai@...e.de>
To:	Konstantin Khlebnikov <khlebnikov@...nvz.org>
Cc:	alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
	David Henningsson <david.henningsson@...onical.com>,
	Jaroslav Kysela <perex@...ex.cz>
Subject: Re: [PATCH bugfix v3.4] ALSA: hda - fix "silence after S3" regression

At Tue, 08 May 2012 17:08:10 +0400,
Konstantin Khlebnikov wrote:
> 
> This fixes regression in shd-hda-codec after 785f857d1cb0856b612b46a0545b74aa2
> ("ALSA: hda - Set codec to D3 forcibly even if not used")
> 
> hda_set_power_state() call must be explicitly protected against recursive
> snd_hda_power_up/down() calls, otherwise it accidentally switches device into
> D0 right before suspend. As result after resume sound device stays in D3 state
> and does not works because driver believes that the device is on already.
> 
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@...nvz.org>

Hrm, does this really fix your problem?  The path is called only
during the suspend.  Then, in the resume path, the codec is all
powered up anyway.

If the race between the leftover power-save work is really a culprit,
the fix would be just calling cancel_delayed_work_sync() before
that point...


thanks,

Takashi

> ---
>  sound/pci/hda/hda_codec.c |    6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
> index 7a8fcc4..a0ea9d6 100644
> --- a/sound/pci/hda/hda_codec.c
> +++ b/sound/pci/hda/hda_codec.c
> @@ -5444,10 +5444,14 @@ int snd_hda_suspend(struct hda_bus *bus)
>  	list_for_each_entry(codec, &bus->codec_list, list) {
>  		if (hda_codec_is_power_on(codec))
>  			hda_call_codec_suspend(codec);
> -		else /* forcibly change the power to D3 even if not used */
> +		else {
> +			/* forcibly change the power to D3 even if not used */
> +			codec->power_transition = 1;
>  			hda_set_power_state(codec,
>  					    codec->afg ? codec->afg : codec->mfg,
>  					    AC_PWRST_D3);
> +			codec->power_transition = 0;
> +		}
>  		if (codec->patch_ops.post_suspend)
>  			codec->patch_ops.post_suspend(codec);
>  	}
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ