mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
fs/ntfs3: Add ckeck in ni_update_parent()
Check simple case when parent inode equals current inode. Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
@@ -3208,6 +3208,12 @@ static bool ni_update_parent(struct ntfs_inode *ni, struct NTFS_DUP_INFO *dup,
|
|||||||
if (!fname || !memcmp(&fname->dup, dup, sizeof(fname->dup)))
|
if (!fname || !memcmp(&fname->dup, dup, sizeof(fname->dup)))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/* Check simple case when parent inode equals current inode. */
|
||||||
|
if (ino_get(&fname->home) == ni->vfs_inode.i_ino) {
|
||||||
|
ntfs_set_state(sbi, NTFS_DIRTY_ERROR);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
/* ntfs_iget5 may sleep. */
|
/* ntfs_iget5 may sleep. */
|
||||||
dir = ntfs_iget5(sb, &fname->home, NULL);
|
dir = ntfs_iget5(sb, &fname->home, NULL);
|
||||||
if (IS_ERR(dir)) {
|
if (IS_ERR(dir)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user