mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[PATCH] hpfs: remove spurious mtime update
Remove mtime update in hpfs_file_write, it's done in generic_file_write already. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
733482e445
commit
33096b1e73
@ -114,11 +114,8 @@ static ssize_t hpfs_file_write(struct file *file, const char __user *buf,
|
||||
ssize_t retval;
|
||||
|
||||
retval = generic_file_write(file, buf, count, ppos);
|
||||
if (retval > 0) {
|
||||
struct inode *inode = file->f_dentry->d_inode;
|
||||
inode->i_mtime = CURRENT_TIME_SEC;
|
||||
hpfs_i(inode)->i_dirty = 1;
|
||||
}
|
||||
if (retval > 0)
|
||||
hpfs_i(file->f_dentry->d_inode)->i_dirty = 1;
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user