From 1019c012fe205438478f740dc327927d68899d88 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 25 Apr 1995 01:11:38 +0000 Subject: Formerly pokel.c.~4~ --- ext2fs/pokel.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v1.2.3