2010-02-26 13:05:14

by Dmitry Monakhov

[permalink] [raw]
Subject: [PATCH] ext3: explicitly remove inode from orphan list after failed direct_io

Otherwise non empty orphan list will be triggered on umount.

Signed-off-by: Dmitry Monakhov <[email protected]>
---
fs/ext3/inode.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c
index cf0e3aa..2522106 100644
--- a/fs/ext3/inode.c
+++ b/fs/ext3/inode.c
@@ -1818,6 +1818,9 @@ retry:
* but cannot extend i_size. Bail out and pretend
* the write failed... */
ret = PTR_ERR(handle);
+ if (inode->i_nlink)
+ ext3_orphan_del(NULL, inode);
+
goto out;
}
if (inode->i_nlink)
--
1.6.6