Home
last modified time | relevance | path

Searched refs:has_record (Results 1 – 4 of 4) sorted by relevance

/linux-6.12.1/fs/xfs/scrub/
Dialloc.c76 int has_record; in xchk_inobt_xref_finobt() local
81 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &has_record); in xchk_inobt_xref_finobt()
84 if (!has_record) in xchk_inobt_xref_finobt()
87 error = xfs_inobt_get_rec(cur, &frec, &has_record); in xchk_inobt_xref_finobt()
88 if (!has_record) in xchk_inobt_xref_finobt()
179 int has_record; in xchk_finobt_xref_inobt() local
184 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &has_record); in xchk_finobt_xref_inobt()
187 if (!has_record) in xchk_finobt_xref_inobt()
190 error = xfs_inobt_get_rec(cur, &irec, &has_record); in xchk_finobt_xref_inobt()
191 if (!has_record) in xchk_finobt_xref_inobt()
Dinode.c612 int has_record; in xchk_inode_xref_finobt() local
625 &has_record); in xchk_inode_xref_finobt()
627 !has_record) in xchk_inode_xref_finobt()
630 error = xfs_inobt_get_rec(sc->sa.fino_cur, &rec, &has_record); in xchk_inode_xref_finobt()
632 !has_record) in xchk_inode_xref_finobt()
/linux-6.12.1/fs/xfs/libxfs/
Dxfs_ialloc.c2808 int has_record; in xfs_ialloc_count_ondisk() local
2811 error = xfs_inobt_lookup(cur, low, XFS_LOOKUP_LE, &has_record); in xfs_ialloc_count_ondisk()
2815 while (has_record) { in xfs_ialloc_count_ondisk()
2818 error = xfs_inobt_get_rec(cur, &irec, &has_record); in xfs_ialloc_count_ondisk()
2835 error = xfs_btree_increment(cur, 0, &has_record); in xfs_ialloc_count_ondisk()
/linux-6.12.1/tools/perf/
Dbuiltin-c2c.c2125 bool has_record = false; in is_valid_hist_entry() local
2135 has_record = !!c2c_he->stats.lcl_hitm; in is_valid_hist_entry()
2138 has_record = !!c2c_he->stats.rmt_hitm; in is_valid_hist_entry()
2141 has_record = !!c2c_he->stats.tot_hitm; in is_valid_hist_entry()
2144 has_record = !!c2c_he->stats.tot_peer; in is_valid_hist_entry()
2149 return has_record; in is_valid_hist_entry()