aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2011-10-28 08:13:28 -0400
committerChristoph Hellwig <hch@serles.lst.de>2011-11-02 07:53:43 -0400
commit6d6b77f163c7eabedbba00ed2abb7d4a570bff76 (patch)
tree6ce074a7dd5a25fae28ef9de6f59ddee08ea4e61 /fs/ext4
parentdd2a981f46a0903a8770a784f213d4d40bbb6f19 (diff)
filesystems: add missing nlink wrappers
Replace direct i_nlink updates with the respective updater function (inc_nlink, drop_nlink, clear_nlink, inode_dec_link_count). Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/ialloc.c2
-rw-r--r--fs/ext4/migrate.c2
-rw-r--r--fs/ext4/namei.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
index 9c63f273b550..ecc55bd2f997 100644
--- a/fs/ext4/ialloc.c
+++ b/fs/ext4/ialloc.c
@@ -1084,7 +1084,7 @@ fail_free_drop:
1084fail_drop: 1084fail_drop:
1085 dquot_drop(inode); 1085 dquot_drop(inode);
1086 inode->i_flags |= S_NOQUOTA; 1086 inode->i_flags |= S_NOQUOTA;
1087 inode->i_nlink = 0; 1087 clear_nlink(inode);
1088 unlock_new_inode(inode); 1088 unlock_new_inode(inode);
1089 iput(inode); 1089 iput(inode);
1090 brelse(inode_bitmap_bh); 1090 brelse(inode_bitmap_bh);
diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c
index b57b98fb44d1..667cc880bc0c 100644
--- a/fs/ext4/migrate.c
+++ b/fs/ext4/migrate.c
@@ -507,7 +507,7 @@ int ext4_ext_migrate(struct inode *inode)
507 * Set the i_nlink to zero so it will be deleted later 507 * Set the i_nlink to zero so it will be deleted later
508 * when we drop inode reference. 508 * when we drop inode reference.
509 */ 509 */
510 tmp_inode->i_nlink = 0; 510 clear_nlink(tmp_inode);
511 511
512 ext4_ext_tree_init(handle, tmp_inode); 512 ext4_ext_tree_init(handle, tmp_inode);
513 ext4_orphan_add(handle, tmp_inode); 513 ext4_orphan_add(handle, tmp_inode);
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 1c924faeb6c8..4623c082f3b2 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2539,7 +2539,7 @@ static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
2539 if (new_inode) { 2539 if (new_inode) {
2540 /* checked empty_dir above, can't have another parent, 2540 /* checked empty_dir above, can't have another parent,
2541 * ext4_dec_count() won't work for many-linked dirs */ 2541 * ext4_dec_count() won't work for many-linked dirs */
2542 new_inode->i_nlink = 0; 2542 clear_nlink(new_inode);
2543 } else { 2543 } else {
2544 ext4_inc_count(handle, new_dir); 2544 ext4_inc_count(handle, new_dir);
2545 ext4_update_dx_flag(new_dir); 2545 ext4_update_dx_flag(new_dir);