Lines Matching refs:dst
402 struct qc_dqblk *dst)
404 memset(dst, 0, sizeof(*dst));
405 dst->d_spc_hardlimit = XFS_FSB_TO_B(mp, dqp->q_blk.hardlimit);
406 dst->d_spc_softlimit = XFS_FSB_TO_B(mp, dqp->q_blk.softlimit);
407 dst->d_ino_hardlimit = dqp->q_ino.hardlimit;
408 dst->d_ino_softlimit = dqp->q_ino.softlimit;
409 dst->d_space = XFS_FSB_TO_B(mp, dqp->q_blk.reserved);
410 dst->d_ino_count = dqp->q_ino.reserved;
411 dst->d_spc_timer = dqp->q_blk.timer;
412 dst->d_ino_timer = dqp->q_ino.timer;
413 dst->d_ino_warns = 0;
414 dst->d_spc_warns = 0;
415 dst->d_rt_spc_hardlimit = XFS_FSB_TO_B(mp, dqp->q_rtb.hardlimit);
416 dst->d_rt_spc_softlimit = XFS_FSB_TO_B(mp, dqp->q_rtb.softlimit);
417 dst->d_rt_space = XFS_FSB_TO_B(mp, dqp->q_rtb.reserved);
418 dst->d_rt_spc_timer = dqp->q_rtb.timer;
419 dst->d_rt_spc_warns = 0;
427 dst->d_spc_timer = 0;
428 dst->d_ino_timer = 0;
429 dst->d_rt_spc_timer = 0;
434 if ((dst->d_space > dst->d_spc_softlimit) &&
435 (dst->d_spc_softlimit > 0)) {
436 ASSERT(dst->d_spc_timer != 0);
438 if ((dst->d_ino_count > dqp->q_ino.softlimit) &&
440 ASSERT(dst->d_ino_timer != 0);
452 struct qc_dqblk *dst)
481 xfs_qm_scall_getquota_fill_qc(mp, type, dqp, dst);
497 struct qc_dqblk *dst)
513 xfs_qm_scall_getquota_fill_qc(mp, type, dqp, dst);