From: Steven Whitehouse Date: Thu, 7 Jun 2007 10:29:35 +0000 (+0100) Subject: [GFS2] Fix typo in rename of directories X-Git-Tag: upstream/snapshot3+hdmi~33040^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ffed8ab342e39b8b5f4d5c94c37a708e225ffcd8;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [GFS2] Fix typo in rename of directories A typo caused us to pass a NULL pointer when renaming directories. It was accidentally introduced in: [GFS2] Clean up inode number handling Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 9cc07f4..84051b9 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c @@ -749,7 +749,7 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry, if (error) goto out_end_trans; - error = gfs2_dir_mvino(ip, &name, nip, DT_DIR); + error = gfs2_dir_mvino(ip, &name, ndip, DT_DIR); if (error) goto out_end_trans; } else {