Bugzilla – Bug 445453
after kernel update to 2.6.25.18-0.2-default, resume is broken on lenovo x61s
Last modified: 2008-11-16 12:13:14 UTC
After kernel update to 2.6.25.18-0.2-default, resume is broken. It looks like it's stuck during kernel resuming as the disk and keyboard come online but I can't hear the clicking sound from sound reinitialization. Unloding ehci_hcd before suspending and re-loading it after ehci_hcd after resuming fixes the problem, so most likely something went wrong in USB land. For now, the following script works around the problem. # cat /etc/pm/sleep.d/99ehci-hcd #!/bin/bash case "$1" in hibernate|suspend) rmmod ehci_hcd ;; thaw|resume) modprobe ehci_hcd ;; esac
Created attachment 252482 [details] lspci.out
Created attachment 252483 [details] lsusb.out
Created attachment 252484 [details] boot.msg
cc'ing Olver and Rafael. Regression at this stage via kernel update is ugly. Can you guys please take a look? Thanks.
cc'ing Pavel too.
This is a regression in -stable, commit ffa4da2a25bb4ac08f710ac99827baf48a8f8d57 "clockevents: prevent multiple init/shutdown" from Thomas Gleixner. *** This bug has been marked as a duplicate of bug 439461 ***