Searched refs:lastino (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/fs/xfs/ |
D | xfs_ioctl32.c | 211 xfs_ino_t lastino; in xfs_compat_ioc_fsbulkstat() local 258 if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64))) in xfs_compat_ioc_fsbulkstat() 282 breq.startino = lastino ? lastino + 1 : 0; in xfs_compat_ioc_fsbulkstat() 284 lastino = breq.startino - 1; in xfs_compat_ioc_fsbulkstat() 286 breq.startino = lastino; in xfs_compat_ioc_fsbulkstat() 289 lastino = breq.startino; in xfs_compat_ioc_fsbulkstat() 291 breq.startino = lastino ? lastino + 1 : 0; in xfs_compat_ioc_fsbulkstat() 293 lastino = breq.startino - 1; in xfs_compat_ioc_fsbulkstat() 301 copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t))) in xfs_compat_ioc_fsbulkstat()
|
D | xfs_iwalk.c | 62 xfs_ino_t lastino; member 308 iwag->lastino = XFS_AGINO_TO_INO(mp, pag->pag_agno, in xfs_iwalk_ag_start() 357 next_agino = XFS_INO_TO_AGINO(mp, iwag->lastino) + 1; in xfs_iwalk_run_callbacks() 429 if (iwag->lastino != NULLFSINO && in xfs_iwalk_ag() 430 XFS_IS_CORRUPT(mp, iwag->lastino >= rec_fsino)) { in xfs_iwalk_ag() 435 iwag->lastino = rec_fsino + XFS_INODES_PER_CHUNK - 1; in xfs_iwalk_ag() 564 .lastino = NULLFSINO, in xfs_iwalk() 674 iwag->lastino = NULLFSINO; in xfs_iwalk_threaded() 749 .lastino = NULLFSINO, in xfs_inobt_walk()
|
D | xfs_ioctl.c | 87 xfs_ino_t lastino; in xfs_ioc_fsbulkstat() local 102 if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64))) in xfs_ioc_fsbulkstat() 126 breq.startino = lastino ? lastino + 1 : 0; in xfs_ioc_fsbulkstat() 128 lastino = breq.startino - 1; in xfs_ioc_fsbulkstat() 130 breq.startino = lastino; in xfs_ioc_fsbulkstat() 134 breq.startino = lastino ? lastino + 1 : 0; in xfs_ioc_fsbulkstat() 136 lastino = breq.startino - 1; in xfs_ioc_fsbulkstat() 143 copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t))) in xfs_ioc_fsbulkstat()
|
/linux-6.12.1/fs/xfs/scrub/ |
D | iscan.c | 99 xfs_agino_t lastino = NULLAGINO; in xchk_iscan_find_next() local 142 if (lastino != NULLAGINO && in xchk_iscan_find_next() 143 XFS_IS_CORRUPT(mp, lastino >= rec.ir_startino)) { in xchk_iscan_find_next() 147 lastino = rec.ir_startino + XFS_INODES_PER_CHUNK - 1; in xchk_iscan_find_next() 157 xchk_iscan_mask_skipino(iscan, pag, &rec, lastino); in xchk_iscan_find_next()
|