Lines Matching refs:blks
336 int blks, run, error; in nilfs_trivial_bmap() local
342 blks = MAXPHYS / blocksize; in nilfs_trivial_bmap()
345 l2vmap = malloc(sizeof(uint64_t) * blks, M_TEMP, M_WAITOK); in nilfs_trivial_bmap()
348 error = nilfs_btree_nlookup(node, bn, blks, l2vmap); in nilfs_trivial_bmap()
363 while ((run < blks) && (l2vmap[run] == *bnp + run)) in nilfs_trivial_bmap()
391 uint64_t from, blks; in nilfs_read_filebuf() local
406 blks = bp->b_bcount / blocksize; in nilfs_read_filebuf()
409 "+ %"PRIu64" blocks\n", node->ino, from, blks)); in nilfs_read_filebuf()
415 l2vmap = malloc(sizeof(uint64_t) * blks, M_TEMP, M_WAITOK); in nilfs_read_filebuf()
416 v2pmap = malloc(sizeof(uint64_t) * blks, M_TEMP, M_WAITOK); in nilfs_read_filebuf()
419 for (i = 0; i < blks; i++) in nilfs_read_filebuf()
423 error = nilfs_nvtop(node, blks, l2vmap, v2pmap); in nilfs_read_filebuf()
429 for (i = 0; i < blks; i++) { in nilfs_read_filebuf()