diff options
author | Dmitry Monakhov <dmonakhov@openvz.org> | 2010-03-02 04:15:02 (GMT) |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-03-02 04:15:02 (GMT) |
commit | da1dafca84413145f5ac59998b4cdd06fb89f721 (patch) | |
tree | 60582ee94c6867f234bb15bb18af8dd9be4f1693 /fs/ext4/inode.c | |
parent | f39490bcd1691d65dc33689222a12e1fc13dd824 (diff) | |
download | linux-da1dafca84413145f5ac59998b4cdd06fb89f721.tar.xz |
ext4: 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@openvz.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index edb7edc..427f469 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -3438,6 +3438,9 @@ retry: * but cannot extend i_size. Bail out and pretend * the write failed... */ ret = PTR_ERR(handle); + if (inode->i_nlink) + ext4_orphan_del(NULL, inode); + goto out; } if (inode->i_nlink) |