On Wed, Oct 31, 2007 at 05:19:48PM +0100, Danny Kukawka wrote:
> On Freitag, 3. August 2007, Serhiy Kuznyetsov wrote:
> > Hi!
> >
> > I'm new to this list. My name Serhiy Kuznyetsov, I'm from Ukraine.
> >
> > I'm using Mandriva Linux 2007.1 Spring which comes with KPowersave 0.7.2
> > (unstable).
> > It works very good with suspend to disk, but I have a problem with suspend
> > to RAM. Everything works well and the only bug is that fan doesn't stop
> > after resume. I've tried different Shemas: Acustic, Powersave, but it
> > doesn't help. Only when I restart the computer or do suspend to disk the
> > fan comes in usual condition, working only when CPU is used much.
> >
> > The same with KLaptop, which comes with KDE.
> >
> > If somebody can help with it I will be very thankful.
> 
> I would tip on a kernel problem. If Stefan has no idea about the suspend 
> problem, you should report this to your distribution or/and to the 
> suspend/kernel mailinglist.

No, i have no idea, it really sounds like a kernel problem.
There are workarounds for fan problems in pm-utils, but i'm not sure if they
are already upstream or only in our package. They look like:

-----
#!/bin/bash
kick-fan()
{
        local FAN DUMMY STATE
        for FAN in /proc/acpi/fan/*/state; do
                [ ! -e $FAN ] && continue
                read DUMMY STATE < $FAN
                if [ "$STATE" = "on" ]; then
                        echo "kicking $FAN"
                        echo -n 3 > $FAN
                        echo -n 0 > $FAN
                fi
        done
}

case $1 in
        thaw|resume)
                kick-fan
                ;;
esac
------

But even if this helps, it is still a kernel problem and should be
reported on acpi-devel.
-- 
Stefan Seyfried
QA / R&D Team Mobile Devices        |              "Any ideas, John?"
SUSE LINUX Products GmbH, Nürnberg  | "Well, surrounding them's out." 

This footer brought to you by insane German lawmakers:
SUSE Linux Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg)
_______________________________________________
powersave-users mailing list
[email protected]
http://forge.novell.com/mailman/listinfo/powersave-users

Reply via email to