diff options
-rw-r--r-- | ext2fs/pokel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext2fs/pokel.c b/ext2fs/pokel.c index 8290727b..2ec7c13e 100644 --- a/ext2fs/pokel.c +++ b/ext2fs/pokel.c @@ -56,6 +56,7 @@ pokel_add (struct pokel *pokel, void *loc, vm_size_t length) pl->next = pokel->pokes; pokel->pokes = pl; } + printf ("Added %d[%d] to pokel 0x%x\n", offset, length, pokel); spin_unlock (&pokel->lock); } @@ -70,6 +71,7 @@ pokel_sync (struct pokel *pokel, int wait) for (pl = pokel->pokes; pl; pl = next) { + printf ("Syncing %d[%d] from pokel 0x%x\n", pl->offset, pl->length, pokel); pager_sync_some (pokel->pager, pl->offset, pl->length, wait); next = pl->next; pl->next = pokel->free_pokes; |