Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45704
b: refs/heads/master
c: 8fa7a41
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse committed Jan 11, 2007
1 parent b302f78 commit a1f1bc8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0fc2ccea4c8fa779053cb6f8984f6da399a81182
refs/heads/master: 8fa7a41f65956ac3b6653dc6274c5111c99093ff
4 changes: 2 additions & 2 deletions trunk/fs/jffs2/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions trunk/fs/jffs2/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
for (i=0; i<c->nr_blocks; i++) {
struct jffs2_eraseblock *jeb = &c->blocks[i];

cond_resched();

/* reset summary info for next eraseblock scan */
jffs2_sum_reset_collected(s);

Expand Down
2 changes: 2 additions & 0 deletions trunk/fs/jffs2/summary.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,8 @@ static int jffs2_sum_process_sum_data(struct jffs2_sb_info *c, struct jffs2_eras
for (i=0; i<je32_to_cpu(summary->sum_num); i++) {
dbg_summary("processing summary index %d\n", i);

cond_resched();

/* Make sure there's a spare ref for dirty space */
err = jffs2_prealloc_raw_node_refs(c, jeb, 2);
if (err)
Expand Down

0 comments on commit a1f1bc8

Please sign in to comment.