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

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c5560 uint32_t remainder_blocks; local
5617 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
5618 if (remainder_blocks) {
5619 newBlockCount -= remainder_blocks;
5621 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);
5701 remainder_blocks = newBlockCount % (node_size / hfsmp->blockSize);
5702 if (remainder_blocks) {
5703 roundedBlockCount = newBlockCount - remainder_blocks;
5710 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 12 milliseconds