From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Whitehouse Date: Tue, 13 Nov 2012 10:29:48 +0000 Subject: [Cluster-devel] [GFS2 PATCH] GFS2: Use dirty_inode in gfs2_dir_add In-Reply-To: <792825860.37166892.1352743494531.JavaMail.root@redhat.com> References: <792825860.37166892.1352743494531.JavaMail.root@redhat.com> Message-ID: <1352802588.2727.6.camel@menhir> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, Now in the -nmw git tree. Thanks, Steve. On Mon, 2012-11-12 at 13:04 -0500, Bob Peterson wrote: > Hi, > > This patch changes the gfs2_dir_add function so that it uses > the dirty_inode function (via mark_inode_dirty) rather than manually > updating the dinode. > > Regards, > > Bob Peterson > Red Hat File Systems > > Signed-off-by: Bob Peterson > --- > diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c > index 259b088..9a35670 100644 > --- a/fs/gfs2/dir.c > +++ b/fs/gfs2/dir.c > @@ -1676,16 +1676,11 @@ int gfs2_dir_add(struct inode *inode, const struct qstr *name, > be16_add_cpu(&leaf->lf_entries, 1); > } > brelse(bh); > - error = gfs2_meta_inode_buffer(ip, &bh); > - if (error) > - break; > - gfs2_trans_add_bh(ip->i_gl, bh, 1); > ip->i_entries++; > ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; > if (S_ISDIR(nip->i_inode.i_mode)) > inc_nlink(&ip->i_inode); > - gfs2_dinode_out(ip, bh->b_data); > - brelse(bh); > + mark_inode_dirty(inode); > error = 0; > break; > } >