From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Arkadiusz Miskiewicz <arekm@maven.pl>
Cc: linux-kernel@vger.kernel.org, "S.Çağlar Onur" <caglar@pardus.org.tr>
Subject: Re: cat /dev/snapshot == OOPs
Date: Sun, 10 Jun 2007 19:33:53 +0200 [thread overview]
Message-ID: <200706101933.53647.rjw@sisk.pl> (raw)
In-Reply-To: <200706101542.33951.arekm@maven.pl>
On Sunday, 10 June 2007 15:42, Arkadiusz Miskiewicz wrote:
> Hello,
>
> Is this desired behaviour?
Obviously not.
> $ sudo cat /dev/snapshot
>
> ended with:
>
> [54498.464550] device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised:
> dm-devel@redhat.com
> [56592.077674] swsusp: Basic memory bitmaps created
> [56592.084340] BUG: unable to handle kernel NULL pointer dereference at
> virtual address 0000000c
Can you please try the appended patch?
Rafael
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
kernel/power/user.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: linux-2.6.22-rc4/kernel/power/user.c
===================================================================
--- linux-2.6.22-rc4.orig/kernel/power/user.c 2007-06-10 19:33:36.000000000 +0200
+++ linux-2.6.22-rc4/kernel/power/user.c 2007-06-10 19:35:59.000000000 +0200
@@ -99,6 +99,8 @@ static ssize_t snapshot_read(struct file
ssize_t res;
data = filp->private_data;
+ if (!data->ready)
+ return -ENODATA;
res = snapshot_read_next(&data->handle, count);
if (res > 0) {
if (copy_to_user(buf, data_of(data->handle), res))
@@ -163,7 +165,7 @@ static int snapshot_ioctl(struct inode *
break;
case SNAPSHOT_UNFREEZE:
- if (!data->frozen)
+ if (!data->frozen || data->ready)
break;
mutex_lock(&pm_mutex);
thaw_processes();
next prev parent reply other threads:[~2007-06-10 17:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-10 13:42 cat /dev/snapshot == OOPs Arkadiusz Miskiewicz
2007-06-10 14:00 ` S.Çağlar Onur
2007-06-10 15:51 ` Björn Steinbrink
2007-06-10 17:33 ` Rafael J. Wysocki [this message]
2007-06-10 18:31 ` Arkadiusz Miskiewicz
2007-06-10 19:27 ` S.Çağlar Onur
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=200706101933.53647.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=arekm@maven.pl \
--cc=caglar@pardus.org.tr \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.