Home
last modified time | relevance | path

Searched refs:fs_bsize (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.41.9/bsd/kern/
H A Ddecmpfs.c1297 uint32_t fs_bsize = 0;
1354 fs_bsize = vp->v_mount->mnt_vfsstat.f_bsize;
1362 } else if (fs_bsize) {
1367 if (fs_bsize & (fs_bsize - 1)) {
1369 fs_bsize, PAGE_SIZE);
1371 } else if (fs_bsize > verify_block_size) {
1373 fs_bsize, verify_block_size);
1407 if (fs_bsize) {
1409 rounded_uplSize = (uplSize + (fs_bsize - 1)) & ~(fs_bsize - 1);
/xnu-10002.41.9/bsd/vfs/
H A Dvfs_cluster.c2547 uint32_t fs_bsize = vp->v_mount->mnt_vfsstat.f_bsize; in cluster_write_ext() local
2549 if (fs_bsize && (fs_bsize < MIN_DIRECT_WRITE_SIZE) && in cluster_write_ext()
2550 ((fs_bsize & (fs_bsize - 1)) == 0)) { in cluster_write_ext()
2551 min_direct_size = fs_bsize; in cluster_write_ext()