diff options
| author | 2007-01-24 02:14:25 -0500 | |
|---|---|---|
| committer | 2007-01-24 02:14:25 -0500 | |
| commit | e47b207a5bcb73bb097f94d9fe364f50737b0eb2 (patch) | |
| tree | 57389653c37d001de3a90655cb4172ba29199ce4 /fs/jffs2/debug.c | |
| parent | mv643xx_eth: Fix race condition in mv643xx_eth_free_tx_descs (diff) | |
| parent | V4L/DVB (5123): Buf_qbuf: fix: videobuf_queue->stream corruption and lockup (diff) | |
Merge branch 'master' into upstream-fixes
Diffstat (limited to 'fs/jffs2/debug.c')
| -rw-r--r-- | fs/jffs2/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/debug.c b/fs/jffs2/debug.c index 72b4fc13a106..4189e4a36050 100644 --- a/fs/jffs2/debug.c +++ b/fs/jffs2/debug.c @@ -178,8 +178,8 @@ __jffs2_dbg_acct_paranoia_check_nolock(struct jffs2_sb_info *c, while (ref2) { uint32_t totlen = ref_totlen(c, jeb, ref2); - if (ref2->flash_offset < jeb->offset || - ref2->flash_offset > jeb->offset + c->sector_size) { + if (ref_offset(ref2) < jeb->offset || + ref_offset(ref2) > jeb->offset + c->sector_size) { JFFS2_ERROR("node_ref %#08x shouldn't be in block at %#08x.\n", ref_offset(ref2), jeb->offset); goto error; |
