diff options
author | Miles Bader <miles@gnu.org> | 1995-05-01 14:32:18 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-05-01 14:32:18 +0000 |
commit | 4a31c277acb1a4936aad5ee11e1a5bf82bc1eb67 (patch) | |
tree | cc88a675c2603233c229e4f7645f084bd291846a | |
parent | b3a82c0f71be7b2f698a00782fda7a6e881b2339 (diff) |
Formerly ext2fs.h.~37~
-rw-r--r-- | ext2fs/ext2fs.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h index d5451273..2a4c509c 100644 --- a/ext2fs/ext2fs.h +++ b/ext2fs/ext2fs.h @@ -399,9 +399,7 @@ sync_global_ptr (void *bptr, int wait) pager_sync_some (disk_pager->p, trunc_page (boffs), vm_page_size, wait); } -/* This records a modification to one of a file's indirect blocks. It's - added to both the file-specific pokel, so a file sync will sync that - file's blocks, and the global one, so a global sync will as well. */ +/* This records a modification to one of a file's indirect blocks. */ extern inline void record_indir_poke (struct node *node, void *ptr) { @@ -411,9 +409,6 @@ record_indir_poke (struct node *node, void *ptr) printf ("Adding block %u to indir pokel for inode %u (%p)\n", boffs_block (boffs), node->dn->number, &node->dn->indir_pokel); pokel_add (&node->dn->indir_pokel, boffs_ptr(boffs), block_size); - printf ("Adding block %u to global_pokel (%p)\n", - boffs_block (boffs), &global_pokel); - pokel_add (&global_pokel, boffs_ptr(boffs), block_size); } } |