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

/xnu-2422.115.4/bsd/vfs/
H A Dvfs_journal.c1098 size_t max_bsize = 0; /* protected by block_ptr */ local
1242 max_bsize = 0;
1250 if ((size_t)blhdr->binfo[i].u.bi.bsize > max_bsize) {
1251 max_bsize = blhdr->binfo[i].u.bi.bsize;
1257 if (kmem_alloc(kernel_map, (vm_offset_t *)&block_ptr, max_bsize)) {
1337 kmem_free(kernel_map, (vm_offset_t)block_ptr, max_bsize);
1390 * start max_bsize at PAGE_SIZE
1392 for (i = 0, max_bsize = PAGE_SIZE; i < num_full; i++) {
1397 if (co_buf[i].block_size > max_bsize)
1398 max_bsize
[all...]

Completed in 20 milliseconds