Lines Matching refs:bufblks
445 xfs_daddr_t bufblks; in xlog_find_verify_cycle() local
455 bufblks = 1 << ffs(nbblks); in xlog_find_verify_cycle()
456 while (bufblks > log->l_logBBsize) in xlog_find_verify_cycle()
457 bufblks >>= 1; in xlog_find_verify_cycle()
458 while (!(bp = xlog_get_bp(log, bufblks))) { in xlog_find_verify_cycle()
459 bufblks >>= 1; in xlog_find_verify_cycle()
460 if (bufblks < log->l_sectBBsize) in xlog_find_verify_cycle()
464 for (i = start_blk; i < start_blk + nbblks; i += bufblks) { in xlog_find_verify_cycle()
467 bcount = min(bufblks, (start_blk + nbblks - i)); in xlog_find_verify_cycle()
1235 int bufblks; in xlog_write_log_records() local
1245 bufblks = 1 << ffs(blocks); in xlog_write_log_records()
1246 while (bufblks > log->l_logBBsize) in xlog_write_log_records()
1247 bufblks >>= 1; in xlog_write_log_records()
1248 while (!(bp = xlog_get_bp(log, bufblks))) { in xlog_write_log_records()
1249 bufblks >>= 1; in xlog_write_log_records()
1250 if (bufblks < sectbb) in xlog_write_log_records()
1267 for (i = start_block; i < end_block; i += bufblks) { in xlog_write_log_records()
1270 bcount = min(bufblks, end_block - start_block); in xlog_write_log_records()