Commit da1dafca authored by Dmitry Monakhov's avatar Dmitry Monakhov Committed by Theodore Ts'o
Browse files

ext4: explicitly remove inode from orphan list after failed direct io



Otherwise non-empty orphan list will be triggered on umount.

Signed-off-by: default avatarDmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent f39490bc
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -3438,6 +3438,9 @@ retry:
			 * but cannot extend i_size. Bail out and pretend
			 * but cannot extend i_size. Bail out and pretend
			 * the write failed... */
			 * the write failed... */
			ret = PTR_ERR(handle);
			ret = PTR_ERR(handle);
			if (inode->i_nlink)
				ext4_orphan_del(NULL, inode);

			goto out;
			goto out;
		}
		}
		if (inode->i_nlink)
		if (inode->i_nlink)