[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1267189508-5273-1-git-send-email-dmonakhov@openvz.org>
Date: Fri, 26 Feb 2010 16:05:08 +0300
From: Dmitry Monakhov <dmonakhov@...nvz.org>
To: linux-ext4@...r.kernel.org
Cc: jack@...e.cz, Dmitry Monakhov <dmonakhov@...nvz.org>
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 <dmonakhov@...nvz.org>
---
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
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists