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]
Message-ID: <44EC0C6C.80502@s5r6.in-berlin.de>
Date:	Wed, 23 Aug 2006 10:06:04 +0200
From:	Stefan Richter <stefanr@...6.in-berlin.de>
To:	Adrian Bunk <bunk@...sta.de>
CC:	linux-kernel@...r.kernel.org
Subject: Re: Linux 2.6.16.28-rc2

Adrian Bunk wrote:
> There are still several patches pending - they will go into 2.6.16.29.
[...]
> Robert Hancock:
>       Fix broken suspend/resume in ohci1394
[...]

Alas this patch is a regression for PPC. Please apply patch "1394: fix
for recently added firewire patch that breaks things on ppc" by Danny
Tholen too. The latter patch is enqueued for 2.6.17.y and (so I hope)
for 2.6.18-rc which both contain Robert's patch. I attached Danny's
patch as I cannot safely send it inline right now.

_If_ you don't want to add Danny's patch until it actually appeared in
2.6.18-rc, please revert Robert's patch for the time being.

Thanks, and sorry for the mess.
-- 
Stefan Richter
-=====-=-==- =--- =-===
http://arcgraph.de/sr/

Subject: 1394: fix for recently added firewire patch that breaks things on ppc
From: Danny Tholen <obiwan@...lmij.org>

Recently a patch was added for preliminary suspend/resume handling on
!PPC_PMAC.  However, this broke both suspend and firewire on powerpc
because it saves the pci state after the device has already been disabled.

This moves the save state to before the pmac specific code.

Signed-off-by: Danny Tholen <obiwan@...lmij.org>
Acked-by: Benjamin Herrenschmidt <benh@...nel.crashing.org>
Signed-off-by: Andrew Morton <akpm@...l.org>
Signed-off-by: Stefan Richter <stefanr@...6.in-berlin.de>
---

 drivers/ieee1394/ohci1394.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -puN drivers/ieee1394/ohci1394.c~fix-for-recently-added-firewire-patch-that-breaks-things-on-ppc drivers/ieee1394/ohci1394.c
--- a/drivers/ieee1394/ohci1394.c~fix-for-recently-added-firewire-patch-that-breaks-things-on-ppc
+++ a/drivers/ieee1394/ohci1394.c
@@ -3552,6 +3552,8 @@ static int ohci1394_pci_resume (struct p
 
 static int ohci1394_pci_suspend (struct pci_dev *pdev, pm_message_t state)
 {
+	pci_save_state(pdev);
+
 #ifdef CONFIG_PPC_PMAC
 	if (machine_is(powermac)) {
 		struct device_node *of_node;
@@ -3563,8 +3565,6 @@ static int ohci1394_pci_suspend (struct 
 	}
 #endif
 
-	pci_save_state(pdev);
-
 	return 0;
 }
 
_


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ