From: wcheng@sourceware.org <wcheng@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/gfs-kernel/src/gfs ops_export.c
Date: 13 Feb 2007 05:41:00 -0000 [thread overview]
Message-ID: <20070213054100.26292.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL4
Changes by: wcheng at sourceware.org 2007-02-13 05:40:59
Modified files:
gfs-kernel/src/gfs: ops_export.c
Log message:
Bugzilla 190475: accidentally passed address of a pointer, instead of pointer,
into gfs_inode_get() in previous checked in. This will make
gfs_inode_get() oops.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs-kernel/src/gfs/ops_export.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.3.2.3&r2=1.3.2.4
--- cluster/gfs-kernel/src/gfs/ops_export.c 2007/01/16 20:39:03 1.3.2.3
+++ cluster/gfs-kernel/src/gfs/ops_export.c 2007/02/13 05:40:59 1.3.2.4
@@ -359,7 +359,7 @@
gfs_glock_dq_uninit(&rgd_gh);
gfs_glock_dq_uninit(&ri_gh);
- error = gfs_inode_get(i_gh.gh_gl, &inum, CREATE, &ip);
+ error = gfs_inode_get(i_gh.gh_gl, inum, CREATE, &ip);
if (error)
goto fail;
next reply other threads:[~2007-02-13 5:41 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-13 5:41 wcheng [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-02-20 21:50 [Cluster-devel] cluster/gfs-kernel/src/gfs ops_export.c fabbione
2008-01-02 15:07 wcheng
2007-05-08 18:11 wcheng
2007-05-08 18:07 wcheng
2007-01-24 16:26 rpeterso
2007-01-24 14:46 rpeterso
2007-01-24 14:44 rpeterso
2007-01-11 18:52 rpeterso
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=20070213054100.26292.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).