Commit 8cd4901d authored by Darrick J. Wong's avatar Darrick J. Wong

xfs: rename XFS_DQ_{USER,GROUP,PROJ} to XFS_DQTYPE_*

We're going to split up the incore dquot state flags from the ondisk
dquot flags (eventually renaming this "type") so start by renaming the
three flags and the bitmask that are going to participate in this.
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
parent f9751c4a
...@@ -59,9 +59,9 @@ xfs_dquot_verify( ...@@ -59,9 +59,9 @@ xfs_dquot_verify(
if (ddq->d_version != XFS_DQUOT_VERSION) if (ddq->d_version != XFS_DQUOT_VERSION)
return __this_address; return __this_address;
if (ddq->d_flags != XFS_DQ_USER && if (ddq->d_flags != XFS_DQTYPE_USER &&
ddq->d_flags != XFS_DQ_PROJ && ddq->d_flags != XFS_DQTYPE_PROJ &&
ddq->d_flags != XFS_DQ_GROUP) ddq->d_flags != XFS_DQTYPE_GROUP)
return __this_address; return __this_address;
if (id != -1 && id != be32_to_cpu(ddq->d_id)) if (id != -1 && id != be32_to_cpu(ddq->d_id))
......
...@@ -1157,7 +1157,7 @@ static inline void xfs_dinode_put_rdev(struct xfs_dinode *dip, xfs_dev_t rdev) ...@@ -1157,7 +1157,7 @@ static inline void xfs_dinode_put_rdev(struct xfs_dinode *dip, xfs_dev_t rdev)
struct xfs_disk_dquot { struct xfs_disk_dquot {
__be16 d_magic; /* dquot magic = XFS_DQUOT_MAGIC */ __be16 d_magic; /* dquot magic = XFS_DQUOT_MAGIC */
__u8 d_version; /* dquot version */ __u8 d_version; /* dquot version */
__u8 d_flags; /* XFS_DQ_USER/PROJ/GROUP */ __u8 d_flags; /* XFS_DQTYPE_USER/PROJ/GROUP */
__be32 d_id; /* user,project,group id */ __be32 d_id; /* user,project,group id */
__be64 d_blk_hardlimit;/* absolute limit on disk blks */ __be64 d_blk_hardlimit;/* absolute limit on disk blks */
__be64 d_blk_softlimit;/* preferred limit on disk blks */ __be64 d_blk_softlimit;/* preferred limit on disk blks */
......
...@@ -21,18 +21,20 @@ typedef uint16_t xfs_qwarncnt_t; ...@@ -21,18 +21,20 @@ typedef uint16_t xfs_qwarncnt_t;
/* /*
* flags for q_flags field in the dquot. * flags for q_flags field in the dquot.
*/ */
#define XFS_DQ_USER 0x0001 /* a user quota */ #define XFS_DQTYPE_USER 0x0001 /* a user quota */
#define XFS_DQ_PROJ 0x0002 /* project quota */ #define XFS_DQTYPE_PROJ 0x0002 /* project quota */
#define XFS_DQ_GROUP 0x0004 /* a group quota */ #define XFS_DQTYPE_GROUP 0x0004 /* a group quota */
#define XFS_DQFLAG_DIRTY 0x0008 /* dquot is dirty */ #define XFS_DQFLAG_DIRTY 0x0008 /* dquot is dirty */
#define XFS_DQFLAG_FREEING 0x0010 /* dquot is being torn down */ #define XFS_DQFLAG_FREEING 0x0010 /* dquot is being torn down */
#define XFS_DQ_ALLTYPES (XFS_DQ_USER|XFS_DQ_PROJ|XFS_DQ_GROUP) #define XFS_DQTYPE_REC_MASK (XFS_DQTYPE_USER | \
XFS_DQTYPE_PROJ | \
XFS_DQTYPE_GROUP)
#define XFS_DQFLAG_STRINGS \ #define XFS_DQFLAG_STRINGS \
{ XFS_DQ_USER, "USER" }, \ { XFS_DQTYPE_USER, "USER" }, \
{ XFS_DQ_PROJ, "PROJ" }, \ { XFS_DQTYPE_PROJ, "PROJ" }, \
{ XFS_DQ_GROUP, "GROUP" }, \ { XFS_DQTYPE_GROUP, "GROUP" }, \
{ XFS_DQFLAG_DIRTY, "DIRTY" }, \ { XFS_DQFLAG_DIRTY, "DIRTY" }, \
{ XFS_DQFLAG_FREEING, "FREEING" } { XFS_DQFLAG_FREEING, "FREEING" }
......
...@@ -24,11 +24,11 @@ xchk_quota_to_dqtype( ...@@ -24,11 +24,11 @@ xchk_quota_to_dqtype(
{ {
switch (sc->sm->sm_type) { switch (sc->sm->sm_type) {
case XFS_SCRUB_TYPE_UQUOTA: case XFS_SCRUB_TYPE_UQUOTA:
return XFS_DQ_USER; return XFS_DQTYPE_USER;
case XFS_SCRUB_TYPE_GQUOTA: case XFS_SCRUB_TYPE_GQUOTA:
return XFS_DQ_GROUP; return XFS_DQTYPE_GROUP;
case XFS_SCRUB_TYPE_PQUOTA: case XFS_SCRUB_TYPE_PQUOTA:
return XFS_DQ_PROJ; return XFS_DQTYPE_PROJ;
default: default:
return 0; return 0;
} }
......
...@@ -939,11 +939,11 @@ xrep_ino_dqattach( ...@@ -939,11 +939,11 @@ xrep_ino_dqattach(
"inode %llu repair encountered quota error %d, quotacheck forced.", "inode %llu repair encountered quota error %d, quotacheck forced.",
(unsigned long long)sc->ip->i_ino, error); (unsigned long long)sc->ip->i_ino, error);
if (XFS_IS_UQUOTA_ON(sc->mp) && !sc->ip->i_udquot) if (XFS_IS_UQUOTA_ON(sc->mp) && !sc->ip->i_udquot)
xrep_force_quotacheck(sc, XFS_DQ_USER); xrep_force_quotacheck(sc, XFS_DQTYPE_USER);
if (XFS_IS_GQUOTA_ON(sc->mp) && !sc->ip->i_gdquot) if (XFS_IS_GQUOTA_ON(sc->mp) && !sc->ip->i_gdquot)
xrep_force_quotacheck(sc, XFS_DQ_GROUP); xrep_force_quotacheck(sc, XFS_DQTYPE_GROUP);
if (XFS_IS_PQUOTA_ON(sc->mp) && !sc->ip->i_pdquot) if (XFS_IS_PQUOTA_ON(sc->mp) && !sc->ip->i_pdquot)
xrep_force_quotacheck(sc, XFS_DQ_PROJ); xrep_force_quotacheck(sc, XFS_DQTYPE_PROJ);
/* fall through */ /* fall through */
case -ESRCH: case -ESRCH:
error = 0; error = 0;
......
...@@ -546,11 +546,11 @@ xlog_recover_do_dquot_buffer( ...@@ -546,11 +546,11 @@ xlog_recover_do_dquot_buffer(
type = 0; type = 0;
if (buf_f->blf_flags & XFS_BLF_UDQUOT_BUF) if (buf_f->blf_flags & XFS_BLF_UDQUOT_BUF)
type |= XFS_DQ_USER; type |= XFS_DQTYPE_USER;
if (buf_f->blf_flags & XFS_BLF_PDQUOT_BUF) if (buf_f->blf_flags & XFS_BLF_PDQUOT_BUF)
type |= XFS_DQ_PROJ; type |= XFS_DQTYPE_PROJ;
if (buf_f->blf_flags & XFS_BLF_GDQUOT_BUF) if (buf_f->blf_flags & XFS_BLF_GDQUOT_BUF)
type |= XFS_DQ_GROUP; type |= XFS_DQTYPE_GROUP;
/* /*
* This type of quotas was turned off, so ignore this buffer * This type of quotas was turned off, so ignore this buffer
*/ */
......
...@@ -190,10 +190,10 @@ xfs_qm_init_dquot_blk( ...@@ -190,10 +190,10 @@ xfs_qm_init_dquot_blk(
} }
} }
if (type & XFS_DQ_USER) { if (type & XFS_DQTYPE_USER) {
qflag = XFS_UQUOTA_CHKD; qflag = XFS_UQUOTA_CHKD;
blftype = XFS_BLF_UDQUOT_BUF; blftype = XFS_BLF_UDQUOT_BUF;
} else if (type & XFS_DQ_PROJ) { } else if (type & XFS_DQTYPE_PROJ) {
qflag = XFS_PQUOTA_CHKD; qflag = XFS_PQUOTA_CHKD;
blftype = XFS_BLF_PDQUOT_BUF; blftype = XFS_BLF_PDQUOT_BUF;
} else { } else {
...@@ -311,7 +311,7 @@ xfs_dquot_disk_alloc( ...@@ -311,7 +311,7 @@ xfs_dquot_disk_alloc(
* the entire thing. * the entire thing.
*/ */
xfs_qm_init_dquot_blk(tp, mp, dqp->q_id, xfs_qm_init_dquot_blk(tp, mp, dqp->q_id,
dqp->dq_flags & XFS_DQ_ALLTYPES, bp); dqp->dq_flags & XFS_DQTYPE_REC_MASK, bp);
xfs_buf_set_ref(bp, XFS_DQUOT_REF); xfs_buf_set_ref(bp, XFS_DQUOT_REF);
/* /*
...@@ -448,13 +448,13 @@ xfs_dquot_alloc( ...@@ -448,13 +448,13 @@ xfs_dquot_alloc(
* quotas. * quotas.
*/ */
switch (type) { switch (type) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
/* uses the default lock class */ /* uses the default lock class */
break; break;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
lockdep_set_class(&dqp->q_qlock, &xfs_dquot_group_class); lockdep_set_class(&dqp->q_qlock, &xfs_dquot_group_class);
break; break;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
lockdep_set_class(&dqp->q_qlock, &xfs_dquot_project_class); lockdep_set_class(&dqp->q_qlock, &xfs_dquot_project_class);
break; break;
default: default:
...@@ -480,7 +480,7 @@ xfs_dquot_from_disk( ...@@ -480,7 +480,7 @@ xfs_dquot_from_disk(
* Ensure that we got the type and ID we were looking for. * Ensure that we got the type and ID we were looking for.
* Everything else was checked by the dquot buffer verifier. * Everything else was checked by the dquot buffer verifier.
*/ */
if ((ddqp->d_flags & XFS_DQ_ALLTYPES) != dqp->dq_flags || if ((ddqp->d_flags & XFS_DQTYPE_REC_MASK) != dqp->dq_flags ||
be32_to_cpu(ddqp->d_id) != dqp->q_id) { be32_to_cpu(ddqp->d_id) != dqp->q_id) {
xfs_alert_tag(bp->b_mount, XFS_PTAG_VERIFIER_ERROR, xfs_alert_tag(bp->b_mount, XFS_PTAG_VERIFIER_ERROR,
"Metadata corruption detected at %pS, quota %u", "Metadata corruption detected at %pS, quota %u",
...@@ -530,7 +530,7 @@ xfs_dquot_to_disk( ...@@ -530,7 +530,7 @@ xfs_dquot_to_disk(
{ {
ddqp->d_magic = cpu_to_be16(XFS_DQUOT_MAGIC); ddqp->d_magic = cpu_to_be16(XFS_DQUOT_MAGIC);
ddqp->d_version = XFS_DQUOT_VERSION; ddqp->d_version = XFS_DQUOT_VERSION;
ddqp->d_flags = dqp->dq_flags & XFS_DQ_ALLTYPES; ddqp->d_flags = dqp->dq_flags & XFS_DQTYPE_REC_MASK;
ddqp->d_id = cpu_to_be32(dqp->q_id); ddqp->d_id = cpu_to_be32(dqp->q_id);
ddqp->d_pad0 = 0; ddqp->d_pad0 = 0;
ddqp->d_pad = 0; ddqp->d_pad = 0;
...@@ -779,15 +779,15 @@ xfs_qm_dqget_checks( ...@@ -779,15 +779,15 @@ xfs_qm_dqget_checks(
return -ESRCH; return -ESRCH;
switch (type) { switch (type) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
if (!XFS_IS_UQUOTA_ON(mp)) if (!XFS_IS_UQUOTA_ON(mp))
return -ESRCH; return -ESRCH;
return 0; return 0;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
if (!XFS_IS_GQUOTA_ON(mp)) if (!XFS_IS_GQUOTA_ON(mp))
return -ESRCH; return -ESRCH;
return 0; return 0;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
if (!XFS_IS_PQUOTA_ON(mp)) if (!XFS_IS_PQUOTA_ON(mp))
return -ESRCH; return -ESRCH;
return 0; return 0;
...@@ -874,11 +874,11 @@ xfs_qm_id_for_quotatype( ...@@ -874,11 +874,11 @@ xfs_qm_id_for_quotatype(
uint type) uint type)
{ {
switch (type) { switch (type) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return i_uid_read(VFS_I(ip)); return i_uid_read(VFS_I(ip));
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return i_gid_read(VFS_I(ip)); return i_gid_read(VFS_I(ip));
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return ip->i_d.di_projid; return ip->i_d.di_projid;
} }
ASSERT(0); ASSERT(0);
...@@ -1114,11 +1114,11 @@ static xfs_failaddr_t ...@@ -1114,11 +1114,11 @@ static xfs_failaddr_t
xfs_qm_dqflush_check( xfs_qm_dqflush_check(
struct xfs_dquot *dqp) struct xfs_dquot *dqp)
{ {
__u8 type = dqp->dq_flags & XFS_DQ_ALLTYPES; __u8 type = dqp->dq_flags & XFS_DQTYPE_REC_MASK;
if (type != XFS_DQ_USER && if (type != XFS_DQTYPE_USER &&
type != XFS_DQ_GROUP && type != XFS_DQTYPE_GROUP &&
type != XFS_DQ_PROJ) type != XFS_DQTYPE_PROJ)
return __this_address; return __this_address;
if (dqp->q_id == 0) if (dqp->q_id == 0)
......
...@@ -130,12 +130,12 @@ static inline void xfs_dqunlock(struct xfs_dquot *dqp) ...@@ -130,12 +130,12 @@ static inline void xfs_dqunlock(struct xfs_dquot *dqp)
static inline int xfs_this_quota_on(struct xfs_mount *mp, int type) static inline int xfs_this_quota_on(struct xfs_mount *mp, int type)
{ {
switch (type & XFS_DQ_ALLTYPES) { switch (type & XFS_DQTYPE_REC_MASK) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return XFS_IS_UQUOTA_ON(mp); return XFS_IS_UQUOTA_ON(mp);
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return XFS_IS_GQUOTA_ON(mp); return XFS_IS_GQUOTA_ON(mp);
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return XFS_IS_PQUOTA_ON(mp); return XFS_IS_PQUOTA_ON(mp);
default: default:
return 0; return 0;
...@@ -144,12 +144,12 @@ static inline int xfs_this_quota_on(struct xfs_mount *mp, int type) ...@@ -144,12 +144,12 @@ static inline int xfs_this_quota_on(struct xfs_mount *mp, int type)
static inline struct xfs_dquot *xfs_inode_dquot(struct xfs_inode *ip, int type) static inline struct xfs_dquot *xfs_inode_dquot(struct xfs_inode *ip, int type)
{ {
switch (type & XFS_DQ_ALLTYPES) { switch (type & XFS_DQTYPE_REC_MASK) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return ip->i_udquot; return ip->i_udquot;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return ip->i_gdquot; return ip->i_gdquot;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return ip->i_pdquot; return ip->i_pdquot;
default: default:
return NULL; return NULL;
...@@ -175,9 +175,9 @@ void xfs_dquot_to_disk(struct xfs_disk_dquot *ddqp, struct xfs_dquot *dqp); ...@@ -175,9 +175,9 @@ void xfs_dquot_to_disk(struct xfs_disk_dquot *ddqp, struct xfs_dquot *dqp);
#define XFS_DQ_IS_LOCKED(dqp) (mutex_is_locked(&((dqp)->q_qlock))) #define XFS_DQ_IS_LOCKED(dqp) (mutex_is_locked(&((dqp)->q_qlock)))
#define XFS_DQ_IS_DIRTY(dqp) ((dqp)->q_flags & XFS_DQFLAG_DIRTY) #define XFS_DQ_IS_DIRTY(dqp) ((dqp)->q_flags & XFS_DQFLAG_DIRTY)
#define XFS_QM_ISUDQ(dqp) ((dqp)->dq_flags & XFS_DQ_USER) #define XFS_QM_ISUDQ(dqp) ((dqp)->dq_flags & XFS_DQTYPE_USER)
#define XFS_QM_ISPDQ(dqp) ((dqp)->dq_flags & XFS_DQ_PROJ) #define XFS_QM_ISPDQ(dqp) ((dqp)->dq_flags & XFS_DQTYPE_PROJ)
#define XFS_QM_ISGDQ(dqp) ((dqp)->dq_flags & XFS_DQ_GROUP) #define XFS_QM_ISGDQ(dqp) ((dqp)->dq_flags & XFS_DQTYPE_GROUP)
void xfs_qm_dqdestroy(struct xfs_dquot *dqp); void xfs_qm_dqdestroy(struct xfs_dquot *dqp);
int xfs_qm_dqflush(struct xfs_dquot *dqp, struct xfs_buf **bpp); int xfs_qm_dqflush(struct xfs_dquot *dqp, struct xfs_buf **bpp);
......
...@@ -39,7 +39,7 @@ xlog_recover_dquot_ra_pass2( ...@@ -39,7 +39,7 @@ xlog_recover_dquot_ra_pass2(
if (item->ri_buf[1].i_len < sizeof(struct xfs_disk_dquot)) if (item->ri_buf[1].i_len < sizeof(struct xfs_disk_dquot))
return; return;
type = recddq->d_flags & (XFS_DQ_USER | XFS_DQ_PROJ | XFS_DQ_GROUP); type = recddq->d_flags & (XFS_DQTYPE_USER | XFS_DQTYPE_PROJ | XFS_DQTYPE_GROUP);
ASSERT(type); ASSERT(type);
if (log->l_quotaoffs_flag & type) if (log->l_quotaoffs_flag & type)
return; return;
...@@ -91,7 +91,7 @@ xlog_recover_dquot_commit_pass2( ...@@ -91,7 +91,7 @@ xlog_recover_dquot_commit_pass2(
/* /*
* This type of quotas was turned off, so ignore this record. * This type of quotas was turned off, so ignore this record.
*/ */
type = recddq->d_flags & (XFS_DQ_USER | XFS_DQ_PROJ | XFS_DQ_GROUP); type = recddq->d_flags & (XFS_DQTYPE_USER | XFS_DQTYPE_PROJ | XFS_DQTYPE_GROUP);
ASSERT(type); ASSERT(type);
if (log->l_quotaoffs_flag & type) if (log->l_quotaoffs_flag & type)
return 0; return 0;
...@@ -185,11 +185,11 @@ xlog_recover_quotaoff_commit_pass1( ...@@ -185,11 +185,11 @@ xlog_recover_quotaoff_commit_pass1(
* group/project quotaoff or both. * group/project quotaoff or both.
*/ */
if (qoff_f->qf_flags & XFS_UQUOTA_ACCT) if (qoff_f->qf_flags & XFS_UQUOTA_ACCT)
log->l_quotaoffs_flag |= XFS_DQ_USER; log->l_quotaoffs_flag |= XFS_DQTYPE_USER;
if (qoff_f->qf_flags & XFS_PQUOTA_ACCT) if (qoff_f->qf_flags & XFS_PQUOTA_ACCT)
log->l_quotaoffs_flag |= XFS_DQ_PROJ; log->l_quotaoffs_flag |= XFS_DQTYPE_PROJ;
if (qoff_f->qf_flags & XFS_GQUOTA_ACCT) if (qoff_f->qf_flags & XFS_GQUOTA_ACCT)
log->l_quotaoffs_flag |= XFS_DQ_GROUP; log->l_quotaoffs_flag |= XFS_DQTYPE_GROUP;
return 0; return 0;
} }
......
...@@ -1424,7 +1424,7 @@ __xfs_inode_free_quota_eofblocks( ...@@ -1424,7 +1424,7 @@ __xfs_inode_free_quota_eofblocks(
eofb.eof_flags = XFS_EOF_FLAGS_UNION|XFS_EOF_FLAGS_SYNC; eofb.eof_flags = XFS_EOF_FLAGS_UNION|XFS_EOF_FLAGS_SYNC;
if (XFS_IS_UQUOTA_ENFORCED(ip->i_mount)) { if (XFS_IS_UQUOTA_ENFORCED(ip->i_mount)) {
dq = xfs_inode_dquot(ip, XFS_DQ_USER); dq = xfs_inode_dquot(ip, XFS_DQTYPE_USER);
if (dq && xfs_dquot_lowsp(dq)) { if (dq && xfs_dquot_lowsp(dq)) {
eofb.eof_uid = VFS_I(ip)->i_uid; eofb.eof_uid = VFS_I(ip)->i_uid;
eofb.eof_flags |= XFS_EOF_FLAGS_UID; eofb.eof_flags |= XFS_EOF_FLAGS_UID;
...@@ -1433,7 +1433,7 @@ __xfs_inode_free_quota_eofblocks( ...@@ -1433,7 +1433,7 @@ __xfs_inode_free_quota_eofblocks(
} }
if (XFS_IS_GQUOTA_ENFORCED(ip->i_mount)) { if (XFS_IS_GQUOTA_ENFORCED(ip->i_mount)) {
dq = xfs_inode_dquot(ip, XFS_DQ_GROUP); dq = xfs_inode_dquot(ip, XFS_DQTYPE_GROUP);
if (dq && xfs_dquot_lowsp(dq)) { if (dq && xfs_dquot_lowsp(dq)) {
eofb.eof_gid = VFS_I(ip)->i_gid; eofb.eof_gid = VFS_I(ip)->i_gid;
eofb.eof_flags |= XFS_EOF_FLAGS_GID; eofb.eof_flags |= XFS_EOF_FLAGS_GID;
......
...@@ -450,14 +450,14 @@ xfs_iomap_prealloc_size( ...@@ -450,14 +450,14 @@ xfs_iomap_prealloc_size(
* Check each quota to cap the prealloc size, provide a shift value to * Check each quota to cap the prealloc size, provide a shift value to
* throttle with and adjust amount of available space. * throttle with and adjust amount of available space.
*/ */
if (xfs_quota_need_throttle(ip, XFS_DQ_USER, alloc_blocks)) if (xfs_quota_need_throttle(ip, XFS_DQTYPE_USER, alloc_blocks))
xfs_quota_calc_throttle(ip, XFS_DQ_USER, &qblocks, &qshift, xfs_quota_calc_throttle(ip, XFS_DQTYPE_USER, &qblocks, &qshift,
&freesp); &freesp);
if (xfs_quota_need_throttle(ip, XFS_DQ_GROUP, alloc_blocks)) if (xfs_quota_need_throttle(ip, XFS_DQTYPE_GROUP, alloc_blocks))
xfs_quota_calc_throttle(ip, XFS_DQ_GROUP, &qblocks, &qshift, xfs_quota_calc_throttle(ip, XFS_DQTYPE_GROUP, &qblocks, &qshift,
&freesp); &freesp);
if (xfs_quota_need_throttle(ip, XFS_DQ_PROJ, alloc_blocks)) if (xfs_quota_need_throttle(ip, XFS_DQTYPE_PROJ, alloc_blocks))
xfs_quota_calc_throttle(ip, XFS_DQ_PROJ, &qblocks, &qshift, xfs_quota_calc_throttle(ip, XFS_DQTYPE_PROJ, &qblocks, &qshift,
&freesp); &freesp);
/* /*
......
...@@ -189,11 +189,11 @@ xfs_qm_dqpurge_all( ...@@ -189,11 +189,11 @@ xfs_qm_dqpurge_all(
uint flags) uint flags)
{ {
if (flags & XFS_QMOPT_UQUOTA) if (flags & XFS_QMOPT_UQUOTA)
xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL); xfs_qm_dquot_walk(mp, XFS_DQTYPE_USER, xfs_qm_dqpurge, NULL);
if (flags & XFS_QMOPT_GQUOTA) if (flags & XFS_QMOPT_GQUOTA)
xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL); xfs_qm_dquot_walk(mp, XFS_DQTYPE_GROUP, xfs_qm_dqpurge, NULL);
if (flags & XFS_QMOPT_PQUOTA) if (flags & XFS_QMOPT_PQUOTA)
xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL); xfs_qm_dquot_walk(mp, XFS_DQTYPE_PROJ, xfs_qm_dqpurge, NULL);
} }
/* /*
...@@ -331,7 +331,7 @@ xfs_qm_dqattach_locked( ...@@ -331,7 +331,7 @@ xfs_qm_dqattach_locked(
if (XFS_IS_UQUOTA_ON(mp) && !ip->i_udquot) { if (XFS_IS_UQUOTA_ON(mp) && !ip->i_udquot) {
error = xfs_qm_dqattach_one(ip, i_uid_read(VFS_I(ip)), error = xfs_qm_dqattach_one(ip, i_uid_read(VFS_I(ip)),
XFS_DQ_USER, doalloc, &ip->i_udquot); XFS_DQTYPE_USER, doalloc, &ip->i_udquot);
if (error) if (error)
goto done; goto done;
ASSERT(ip->i_udquot); ASSERT(ip->i_udquot);
...@@ -339,14 +339,14 @@ xfs_qm_dqattach_locked( ...@@ -339,14 +339,14 @@ xfs_qm_dqattach_locked(
if (XFS_IS_GQUOTA_ON(mp) && !ip->i_gdquot) { if (XFS_IS_GQUOTA_ON(mp) && !ip->i_gdquot) {
error = xfs_qm_dqattach_one(ip, i_gid_read(VFS_I(ip)), error = xfs_qm_dqattach_one(ip, i_gid_read(VFS_I(ip)),
XFS_DQ_GROUP, doalloc, &ip->i_gdquot); XFS_DQTYPE_GROUP, doalloc, &ip->i_gdquot);
if (error) if (error)
goto done; goto done;
ASSERT(ip->i_gdquot); ASSERT(ip->i_gdquot);
} }
if (XFS_IS_PQUOTA_ON(mp) && !ip->i_pdquot) { if (XFS_IS_PQUOTA_ON(mp) && !ip->i_pdquot) {
error = xfs_qm_dqattach_one(ip, ip->i_d.di_projid, XFS_DQ_PROJ, error = xfs_qm_dqattach_one(ip, ip->i_d.di_projid, XFS_DQTYPE_PROJ,
doalloc, &ip->i_pdquot); doalloc, &ip->i_pdquot);
if (error) if (error)
goto done; goto done;
...@@ -664,16 +664,16 @@ xfs_qm_init_quotainfo( ...@@ -664,16 +664,16 @@ xfs_qm_init_quotainfo(
mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD); mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
xfs_qm_init_timelimits(mp, XFS_DQ_USER); xfs_qm_init_timelimits(mp, XFS_DQTYPE_USER);
xfs_qm_init_timelimits(mp, XFS_DQ_GROUP); xfs_qm_init_timelimits(mp, XFS_DQTYPE_GROUP);
xfs_qm_init_timelimits(mp, XFS_DQ_PROJ); xfs_qm_init_timelimits(mp, XFS_DQTYPE_PROJ);
if (XFS_IS_UQUOTA_RUNNING(mp)) if (XFS_IS_UQUOTA_RUNNING(mp))
xfs_qm_set_defquota(mp, XFS_DQ_USER, qinf); xfs_qm_set_defquota(mp, XFS_DQTYPE_USER, qinf);
if (XFS_IS_GQUOTA_RUNNING(mp)) if (XFS_IS_GQUOTA_RUNNING(mp))
xfs_qm_set_defquota(mp, XFS_DQ_GROUP, qinf); xfs_qm_set_defquota(mp, XFS_DQTYPE_GROUP, qinf);
if (XFS_IS_PQUOTA_RUNNING(mp)) if (XFS_IS_PQUOTA_RUNNING(mp))
xfs_qm_set_defquota(mp, XFS_DQ_PROJ, qinf); xfs_qm_set_defquota(mp, XFS_DQTYPE_PROJ, qinf);
qinf->qi_shrinker.count_objects = xfs_qm_shrink_count; qinf->qi_shrinker.count_objects = xfs_qm_shrink_count;
qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan; qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan;
...@@ -855,7 +855,7 @@ xfs_qm_reset_dqcounts( ...@@ -855,7 +855,7 @@ xfs_qm_reset_dqcounts(
* xfs_dquot_verify. * xfs_dquot_verify.
*/ */
if (xfs_dqblk_verify(mp, &dqb[j], id + j) || if (xfs_dqblk_verify(mp, &dqb[j], id + j) ||
(dqb[j].dd_diskdq.d_flags & XFS_DQ_ALLTYPES) != type) (dqb[j].dd_diskdq.d_flags & XFS_DQTYPE_REC_MASK) != type)
xfs_dqblk_repair(mp, &dqb[j], id + j, type); xfs_dqblk_repair(mp, &dqb[j], id + j, type);
/* /*
...@@ -1176,21 +1176,21 @@ xfs_qm_dqusage_adjust( ...@@ -1176,21 +1176,21 @@ xfs_qm_dqusage_adjust(
* and quotaoffs don't race. (Quotachecks happen at mount time only). * and quotaoffs don't race. (Quotachecks happen at mount time only).
*/ */
if (XFS_IS_UQUOTA_ON(mp)) { if (XFS_IS_UQUOTA_ON(mp)) {
error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQ_USER, nblks, error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQTYPE_USER, nblks,
rtblks); rtblks);
if (error) if (error)
goto error0; goto error0;
} }
if (XFS_IS_GQUOTA_ON(mp)) { if (XFS_IS_GQUOTA_ON(mp)) {
error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQ_GROUP, nblks, error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQTYPE_GROUP, nblks,
rtblks); rtblks);
if (error) if (error)
goto error0; goto error0;
} }
if (XFS_IS_PQUOTA_ON(mp)) { if (XFS_IS_PQUOTA_ON(mp)) {
error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQ_PROJ, nblks, error = xfs_qm_quotacheck_dqadjust(ip, XFS_DQTYPE_PROJ, nblks,
rtblks); rtblks);
if (error) if (error)
goto error0; goto error0;
...@@ -1281,7 +1281,7 @@ xfs_qm_quotacheck( ...@@ -1281,7 +1281,7 @@ xfs_qm_quotacheck(
* We don't log our changes till later. * We don't log our changes till later.
*/ */
if (uip) { if (uip) {
error = xfs_qm_reset_dqcounts_buf(mp, uip, XFS_DQ_USER, error = xfs_qm_reset_dqcounts_buf(mp, uip, XFS_DQTYPE_USER,
&buffer_list); &buffer_list);
if (error) if (error)
goto error_return; goto error_return;
...@@ -1289,7 +1289,7 @@ xfs_qm_quotacheck( ...@@ -1289,7 +1289,7 @@ xfs_qm_quotacheck(
} }
if (gip) { if (gip) {
error = xfs_qm_reset_dqcounts_buf(mp, gip, XFS_DQ_GROUP, error = xfs_qm_reset_dqcounts_buf(mp, gip, XFS_DQTYPE_GROUP,
&buffer_list); &buffer_list);
if (error) if (error)
goto error_return; goto error_return;
...@@ -1297,7 +1297,7 @@ xfs_qm_quotacheck( ...@@ -1297,7 +1297,7 @@ xfs_qm_quotacheck(
} }
if (pip) { if (pip) {
error = xfs_qm_reset_dqcounts_buf(mp, pip, XFS_DQ_PROJ, error = xfs_qm_reset_dqcounts_buf(mp, pip, XFS_DQTYPE_PROJ,
&buffer_list); &buffer_list);
if (error) if (error)
goto error_return; goto error_return;
...@@ -1314,17 +1314,17 @@ xfs_qm_quotacheck( ...@@ -1314,17 +1314,17 @@ xfs_qm_quotacheck(
* down to disk buffers if everything was updated successfully. * down to disk buffers if everything was updated successfully.
*/ */
if (XFS_IS_UQUOTA_ON(mp)) { if (XFS_IS_UQUOTA_ON(mp)) {
error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one, error = xfs_qm_dquot_walk(mp, XFS_DQTYPE_USER, xfs_qm_flush_one,
&buffer_list); &buffer_list);
} }
if (XFS_IS_GQUOTA_ON(mp)) { if (XFS_IS_GQUOTA_ON(mp)) {
error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one, error2 = xfs_qm_dquot_walk(mp, XFS_DQTYPE_GROUP, xfs_qm_flush_one,
&buffer_list); &buffer_list);
if (!error) if (!error)
error = error2; error = error2;
} }
if (XFS_IS_PQUOTA_ON(mp)) { if (XFS_IS_PQUOTA_ON(mp)) {
error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one, error2 = xfs_qm_dquot_walk(mp, XFS_DQTYPE_PROJ, xfs_qm_flush_one,
&buffer_list); &buffer_list);
if (!error) if (!error)
error = error2; error = error2;
...@@ -1662,7 +1662,7 @@ xfs_qm_vop_dqalloc( ...@@ -1662,7 +1662,7 @@ xfs_qm_vop_dqalloc(
*/ */
xfs_iunlock(ip, lockflags); xfs_iunlock(ip, lockflags);
error = xfs_qm_dqget(mp, from_kuid(user_ns, uid), error = xfs_qm_dqget(mp, from_kuid(user_ns, uid),
XFS_DQ_USER, true, &uq); XFS_DQTYPE_USER, true, &uq);
if (error) { if (error) {
ASSERT(error != -ENOENT); ASSERT(error != -ENOENT);
return error; return error;
...@@ -1686,7 +1686,7 @@ xfs_qm_vop_dqalloc( ...@@ -1686,7 +1686,7 @@ xfs_qm_vop_dqalloc(
if (!gid_eq(inode->i_gid, gid)) { if (!gid_eq(inode->i_gid, gid)) {
xfs_iunlock(ip, lockflags); xfs_iunlock(ip, lockflags);
error = xfs_qm_dqget(mp, from_kgid(user_ns, gid), error = xfs_qm_dqget(mp, from_kgid(user_ns, gid),
XFS_DQ_GROUP, true, &gq); XFS_DQTYPE_GROUP, true, &gq);
if (error) { if (error) {
ASSERT(error != -ENOENT); ASSERT(error != -ENOENT);
goto error_rele; goto error_rele;
...@@ -1702,8 +1702,8 @@ xfs_qm_vop_dqalloc( ...@@ -1702,8 +1702,8 @@ xfs_qm_vop_dqalloc(
if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) { if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
if (ip->i_d.di_projid != prid) { if (ip->i_d.di_projid != prid) {
xfs_iunlock(ip, lockflags); xfs_iunlock(ip, lockflags);
error = xfs_qm_dqget(mp, (xfs_dqid_t)prid, XFS_DQ_PROJ, error = xfs_qm_dqget(mp, (xfs_dqid_t)prid,
true, &pq); XFS_DQTYPE_PROJ, true, &pq);
if (error) { if (error) {
ASSERT(error != -ENOENT); ASSERT(error != -ENOENT);
goto error_rele; goto error_rele;
......
...@@ -73,11 +73,11 @@ xfs_dquot_tree( ...@@ -73,11 +73,11 @@ xfs_dquot_tree(
int type) int type)
{ {
switch (type) { switch (type) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return &qi->qi_uquota_tree; return &qi->qi_uquota_tree;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return &qi->qi_gquota_tree; return &qi->qi_gquota_tree;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return &qi->qi_pquota_tree; return &qi->qi_pquota_tree;
default: default:
ASSERT(0); ASSERT(0);
...@@ -88,12 +88,12 @@ xfs_dquot_tree( ...@@ -88,12 +88,12 @@ xfs_dquot_tree(
static inline struct xfs_inode * static inline struct xfs_inode *
xfs_quota_inode(xfs_mount_t *mp, uint dq_flags) xfs_quota_inode(xfs_mount_t *mp, uint dq_flags)
{ {
switch (dq_flags & XFS_DQ_ALLTYPES) { switch (dq_flags & XFS_DQTYPE_REC_MASK) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return mp->m_quotainfo->qi_uquotaip; return mp->m_quotainfo->qi_uquotaip;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return mp->m_quotainfo->qi_gquotaip; return mp->m_quotainfo->qi_gquotaip;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return mp->m_quotainfo->qi_pquotaip; return mp->m_quotainfo->qi_pquotaip;
default: default:
ASSERT(0); ASSERT(0);
...@@ -105,11 +105,11 @@ static inline int ...@@ -105,11 +105,11 @@ static inline int
xfs_dquot_type(struct xfs_dquot *dqp) xfs_dquot_type(struct xfs_dquot *dqp)
{ {
if (XFS_QM_ISUDQ(dqp)) if (XFS_QM_ISUDQ(dqp))
return XFS_DQ_USER; return XFS_DQTYPE_USER;
if (XFS_QM_ISGDQ(dqp)) if (XFS_QM_ISGDQ(dqp))
return XFS_DQ_GROUP; return XFS_DQTYPE_GROUP;
ASSERT(XFS_QM_ISPDQ(dqp)); ASSERT(XFS_QM_ISPDQ(dqp));
return XFS_DQ_PROJ; return XFS_DQTYPE_PROJ;
} }
extern void xfs_trans_mod_dquot(struct xfs_trans *tp, struct xfs_dquot *dqp, extern void xfs_trans_mod_dquot(struct xfs_trans *tp, struct xfs_dquot *dqp,
...@@ -166,11 +166,11 @@ static inline struct xfs_def_quota * ...@@ -166,11 +166,11 @@ static inline struct xfs_def_quota *
xfs_get_defquota(struct xfs_quotainfo *qi, int type) xfs_get_defquota(struct xfs_quotainfo *qi, int type)
{ {
switch (type) { switch (type) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return &qi->qi_usr_default; return &qi->qi_usr_default;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return &qi->qi_grp_default; return &qi->qi_grp_default;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return &qi->qi_prj_default; return &qi->qi_prj_default;
default: default:
ASSERT(0); ASSERT(0);
......
...@@ -60,7 +60,7 @@ xfs_qm_statvfs( ...@@ -60,7 +60,7 @@ xfs_qm_statvfs(
struct xfs_mount *mp = ip->i_mount; struct xfs_mount *mp = ip->i_mount;
struct xfs_dquot *dqp; struct xfs_dquot *dqp;
if (!xfs_qm_dqget(mp, ip->i_d.di_projid, XFS_DQ_PROJ, false, &dqp)) { if (!xfs_qm_dqget(mp, ip->i_d.di_projid, XFS_DQTYPE_PROJ, false, &dqp)) {
xfs_fill_statvfs_from_dquot(statp, dqp); xfs_fill_statvfs_from_dquot(statp, dqp);
xfs_qm_dqput(dqp); xfs_qm_dqput(dqp);
} }
......
...@@ -660,18 +660,18 @@ xfs_qm_scall_getquota_fill_qc( ...@@ -660,18 +660,18 @@ xfs_qm_scall_getquota_fill_qc(
* gets turned off. No need to confuse the user level code, * gets turned off. No need to confuse the user level code,
* so return zeroes in that case. * so return zeroes in that case.
*/ */
if ((!XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQ_USER) || if ((!XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_USER) ||
(!XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQ_GROUP) || (!XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_GROUP) ||
(!XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQ_PROJ)) { (!XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_PROJ)) {
dst->d_spc_timer = 0; dst->d_spc_timer = 0;
dst->d_ino_timer = 0; dst->d_ino_timer = 0;
dst->d_rt_spc_timer = 0; dst->d_rt_spc_timer = 0;
} }
#ifdef DEBUG #ifdef DEBUG
if (((XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQ_USER) || if (((XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_USER) ||
(XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQ_GROUP) || (XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_GROUP) ||
(XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQ_PROJ)) && (XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQTYPE_PROJ)) &&
dqp->q_id != 0) { dqp->q_id != 0) {
if ((dst->d_space > dst->d_spc_softlimit) && if ((dst->d_space > dst->d_spc_softlimit) &&
(dst->d_spc_softlimit > 0)) { (dst->d_spc_softlimit > 0)) {
......
...@@ -42,11 +42,11 @@ xfs_quota_chkd_flag( ...@@ -42,11 +42,11 @@ xfs_quota_chkd_flag(
uint dqtype) uint dqtype)
{ {
switch (dqtype) { switch (dqtype) {
case XFS_DQ_USER: case XFS_DQTYPE_USER:
return XFS_UQUOTA_CHKD; return XFS_UQUOTA_CHKD;
case XFS_DQ_GROUP: case XFS_DQTYPE_GROUP:
return XFS_GQUOTA_CHKD; return XFS_GQUOTA_CHKD;
case XFS_DQ_PROJ: case XFS_DQTYPE_PROJ:
return XFS_PQUOTA_CHKD; return XFS_PQUOTA_CHKD;
default: default:
return 0; return 0;
......
...@@ -90,11 +90,11 @@ xfs_quota_type(int type) ...@@ -90,11 +90,11 @@ xfs_quota_type(int type)
{ {
switch (type) { switch (type) {
case USRQUOTA: case USRQUOTA:
return XFS_DQ_USER; return XFS_DQTYPE_USER;
case GRPQUOTA: case GRPQUOTA:
return XFS_DQ_GROUP; return XFS_DQTYPE_GROUP;
default: default:
return XFS_DQ_PROJ; return XFS_DQTYPE_PROJ;
} }
} }
......
...@@ -553,9 +553,9 @@ xfs_quota_warn( ...@@ -553,9 +553,9 @@ xfs_quota_warn(
{ {
enum quota_type qtype; enum quota_type qtype;
if (dqp->dq_flags & XFS_DQ_PROJ) if (dqp->dq_flags & XFS_DQTYPE_PROJ)
qtype = PRJQUOTA; qtype = PRJQUOTA;
else if (dqp->dq_flags & XFS_DQ_USER) else if (dqp->dq_flags & XFS_DQTYPE_USER)
qtype = USRQUOTA; qtype = USRQUOTA;
else else
qtype = GRPQUOTA; qtype = GRPQUOTA;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment