|
Bugzilla – Full Text Bug Listing |
| Summary: | after kernel update to 2.6.25.18-0.2-default, resume is broken on lenovo x61s | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.0 | Reporter: | Tejun Heo <teheo> |
| Component: | Kernel | Assignee: | E-mail List <bnc-team-screening> |
| Status: | RESOLVED DUPLICATE | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | ||
| Version: | Final | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: |
lspci.out
lsusb.out boot.msg |
||
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 *** |
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