]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
JFS: set i_ctime & i_mtime on target directory when creating links
authorDave Kleikamp <shaggy@austin.ibm.com>
Mon, 31 Oct 2005 22:53:04 +0000 (16:53 -0600)
committerDave Kleikamp <shaggy@austin.ibm.com>
Mon, 31 Oct 2005 22:53:04 +0000 (16:53 -0600)
jfs has never been setting i_ctime or i_mtime when creating either hard
or symbolic links.  I'm surprised nobody had noticed until now.

Thanks to Chris Spiegel for reporting the problem.

Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
fs/jfs/namei.c

index 1abe7343f920494451b3bb5e5165f31af471eac6..4abbe86043021e931ccdfec7e1932bf15641a22d 100644 (file)
@@ -827,6 +827,7 @@ static int jfs_link(struct dentry *old_dentry,
        /* update object inode */
        ip->i_nlink++;          /* for new link */
        ip->i_ctime = CURRENT_TIME;
+       dir->i_ctime = dir->i_mtime = CURRENT_TIME;
        mark_inode_dirty(dir);
        atomic_inc(&ip->i_count);
 
@@ -1024,6 +1025,8 @@ static int jfs_symlink(struct inode *dip, struct dentry *dentry,
        insert_inode_hash(ip);
        mark_inode_dirty(ip);
 
+       dip->i_ctime = dip->i_mtime = CURRENT_TIME;
+       mark_inode_dirty(dip);
        /*
         * commit update of parent directory and link object
         */