Searched refs:dq_flags (Results 1 – 13 of 13) sorted by relevance
/Linux-v5.4/fs/xfs/ |
D | xfs_dquot.h | 34 uint dq_flags; /* various flags (XFS_DQ_*) */ member 145 #define XFS_DQ_IS_DIRTY(dqp) ((dqp)->dq_flags & XFS_DQ_DIRTY) 146 #define XFS_QM_ISUDQ(dqp) ((dqp)->dq_flags & XFS_DQ_USER) 147 #define XFS_QM_ISPDQ(dqp) ((dqp)->dq_flags & XFS_DQ_PROJ) 148 #define XFS_QM_ISGDQ(dqp) ((dqp)->dq_flags & XFS_DQ_GROUP)
|
D | xfs_dquot.c | 289 struct xfs_inode *quotip = xfs_quota_inode(mp, dqp->dq_flags); in xfs_dquot_disk_alloc() 296 if (!xfs_this_quota_on(dqp->q_mount, dqp->dq_flags)) { in xfs_dquot_disk_alloc() 334 dqp->dq_flags & XFS_DQ_ALLTYPES, bp); in xfs_dquot_disk_alloc() 381 struct xfs_inode *quotip = xfs_quota_inode(mp, dqp->dq_flags); in xfs_dquot_disk_read() 387 if (!xfs_this_quota_on(mp, dqp->dq_flags)) { in xfs_dquot_disk_read() 445 dqp->dq_flags = type; in xfs_dquot_alloc() 674 if (dqp->dq_flags & XFS_DQ_FREEING) { in xfs_qm_dqget_cache_lookup() 1096 dqp->dq_flags &= ~XFS_DQ_DIRTY; in xfs_qm_dqflush() 1138 dqp->dq_flags &= ~XFS_DQ_DIRTY; in xfs_qm_dqflush()
|
D | xfs_qm.h | 101 xfs_quota_inode(xfs_mount_t *mp, uint dq_flags) in xfs_quota_inode() argument 103 switch (dq_flags & XFS_DQ_ALLTYPES) { in xfs_quota_inode()
|
D | xfs_trans_dquot.c | 394 dqp->dq_flags |= XFS_DQ_DIRTY; in xfs_trans_apply_dquot_deltas() 554 if (dqp->dq_flags & XFS_DQ_PROJ) in xfs_quota_warn() 556 else if (dqp->dq_flags & XFS_DQ_USER) in xfs_quota_warn()
|
D | xfs_qm.c | 125 if ((dqp->dq_flags & XFS_DQ_FREEING) || dqp->q_nrefs != 0) { in xfs_qm_dqpurge() 130 dqp->dq_flags |= XFS_DQ_FREEING; in xfs_qm_dqpurge() 471 dqp->dq_flags |= XFS_DQ_FREEING; in xfs_qm_dquot_isolate() 1105 dqp->dq_flags |= XFS_DQ_DIRTY; in xfs_qm_quotacheck_dqadjust() 1211 if (dqp->dq_flags & XFS_DQ_FREEING) in xfs_qm_flush_one()
|
D | xfs_qm_syscalls.c | 529 dqp->dq_flags |= XFS_DQ_DIRTY; in xfs_qm_scall_setqlim()
|
D | xfs_trace.h | 874 __entry->flags = dqp->dq_flags;
|
/Linux-v5.4/fs/ocfs2/ |
D | quota_global.c | 77 if (!test_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags)) { in ocfs2_global_disk2memdqb() 81 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags)) in ocfs2_global_disk2memdqb() 83 if (!test_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags)) { in ocfs2_global_disk2memdqb() 87 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags)) in ocfs2_global_disk2memdqb() 89 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags)) in ocfs2_global_disk2memdqb() 91 if (!test_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags)) in ocfs2_global_disk2memdqb() 522 if (!test_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags)) in __ocfs2_sync_dquot() 524 if (!test_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags)) in __ocfs2_sync_dquot() 529 if (!test_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags) && in __ocfs2_sync_dquot() 539 clear_bit(DQ_BLKS_B, &dquot->dq_flags); in __ocfs2_sync_dquot() [all …]
|
/Linux-v5.4/fs/quota/ |
D | dquot.c | 341 return test_bit(DQ_MOD_B, &dquot->dq_flags); in dquot_dirty() 354 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) in dquot_mark_dquot_dirty() 358 return test_and_set_bit(DQ_MOD_B, &dquot->dq_flags); in dquot_mark_dquot_dirty() 361 if (test_bit(DQ_MOD_B, &dquot->dq_flags)) in dquot_mark_dquot_dirty() 365 if (!test_and_set_bit(DQ_MOD_B, &dquot->dq_flags)) { in dquot_mark_dquot_dirty() 402 return test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags); in clear_dquot_dirty() 405 if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags)) { in clear_dquot_dirty() 432 if (!test_bit(DQ_READ_B, &dquot->dq_flags)) { in dquot_acquire() 439 set_bit(DQ_READ_B, &dquot->dq_flags); in dquot_acquire() 441 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) { in dquot_acquire() [all …]
|
D | quota_tree.c | 631 set_bit(DQ_FAKE_B, &dquot->dq_flags); in qtree_read_dquot() 648 set_bit(DQ_FAKE_B, &dquot->dq_flags); in qtree_read_dquot() 659 set_bit(DQ_FAKE_B, &dquot->dq_flags); in qtree_read_dquot() 672 if (test_bit(DQ_FAKE_B, &dquot->dq_flags) && in qtree_release_dquot()
|
D | quota_v1.c | 76 set_bit(DQ_FAKE_B, &dquot->dq_flags); in v1_read_dqblk()
|
/Linux-v5.4/include/linux/ |
D | quota.h | 305 unsigned long dq_flags; /* See DQ_* */ member
|
D | quotaops.h | 53 WARN_ON_ONCE(!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)); in dqgrab()
|