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

/xnu-2782.1.97/bsd/hfs/
H A Dhfs_resize.c1681 uint32_t remainder_blocks; local
1738 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
1739 if (remainder_blocks) {
1740 newBlockCount -= remainder_blocks;
1742 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);
1841 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
1842 if (remainder_blocks) {
1843 roundedBlockCount = newBlockCount - remainder_blocks;
1850 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 27 milliseconds