mirror of https://gitee.com/openkylin/linux.git
HPFS: Remove mark_inode_dirty
Remove mark_inode_dirty HPFS doesn't use kernel's dirty inode indicator anyway because writing an inode requires directory's mutex. Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0fe105aa29
commit
e5d6a7dd5e
|
@ -199,8 +199,6 @@ void hpfs_write_inode(struct inode *i)
|
|||
}
|
||||
hpfs_write_inode_nolock(i);
|
||||
iput(parent);
|
||||
} else {
|
||||
mark_inode_dirty(i);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -278,7 +276,6 @@ int hpfs_setattr(struct dentry *dentry, struct iattr *attr)
|
|||
}
|
||||
|
||||
setattr_copy(inode, attr);
|
||||
mark_inode_dirty(inode);
|
||||
|
||||
hpfs_write_inode(inode);
|
||||
|
||||
|
|
Loading…
Reference in New Issue