2005-04-17 02:20:36 +04:00
/*
2005-11-02 06:59:41 +03:00
* Copyright ( c ) 2000 - 2003 Silicon Graphics , Inc .
* All Rights Reserved .
2005-04-17 02:20:36 +04:00
*
2005-11-02 06:59:41 +03:00
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License as
2005-04-17 02:20:36 +04:00
* published by the Free Software Foundation .
*
2005-11-02 06:59:41 +03:00
* This program is distributed in the hope that it would be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
2005-04-17 02:20:36 +04:00
*
2005-11-02 06:59:41 +03:00
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write the Free Software Foundation ,
* Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 USA
2005-04-17 02:20:36 +04:00
*/
# ifndef __XFS_QUOTA_PRIV_H__
# define __XFS_QUOTA_PRIV_H__
/*
* Number of bmaps that we ask from bmapi when doing a quotacheck .
* We make this restriction to keep the memory usage to a minimum .
*/
# define XFS_DQITER_MAP_SIZE 10
# define XFS_IS_DQUOT_UNINITIALIZED(dqp) ( \
! dqp - > q_core . d_blk_hardlimit & & \
! dqp - > q_core . d_blk_softlimit & & \
! dqp - > q_core . d_rtb_hardlimit & & \
! dqp - > q_core . d_rtb_softlimit & & \
! dqp - > q_core . d_ino_hardlimit & & \
! dqp - > q_core . d_ino_softlimit & & \
! dqp - > q_core . d_bcount & & \
! dqp - > q_core . d_rtbcount & & \
! dqp - > q_core . d_icount )
# define DQFLAGTO_TYPESTR(d) (((d)->dq_flags & XFS_DQ_USER) ? "USR" : \
2005-06-21 09:38:48 +04:00
( ( ( d ) - > dq_flags & XFS_DQ_GROUP ) ? " GRP " : \
( ( ( d ) - > dq_flags & XFS_DQ_PROJ ) ? " PRJ " : " ??? " ) ) )
2005-04-17 02:20:36 +04:00
# endif /* __XFS_QUOTA_PRIV_H__ */