Lines Matching refs:bufblks
328 xfs_daddr_t bufblks; in xlog_find_verify_cycle() local
338 bufblks = 1 << ffs(nbblks); in xlog_find_verify_cycle()
339 while (bufblks > log->l_logBBsize) in xlog_find_verify_cycle()
340 bufblks >>= 1; in xlog_find_verify_cycle()
341 while (!(buffer = xlog_alloc_buffer(log, bufblks))) { in xlog_find_verify_cycle()
342 bufblks >>= 1; in xlog_find_verify_cycle()
343 if (bufblks < log->l_sectBBsize) in xlog_find_verify_cycle()
347 for (i = start_blk; i < start_blk + nbblks; i += bufblks) { in xlog_find_verify_cycle()
350 bcount = min(bufblks, (start_blk + nbblks - i)); in xlog_find_verify_cycle()
1527 int bufblks; in xlog_write_log_records() local
1537 bufblks = 1 << ffs(blocks); in xlog_write_log_records()
1538 while (bufblks > log->l_logBBsize) in xlog_write_log_records()
1539 bufblks >>= 1; in xlog_write_log_records()
1540 while (!(buffer = xlog_alloc_buffer(log, bufblks))) { in xlog_write_log_records()
1541 bufblks >>= 1; in xlog_write_log_records()
1542 if (bufblks < sectbb) in xlog_write_log_records()
1559 for (i = start_block; i < end_block; i += bufblks) { in xlog_write_log_records()
1562 bcount = min(bufblks, end_block - start_block); in xlog_write_log_records()