Lines Matching refs:id
233 xfs_dqid_t id, in xfs_qm_init_dquot_blk() argument
250 curid = id - (id % q->qi_dqperchunk); in xfs_qm_init_dquot_blk()
473 xfs_dqid_t id = be32_to_cpu(dqp->q_core.d_id); in xfs_qm_dqtobp() local
478 dqp->q_fileoffset = (xfs_fileoff_t)id / mp->m_quotainfo->qi_dqperchunk; in xfs_qm_dqtobp()
506 dqp->q_bufoffset = (id % mp->m_quotainfo->qi_dqperchunk) * in xfs_qm_dqtobp()
567 xfs_dqid_t id, in xfs_qm_dqread() argument
581 dqp->q_core.d_id = cpu_to_be32(id); in xfs_qm_dqread()
700 xfs_dqid_t *id, in xfs_dq_get_next_id() argument
711 next_id = *id + 1; in xfs_dq_get_next_id()
714 if (next_id < *id) in xfs_dq_get_next_id()
719 *id = next_id; in xfs_dq_get_next_id()
741 *id = XFS_B_TO_FSB(mp, offset) * mp->m_quotainfo->qi_dqperchunk; in xfs_dq_get_next_id()
757 xfs_dqid_t id, /* uid/projid/gid depending on type */ in xfs_qm_dqget() argument
810 dqp = radix_tree_lookup(tree, id); in xfs_qm_dqget()
826 error = xfs_dq_get_next_id(mp, type, &id, eof); in xfs_qm_dqget()
854 error = xfs_qm_dqread(mp, id, type, flags, &dqp); in xfs_qm_dqget()
861 error = xfs_dq_get_next_id(mp, type, &id, eof); in xfs_qm_dqget()
892 error = radix_tree_insert(tree, id, dqp); in xfs_qm_dqget()
920 error = xfs_dq_get_next_id(mp, type, &id, eof); in xfs_qm_dqget()