From: wcheng@sourceware.org <wcheng@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/gfs-kernel/src/gfs super.c
Date: 20 Sep 2006 04:45:49 -0000 [thread overview]
Message-ID: <20060920044549.10780.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL4
Changes by: wcheng at sourceware.org 2006-09-20 04:45:48
Modified files:
gfs-kernel/src/gfs: super.c
Log message:
Bugzilla 199984: This kmalloc to vmalloc change seems to cause panic in
x86_64 machine. Cause unknown but will reset back until
the problem is figured out.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/super.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.12.2.4&r2=1.12.2.5
--- cluster/gfs-kernel/src/gfs/super.c 2006/08/02 01:28:57 1.12.2.4
+++ cluster/gfs-kernel/src/gfs/super.c 2006/09/20 04:45:48 1.12.2.5
@@ -840,7 +840,7 @@
memset(sg, 0, sizeof(struct gfs_stat_gfs));
- gha = vmalloc(slots * sizeof(struct gfs_holder));
+ gha = kmalloc(slots * sizeof(struct gfs_holder), GFP_KERNEL);
if (!gha)
return -ENOMEM;
memset(gha, 0, slots * sizeof(struct gfs_holder));
@@ -884,7 +884,7 @@
yield();
}
- vfree(gha);
+ kfree(gha);
return error;
}
next reply other threads:[~2006-09-20 4:45 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-20 4:45 wcheng [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-02-06 22:08 [Cluster-devel] cluster/gfs-kernel/src/gfs super.c wcheng
2006-08-09 20:28 rpeterso
2006-08-02 1:37 wcheng
2006-08-02 1:28 wcheng
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=20060920044549.10780.qmail@sourceware.org \
--to=wcheng@sourceware.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).