* [PATCH]fix delalloc write_begin failure case
@ 2008-05-09 23:45 Mingming Cao
0 siblings, 0 replies; only message in thread
From: Mingming Cao @ 2008-05-09 23:45 UTC (permalink / raw)
To: linux-ext4
Need to unlock and release the page from page cache if the delalloc
write_begin failed.
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
---
fs/ext4/inode.c | 5 +++++
1 file changed, 5 insertions(+)
Index: linux-2.6.26-rc1/fs/ext4/inode.c
===================================================================
--- linux-2.6.26-rc1.orig/fs/ext4/inode.c 2008-05-09 16:21:49.000000000 -0700
+++ linux-2.6.26-rc1/fs/ext4/inode.c 2008-05-09 16:25:26.000000000 -0700
@@ -1518,6 +1518,11 @@ static int ext4_da_write_begin(struct fi
ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
ext4_da_get_block_prep);
+ if (ret < 0) {
+ unlock_page(page);
+ page_cache_release(page);
+ }
+
return ret;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-09 23:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-09 23:45 [PATCH]fix delalloc write_begin failure case Mingming Cao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox