Linux Audio

Check our new training course

Loading...
v3.15
 
  1/*
  2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  3 * All Rights Reserved.
  4 *
  5 * This program is free software; you can redistribute it and/or
  6 * modify it under the terms of the GNU General Public License as
  7 * published by the Free Software Foundation.
  8 *
  9 * This program is distributed in the hope that it would be useful,
 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12 * GNU General Public License for more details.
 13 *
 14 * You should have received a copy of the GNU General Public License
 15 * along with this program; if not, write the Free Software Foundation,
 16 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 17 */
 18#ifndef __XFS_QUOTA_H__
 19#define __XFS_QUOTA_H__
 20
 21#include "xfs_quota_defs.h"
 22
 23/*
 24 * Kernel only quota definitions and functions
 25 */
 26
 27struct xfs_trans;
 
 28
 29/*
 30 * This check is done typically without holding the inode lock;
 31 * that may seem racy, but it is harmless in the context that it is used.
 32 * The inode cannot go inactive as long a reference is kept, and
 33 * therefore if dquot(s) were attached, they'll stay consistent.
 34 * If, for example, the ownership of the inode changes while
 35 * we didn't have the inode locked, the appropriate dquot(s) will be
 36 * attached atomically.
 37 */
 38#define XFS_NOT_DQATTACHED(mp, ip) \
 39	((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
 40	 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
 41	 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
 42
 43#define XFS_QM_NEED_QUOTACHECK(mp) \
 44	((XFS_IS_UQUOTA_ON(mp) && \
 45		(mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
 46	 (XFS_IS_GQUOTA_ON(mp) && \
 47		(mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
 48	 (XFS_IS_PQUOTA_ON(mp) && \
 49		(mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
 50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 51/*
 52 * The structure kept inside the xfs_trans_t keep track of dquot changes
 53 * within a transaction and apply them later.
 54 */
 55typedef struct xfs_dqtrx {
 56	struct xfs_dquot *qt_dquot;	  /* the dquot this refers to */
 57	ulong		qt_blk_res;	  /* blks reserved on a dquot */
 58	ulong		qt_blk_res_used;  /* blks used from the reservation */
 59	ulong		qt_ino_res;	  /* inode reserved on a dquot */
 60	ulong		qt_ino_res_used;  /* inodes used from the reservation */
 61	long		qt_bcount_delta;  /* dquot blk count changes */
 62	long		qt_delbcnt_delta; /* delayed dquot blk count changes */
 63	long		qt_icount_delta;  /* dquot inode count changes */
 64	ulong		qt_rtblk_res;	  /* # blks reserved on a dquot */
 65	ulong		qt_rtblk_res_used;/* # blks used from reservation */
 66	long		qt_rtbcount_delta;/* dquot realtime blk changes */
 67	long		qt_delrtb_delta;  /* delayed RT blk count changes */
 68} xfs_dqtrx_t;
 
 
 69
 70#ifdef CONFIG_XFS_QUOTA
 71extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
 72extern void xfs_trans_free_dqinfo(struct xfs_trans *);
 73extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
 74		uint, long);
 75extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
 76extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
 77extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *,
 78		struct xfs_inode *, long, long, uint);
 79extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
 80		struct xfs_mount *, struct xfs_dquot *,
 81		struct xfs_dquot *, struct xfs_dquot *, long, long, uint);
 82
 83extern int xfs_qm_vop_dqalloc(struct xfs_inode *, xfs_dqid_t, xfs_dqid_t,
 84		prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
 85		struct xfs_dquot **);
 86extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
 87		struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
 88extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
 89extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
 90		struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
 91extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *,
 92		struct xfs_dquot *, struct xfs_dquot *,
 93		struct xfs_dquot *, uint);
 94extern int xfs_qm_dqattach(struct xfs_inode *, uint);
 95extern int xfs_qm_dqattach_locked(struct xfs_inode *, uint);
 96extern void xfs_qm_dqdetach(struct xfs_inode *);
 97extern void xfs_qm_dqrele(struct xfs_dquot *);
 98extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
 99extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
100extern void xfs_qm_mount_quotas(struct xfs_mount *);
101extern void xfs_qm_unmount(struct xfs_mount *);
102extern void xfs_qm_unmount_quotas(struct xfs_mount *);
103
 
 
104#else
105static inline int
106xfs_qm_vop_dqalloc(struct xfs_inode *ip, xfs_dqid_t uid, xfs_dqid_t gid,
107		prid_t prid, uint flags, struct xfs_dquot **udqp,
108		struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
109{
110	*udqp = NULL;
111	*gdqp = NULL;
112	*pdqp = NULL;
113	return 0;
114}
115#define xfs_trans_dup_dqinfo(tp, tp2)
116#define xfs_trans_free_dqinfo(tp)
117#define xfs_trans_mod_dquot_byino(tp, ip, fields, delta)
118#define xfs_trans_apply_dquot_deltas(tp)
119#define xfs_trans_unreserve_and_mod_dquots(tp)
120static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
121		struct xfs_inode *ip, long nblks, long ninos, uint flags)
122{
123	return 0;
124}
125static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
126		struct xfs_mount *mp, struct xfs_dquot *udqp,
127		struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
128		long nblks, long nions, uint flags)
129{
130	return 0;
131}
132#define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
133#define xfs_qm_vop_rename_dqattach(it)					(0)
134#define xfs_qm_vop_chown(tp, ip, old, new)				(NULL)
135#define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl)			(0)
136#define xfs_qm_dqattach(ip, fl)						(0)
137#define xfs_qm_dqattach_locked(ip, fl)					(0)
138#define xfs_qm_dqdetach(ip)
139#define xfs_qm_dqrele(d)
140#define xfs_qm_statvfs(ip, s)
141#define xfs_qm_newmount(mp, a, b)					(0)
142#define xfs_qm_mount_quotas(mp)
143#define xfs_qm_unmount(mp)
144#define xfs_qm_unmount_quotas(mp)
 
 
 
 
 
 
145#endif /* CONFIG_XFS_QUOTA */
146
147#define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \
148	xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags)
149#define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \
150	xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \
151				f | XFS_QMOPT_RES_REGBLKS)
152
153extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
154
155#endif	/* __XFS_QUOTA_H__ */
v5.9
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6#ifndef __XFS_QUOTA_H__
  7#define __XFS_QUOTA_H__
  8
  9#include "xfs_quota_defs.h"
 10
 11/*
 12 * Kernel only quota definitions and functions
 13 */
 14
 15struct xfs_trans;
 16struct xfs_buf;
 17
 18/*
 19 * This check is done typically without holding the inode lock;
 20 * that may seem racy, but it is harmless in the context that it is used.
 21 * The inode cannot go inactive as long a reference is kept, and
 22 * therefore if dquot(s) were attached, they'll stay consistent.
 23 * If, for example, the ownership of the inode changes while
 24 * we didn't have the inode locked, the appropriate dquot(s) will be
 25 * attached atomically.
 26 */
 27#define XFS_NOT_DQATTACHED(mp, ip) \
 28	((XFS_IS_UQUOTA_ON(mp) && (ip)->i_udquot == NULL) || \
 29	 (XFS_IS_GQUOTA_ON(mp) && (ip)->i_gdquot == NULL) || \
 30	 (XFS_IS_PQUOTA_ON(mp) && (ip)->i_pdquot == NULL))
 31
 32#define XFS_QM_NEED_QUOTACHECK(mp) \
 33	((XFS_IS_UQUOTA_ON(mp) && \
 34		(mp->m_sb.sb_qflags & XFS_UQUOTA_CHKD) == 0) || \
 35	 (XFS_IS_GQUOTA_ON(mp) && \
 36		(mp->m_sb.sb_qflags & XFS_GQUOTA_CHKD) == 0) || \
 37	 (XFS_IS_PQUOTA_ON(mp) && \
 38		(mp->m_sb.sb_qflags & XFS_PQUOTA_CHKD) == 0))
 39
 40static inline uint
 41xfs_quota_chkd_flag(
 42	xfs_dqtype_t		type)
 43{
 44	switch (type) {
 45	case XFS_DQTYPE_USER:
 46		return XFS_UQUOTA_CHKD;
 47	case XFS_DQTYPE_GROUP:
 48		return XFS_GQUOTA_CHKD;
 49	case XFS_DQTYPE_PROJ:
 50		return XFS_PQUOTA_CHKD;
 51	default:
 52		return 0;
 53	}
 54}
 55
 56/*
 57 * The structure kept inside the xfs_trans_t keep track of dquot changes
 58 * within a transaction and apply them later.
 59 */
 60struct xfs_dqtrx {
 61	struct xfs_dquot *qt_dquot;	  /* the dquot this refers to */
 62
 63	uint64_t	qt_blk_res;	  /* blks reserved on a dquot */
 64	int64_t		qt_bcount_delta;  /* dquot blk count changes */
 65	int64_t		qt_delbcnt_delta; /* delayed dquot blk count changes */
 66
 67	uint64_t	qt_rtblk_res;	  /* # blks reserved on a dquot */
 68	uint64_t	qt_rtblk_res_used;/* # blks used from reservation */
 69	int64_t		qt_rtbcount_delta;/* dquot realtime blk changes */
 70	int64_t		qt_delrtb_delta;  /* delayed RT blk count changes */
 71
 72	uint64_t	qt_ino_res;	  /* inode reserved on a dquot */
 73	uint64_t	qt_ino_res_used;  /* inodes used from the reservation */
 74	int64_t		qt_icount_delta;  /* dquot inode count changes */
 75};
 76
 77#ifdef CONFIG_XFS_QUOTA
 78extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *);
 79extern void xfs_trans_free_dqinfo(struct xfs_trans *);
 80extern void xfs_trans_mod_dquot_byino(struct xfs_trans *, struct xfs_inode *,
 81		uint, int64_t);
 82extern void xfs_trans_apply_dquot_deltas(struct xfs_trans *);
 83extern void xfs_trans_unreserve_and_mod_dquots(struct xfs_trans *);
 84extern int xfs_trans_reserve_quota_nblks(struct xfs_trans *,
 85		struct xfs_inode *, int64_t, long, uint);
 86extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
 87		struct xfs_mount *, struct xfs_dquot *,
 88		struct xfs_dquot *, struct xfs_dquot *, int64_t, long, uint);
 89
 90extern int xfs_qm_vop_dqalloc(struct xfs_inode *, kuid_t, kgid_t,
 91		prid_t, uint, struct xfs_dquot **, struct xfs_dquot **,
 92		struct xfs_dquot **);
 93extern void xfs_qm_vop_create_dqattach(struct xfs_trans *, struct xfs_inode *,
 94		struct xfs_dquot *, struct xfs_dquot *, struct xfs_dquot *);
 95extern int xfs_qm_vop_rename_dqattach(struct xfs_inode **);
 96extern struct xfs_dquot *xfs_qm_vop_chown(struct xfs_trans *,
 97		struct xfs_inode *, struct xfs_dquot **, struct xfs_dquot *);
 98extern int xfs_qm_vop_chown_reserve(struct xfs_trans *, struct xfs_inode *,
 99		struct xfs_dquot *, struct xfs_dquot *,
100		struct xfs_dquot *, uint);
101extern int xfs_qm_dqattach(struct xfs_inode *);
102extern int xfs_qm_dqattach_locked(struct xfs_inode *ip, bool doalloc);
103extern void xfs_qm_dqdetach(struct xfs_inode *);
104extern void xfs_qm_dqrele(struct xfs_dquot *);
105extern void xfs_qm_statvfs(struct xfs_inode *, struct kstatfs *);
106extern int xfs_qm_newmount(struct xfs_mount *, uint *, uint *);
107extern void xfs_qm_mount_quotas(struct xfs_mount *);
108extern void xfs_qm_unmount(struct xfs_mount *);
109extern void xfs_qm_unmount_quotas(struct xfs_mount *);
110
111void		xfs_dquot_done(struct xfs_buf *);
112
113#else
114static inline int
115xfs_qm_vop_dqalloc(struct xfs_inode *ip, kuid_t kuid, kgid_t kgid,
116		prid_t prid, uint flags, struct xfs_dquot **udqp,
117		struct xfs_dquot **gdqp, struct xfs_dquot **pdqp)
118{
119	*udqp = NULL;
120	*gdqp = NULL;
121	*pdqp = NULL;
122	return 0;
123}
124#define xfs_trans_dup_dqinfo(tp, tp2)
125#define xfs_trans_free_dqinfo(tp)
126#define xfs_trans_mod_dquot_byino(tp, ip, fields, delta)
127#define xfs_trans_apply_dquot_deltas(tp)
128#define xfs_trans_unreserve_and_mod_dquots(tp)
129static inline int xfs_trans_reserve_quota_nblks(struct xfs_trans *tp,
130		struct xfs_inode *ip, int64_t nblks, long ninos, uint flags)
131{
132	return 0;
133}
134static inline int xfs_trans_reserve_quota_bydquots(struct xfs_trans *tp,
135		struct xfs_mount *mp, struct xfs_dquot *udqp,
136		struct xfs_dquot *gdqp, struct xfs_dquot *pdqp,
137		int64_t nblks, long nions, uint flags)
138{
139	return 0;
140}
141#define xfs_qm_vop_create_dqattach(tp, ip, u, g, p)
142#define xfs_qm_vop_rename_dqattach(it)					(0)
143#define xfs_qm_vop_chown(tp, ip, old, new)				(NULL)
144#define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl)			(0)
145#define xfs_qm_dqattach(ip)						(0)
146#define xfs_qm_dqattach_locked(ip, fl)					(0)
147#define xfs_qm_dqdetach(ip)
148#define xfs_qm_dqrele(d)
149#define xfs_qm_statvfs(ip, s)
150#define xfs_qm_newmount(mp, a, b)					(0)
151#define xfs_qm_mount_quotas(mp)
152#define xfs_qm_unmount(mp)
153#define xfs_qm_unmount_quotas(mp)
154
155static inline void xfs_dquot_done(struct xfs_buf *bp)
156{
157	return;
158}
159
160#endif /* CONFIG_XFS_QUOTA */
161
162#define xfs_trans_unreserve_quota_nblks(tp, ip, nblks, ninos, flags) \
163	xfs_trans_reserve_quota_nblks(tp, ip, -(nblks), -(ninos), flags)
164#define xfs_trans_reserve_quota(tp, mp, ud, gd, pd, nb, ni, f) \
165	xfs_trans_reserve_quota_bydquots(tp, mp, ud, gd, pd, nb, ni, \
166				f | XFS_QMOPT_RES_REGBLKS)
167
168extern int xfs_mount_reset_sbqflags(struct xfs_mount *);
169
170#endif	/* __XFS_QUOTA_H__ */