Skip to content

Commit

Permalink
Remove overly noisy linked list dump DPRINTKs.
Browse files Browse the repository at this point in the history
  • Loading branch information
willsmithorg committed Oct 16, 2011
1 parent da61639 commit 47605d8
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/flashcache_ioctl.c
Expand Up @@ -482,15 +482,8 @@ skip_sequential_io (struct cache_c *dmc, struct bio *bio)
seqio->most_recent_sector = bio->bi_sector;
seqio->sequential_count = 1;
}
out:
DPRINTK("skip_sequential_io: dump of queue forwards");
for (seqio = dmc->seq_io_head; seqio != NULL; seqio = seqio->next)
DPRINTK("sector %ld occurrences %ld", seqio->most_recent_sector, seqio->sequential_count);
DPRINTK("skip_sequential_io: dump of queue backwards");
for (seqio = dmc->seq_io_tail; seqio != NULL; seqio = seqio->prev)
DPRINTK("sector %ld occurrences %ld", seqio->most_recent_sector, seqio->sequential_count);

DPRINTK("skip_sequential_io: complete.");
out:
return skip;
}

Expand Down

0 comments on commit 47605d8

Please sign in to comment.