From: Pavel Machek <pavel@ucw.cz>
To: kernel list <linux-kernel@vger.kernel.org>, patrizio.bassi@gmail.com
Cc: shaohua.li@intel.com
Subject: Re: 2.6.14-git4 suspend fails: kernel NULL pointer dereference
Date: Mon, 7 Nov 2005 17:47:15 +0100 [thread overview]
Message-ID: <20051107164715.GA1534@elf.ucw.cz> (raw)
In-Reply-To: <20051006072749.GA2393@spitz.ucw.cz>
Hi!
> echo shutdown > /sys/power/disk
> echo disk > /sys/power/state
>
> Unable to handle kernel NULL pointer dereference at virtual address 00000004
> printing eip:
> EIP: 0060:[<c0132a5e>] Not tainted VLI
> EFLAGS: 00010286 (2.6.14-git4)
> EIP is at enter_state+0xe/0x90
It works for me, with pretty recent tree. But I see a potential
problem there, you are not using ACPI, right?
I think it is caused by this commit:
commit eb9289eb20df6b54214c45ac7c6bf5179a149026
tree dac51cecdd94e0c7273c990259ddd800057311b9
parent 0245b3e787dc3267a915e1f56419e7e9c197e148
author Shaohua Li <shaohua.li@intel.com> Sun, 30 Oct 2005 15:00:01
-0800
committer Linus Torvalds <torvalds@g5.osdl.org> Sun, 30 Oct 2005
17:37:15 -0800
[PATCH] introduce .valid callback for pm_ops
Add pm_ops.valid callback, so only the available pm states show in
/sys/power/state. And this also makes an earlier states error
report at
enter_state before we do actual suspend/resume.
Try this patch.
Pavel
diff --git a/kernel/power/main.c b/kernel/power/main.c
--- a/kernel/power/main.c
+++ b/kernel/power/main.c
@@ -167,7 +167,7 @@ static int enter_state(suspend_state_t s
{
int error;
- if (pm_ops->valid && !pm_ops->valid(state))
+ if (pm_ops && pm_ops->valid && !pm_ops->valid(state))
return -ENODEV;
if (down_trylock(&pm_sem))
return -EBUSY;
--
Thanks, Sharp!
next parent reply other threads:[~2005-11-07 17:10 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20051006072749.GA2393@spitz.ucw.cz>
2005-11-07 16:47 ` Pavel Machek [this message]
2005-11-07 18:04 ` Patrizio Bassi
2005-11-07 18:07 ` Pavel Machek
2005-11-08 7:50 ` Patrizio Bassi
2005-11-08 1:02 ` Shaohua Li
2005-11-08 7:52 ` Patrizio Bassi
2005-11-08 9:12 ` Pavel Machek
2005-11-08 15:19 ` Patrizio
2005-11-08 21:48 ` Pavel Machek
2005-11-09 15:48 ` Patrizio Bassi
2005-11-03 9:09 Patrizio Bassi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20051107164715.GA1534@elf.ucw.cz \
--to=pavel@ucw.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=patrizio.bassi@gmail.com \
--cc=shaohua.li@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome