Skip to content

Commit

Permalink
[JFFS2] Reschedule in loops
Browse files Browse the repository at this point in the history
Make JFFS2 nicer and teach it to call cond_resched() in loops
which may be quite large.

Signed-off-by: Artem Bityutskiy <[email protected]>
  • Loading branch information
dedekind committed Jan 10, 2007
1 parent 85de3d9 commit a2166b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 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 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 a2166b9

Please sign in to comment.