Home
last modified time | relevance | path

Searched refs:BBSIZE (Results 1 – 7 of 7) sorted by relevance

/kernel/linux/linux-5.10/fs/xfs/
Dxfs_log.c1593 if (i >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) in xlog_pack_data()
1597 dp += BBSIZE; in xlog_pack_data()
1604 j = i / (XLOG_HEADER_CYCLE_SIZE / BBSIZE); in xlog_pack_data()
1605 k = i % (XLOG_HEADER_CYCLE_SIZE / BBSIZE); in xlog_pack_data()
1608 dp += BBSIZE; in xlog_pack_data()
1777 for (i = split_offset; i < count; i += BBSIZE) { in xlog_split_iclog()
3430 unit_bytes += 2 * BBSIZE; in xfs_log_calc_unit_res()
3604 for (ptr += BBSIZE; ptr < base_ptr + count; ptr += BBSIZE) { in xlog_verify_iclog()
3625 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) { in xlog_verify_iclog()
3626 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE); in xlog_verify_iclog()
[all …]
Dxfs_log_recover.c363 buf += BBSIZE; in xlog_find_verify_cycle()
452 offset -= BBSIZE; in xlog_find_verify_log_record()
1502 memset(buf, 0, BBSIZE); in xlog_add_record()
1582 offset += BBSIZE; in xlog_write_log_records()
2807 i < (XLOG_HEADER_CYCLE_SIZE / BBSIZE); i++) { in xlog_unpack_data()
2809 dp += BBSIZE; in xlog_unpack_data()
2815 j = i / (XLOG_HEADER_CYCLE_SIZE / BBSIZE); in xlog_unpack_data()
2816 k = i % (XLOG_HEADER_CYCLE_SIZE / BBSIZE); in xlog_unpack_data()
2818 dp += BBSIZE; in xlog_unpack_data()
Dxfs_super.c474 unsigned int log_sector_size = BBSIZE; in xfs_setup_devices()
1425 sb_min_blocksize(sb, BBSIZE); in xfs_fc_fill_super()
/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_log_rlimit.c130 min_logblks = BTOBB(max_logres) + 2 * BBSIZE; in xfs_log_calc_minimum_size()
Dxfs_fs.h849 #define BBSIZE (1<<BBSHIFT) macro
850 #define BBMASK (BBSIZE-1)
851 #define BTOBB(bytes) (((__u64)(bytes) + BBSIZE - 1) >> BBSHIFT)
Dxfs_log_format.h172 __be32 h_cycle_data[XLOG_HEADER_CYCLE_SIZE / BBSIZE];
181 __be32 xh_cycle_data[XLOG_HEADER_CYCLE_SIZE / BBSIZE]; /* : 256 */
Dxfs_sb.c1184 geo->logsectsize = BBSIZE; in xfs_fs_geometry()