Searched refs:remainder_blocks (Results 1 - 1 of 1) sorted by relevance

/xnu-2422.115.4/bsd/hfs/
H A Dhfs_vfsops.c5632 uint32_t remainder_blocks; local
5689 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
5690 if (remainder_blocks) {
5691 newBlockCount -= remainder_blocks;
5693 printf ("hfs_reclaim_extent: Round-down newBlockCount to be multiple of nodeSize, node_allocblks=%u, old=%u, new=%u\n", node_size/hfsmp->blockSize, newBlockCount + remainder_blocks, newBlockCount);
5775 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
5776 if (remainder_blocks) {
5777 roundedBlockCount = newBlockCount - remainder_blocks;
5784 printf ("hfs_reclaim_extent: Fixing extent block count, node_blks=%u, old=%u, new=%u\n", node_size/hfsmp->blockSize, newBlockCount + remainder_blocks, newBlockCount);

Completed in 80 milliseconds