Comment 10 for bug 267339

Revision history for this message
Trampas (trampas) wrote :

I added the following to /usr/lib/pm-utils/sleep.d/10NetworkManager which seems to have fixed the issue

case "$1" in
 hibernate|suspend)
  suspend_nm
  ;;
 thaw|resume)
  rmmod ath_pci
  modprobe ath_pci
  resume_nm
  ;;
 *) exit $NA
  ;;
esac

It is a complete hack but at least it fixes the issue.

Trampas