diff options
author | Miles Bader <miles@gnu.org> | 1995-04-25 01:11:38 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-04-25 01:11:38 +0000 |
commit | 1019c012fe205438478f740dc327927d68899d88 (patch) | |
tree | 3f1ac6b3f0a0d3a7b750f15da813b403010b7f42 | |
parent | 806cc284ef99f1657d61eae66c51c291d690ce84 (diff) |
Formerly pokel.c.~4~
-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; |