提交 f0507530 编写于 作者: A Artem B. Bityutskiy 提交者: Thomas Gleixner

[JFFS2] Solve BUG caused by frag->node representing a hole in fragtree

Signed-off-by: NArtem B. Bityutskiy <dedekind@infradead.org>
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 280562b2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* For licensing information, see the file 'LICENCE' in this directory. * For licensing information, see the file 'LICENCE' in this directory.
* *
* $Id: nodelist.c,v 1.111 2005/08/17 14:57:39 dedekind Exp $ * $Id: nodelist.c,v 1.112 2005/08/22 09:07:09 dedekind Exp $
* *
*/ */
...@@ -80,7 +80,7 @@ void jffs2_truncate_fragtree(struct jffs2_sb_info *c, struct rb_root *list, uint ...@@ -80,7 +80,7 @@ void jffs2_truncate_fragtree(struct jffs2_sb_info *c, struct rb_root *list, uint
* REF_PRISTINE irrespective of its size. * REF_PRISTINE irrespective of its size.
*/ */
frag = frag_last(list); frag = frag_last(list);
if ((frag->ofs & (PAGE_CACHE_SIZE - 1)) == 0) { if (frag->node && (frag->ofs & (PAGE_CACHE_SIZE - 1)) == 0) {
JFFS2_DBG_FRAGTREE2("marking the last fragment 0x%08x-0x%08x REF_PRISTINE.\n", JFFS2_DBG_FRAGTREE2("marking the last fragment 0x%08x-0x%08x REF_PRISTINE.\n",
frag->ofs, frag->ofs + frag->size); frag->ofs, frag->ofs + frag->size);
frag->node->raw->flash_offset = ref_offset(frag->node->raw) | REF_PRISTINE; frag->node->raw->flash_offset = ref_offset(frag->node->raw) | REF_PRISTINE;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册