From mboxrd@z Thu Jan 1 00:00:00 1970 From: wcheng@sourceware.org Date: 13 Feb 2007 05:41:00 -0000 Subject: [Cluster-devel] cluster/gfs-kernel/src/gfs ops_export.c Message-ID: <20070213054100.26292.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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;