Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46278
b: refs/heads/master
c: 5509826
h: refs/heads/master
v: v3
  • Loading branch information
S. Wendy Cheng authored and Steven Whitehouse committed Feb 5, 2007
1 parent 7c7d1d6 commit ccf5357
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e1d5b18ae92d0bbfe66dc2b4bab65006d32c5f7d
refs/heads/master: 5509826f1e548d14bb888c1cb6e3bbf23f855770
20 changes: 16 additions & 4 deletions trunk/fs/gfs2/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,16 +281,14 @@ int gfs2_dinode_dealloc(struct gfs2_inode *ip)
}

/**
* gfs2_change_nlink - Change nlink count on inode
* gfs2_change_nlink_i - Change nlink count on inode
* @ip: The GFS2 inode
* @diff: The change in the nlink count required
*
* Returns: errno
*/

int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
int gfs2_change_nlink_i(struct gfs2_inode *ip, int diff)
{
struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
struct buffer_head *dibh;
u32 nlink;
int error;
Expand Down Expand Up @@ -322,6 +320,20 @@ int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
brelse(dibh);
mark_inode_dirty(&ip->i_inode);

return error;
}

int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
{
struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
int error;

/* update the nlink */
error = gfs2_change_nlink_i(ip, diff);
if (error)
return error;

/* return meta data block back to rg */
if (ip->i_inode.i_nlink == 0) {
struct gfs2_rgrpd *rgd;
struct gfs2_holder ri_gh, rg_gh;
Expand Down
1 change: 1 addition & 0 deletions trunk/fs/gfs2/inode.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ int gfs2_inode_refresh(struct gfs2_inode *ip);

int gfs2_dinode_dealloc(struct gfs2_inode *inode);
int gfs2_change_nlink(struct gfs2_inode *ip, int diff);
int gfs2_change_nlink_i(struct gfs2_inode *ip, int diff);
struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
int is_root, struct nameidata *nd);
struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Expand Down
25 changes: 22 additions & 3 deletions trunk/fs/gfs2/ops_inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry,
int alloc_required;
unsigned int x;
int error;
struct gfs2_rgrpd *rgd;

if (ndentry->d_inode) {
nip = GFS2_I(ndentry->d_inode);
Expand Down Expand Up @@ -684,12 +685,12 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry,
error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
al->al_rgd->rd_ri.ri_length +
4 * RES_DINODE + 4 * RES_LEAF +
RES_STATFS + RES_QUOTA, 0);
RES_STATFS + RES_QUOTA + 1, 0);
if (error)
goto out_ipreserv;
} else {
error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
5 * RES_LEAF, 0);
5 * RES_LEAF + 1, 0);
if (error)
goto out_gunlock;
}
Expand All @@ -703,7 +704,25 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry,
error = gfs2_dir_del(ndip, &ndentry->d_name);
if (error)
goto out_end_trans;
error = gfs2_change_nlink(nip, -1);
error = gfs2_change_nlink_i(nip, -1);
if ((!error) && (nip->i_inode.i_nlink == 0)) {
error = -EIO;
rgd = gfs2_blk2rgrpd(sdp, nip->i_num.no_addr);
if (rgd) {
struct gfs2_holder nlink_rg_gh;
if (rgd != nip->i_alloc.al_rgd)
error = gfs2_glock_nq_init(
rgd->rd_gl, LM_ST_EXCLUSIVE,
0, &nlink_rg_gh);
else
error = 0;
if (!error) {
gfs2_unlink_di(&nip->i_inode);
if (rgd != nip->i_alloc.al_rgd)
gfs2_glock_dq_uninit(&nlink_rg_gh);
}
}
}
}
if (error)
goto out_end_trans;
Expand Down

0 comments on commit ccf5357

Please sign in to comment.