]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blobdiff - fs/minix/namei.c
fs: Replace CURRENT_TIME_SEC with current_time() for inode timestamps
[mirror_ubuntu-hirsute-kernel.git] / fs / minix / namei.c
index 2887d1d95ce244e8ad59cd2585676888277958b3..66ca515302781e51ae3af8f1f6ef1e6639dff1b4 100644 (file)
@@ -106,7 +106,7 @@ static int minix_link(struct dentry * old_dentry, struct inode * dir,
 {
        struct inode *inode = d_inode(old_dentry);
 
-       inode->i_ctime = CURRENT_TIME_SEC;
+       inode->i_ctime = current_time(inode);
        inode_inc_link_count(inode);
        ihold(inode);
        return add_nondir(dentry, inode);
@@ -219,7 +219,7 @@ static int minix_rename(struct inode * old_dir, struct dentry *old_dentry,
                if (!new_de)
                        goto out_dir;
                minix_set_link(new_de, new_page, old_inode);
-               new_inode->i_ctime = CURRENT_TIME_SEC;
+               new_inode->i_ctime = current_time(new_inode);
                if (dir_de)
                        drop_nlink(new_inode);
                inode_dec_link_count(new_inode);