Lines Matching refs:entries
623 /* Number of AGFL entries that the AGF claims are in use. */
626 /* Number of AGFL entries that we found. */
629 /* Buffer to hold AGFL entries for extent checking. */
630 xfs_agblock_t *entries;
664 sai->entries[sai->nr_entries++] = agbno;
745 /* Allocate buffer to ensure uniqueness of AGFL entries. */
752 sai.entries = kvcalloc(sai.agflcount, sizeof(xfs_agblock_t),
754 if (!sai.entries) {
774 /* Sort entries, check for duplicates. */
775 sort(sai.entries, sai.nr_entries, sizeof(sai.entries[0]),
778 if (sai.entries[i] == sai.entries[i - 1]) {
785 kvfree(sai.entries);