* [patch 2/3] reiser4: don't panic in do_readpage_ctail
@ 2014-11-30 21:42 Edward Shishkin
0 siblings, 0 replies; only message in thread
From: Edward Shishkin @ 2014-11-30 21:42 UTC (permalink / raw)
To: ReiserFS development mailing list
[-- Attachment #1: Type: text/plain, Size: 59 bytes --]
Signed-off-by: Edward Shishkin <edward.shishkin@gmail.com>
[-- Attachment #2: reiser4-fix-do_readpage_ctail.patch --]
[-- Type: text/x-patch, Size: 786 bytes --]
Don't panic when unprepped ctail cluster is found.
Instead, return error and suggest to fsck.
Signed-off-by: Edward Shishkin <edward.shishkin@gmail.com>
---
fs/reiser4/plugin/item/ctail.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
--- a/fs/reiser4/plugin/item/ctail.c
+++ b/fs/reiser4/plugin/item/ctail.c
@@ -666,7 +666,15 @@ int do_readpage_ctail(struct inode * ino
switch (clust->dstat) {
case UNPR_DISK_CLUSTER:
- BUG_ON(1);
+ /*
+ * Page is not uptodate and item cluster is unprepped:
+ * this must not ever happen.
+ */
+ warning("edward-1632",
+ "Bad item cluster %lu (Inode %llu). Fsck?",
+ clust->index,
+ (unsigned long long)get_inode_oid(inode));
+ return RETERR(-EIO);
case TRNC_DISK_CLUSTER:
/*
* Race with truncate!
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-11-30 21:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-30 21:42 [patch 2/3] reiser4: don't panic in do_readpage_ctail Edward Shishkin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).