diff options
-rw-r--r-- | fs/jfs/namei.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 1abe7343f920..4abbe8604302 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
@@ -827,6 +827,7 @@ static int jfs_link(struct dentry *old_dentry, | |||
827 | /* update object inode */ | 827 | /* update object inode */ |
828 | ip->i_nlink++; /* for new link */ | 828 | ip->i_nlink++; /* for new link */ |
829 | ip->i_ctime = CURRENT_TIME; | 829 | ip->i_ctime = CURRENT_TIME; |
830 | dir->i_ctime = dir->i_mtime = CURRENT_TIME; | ||
830 | mark_inode_dirty(dir); | 831 | mark_inode_dirty(dir); |
831 | atomic_inc(&ip->i_count); | 832 | atomic_inc(&ip->i_count); |
832 | 833 | ||
@@ -1024,6 +1025,8 @@ static int jfs_symlink(struct inode *dip, struct dentry *dentry, | |||
1024 | insert_inode_hash(ip); | 1025 | insert_inode_hash(ip); |
1025 | mark_inode_dirty(ip); | 1026 | mark_inode_dirty(ip); |
1026 | 1027 | ||
1028 | dip->i_ctime = dip->i_mtime = CURRENT_TIME; | ||
1029 | mark_inode_dirty(dip); | ||
1027 | /* | 1030 | /* |
1028 | * commit update of parent directory and link object | 1031 | * commit update of parent directory and link object |
1029 | */ | 1032 | */ |