2 * Copyright (c) 2008, Christoph Hellwig
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.
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.
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
19 #include "xfs_dmapi.h"
23 #include "xfs_mount.h"
24 #include "xfs_quota.h"
26 #include "xfs_trans.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_inode.h"
29 #include "quota/xfs_qm.h"
30 #include <linux/quota.h>
34 xfs_quota_type(int type)
48 struct super_block *sb,
51 struct xfs_mount *mp = XFS_M(sb);
53 if (!XFS_IS_QUOTA_RUNNING(mp))
55 return -xfs_sync_inodes(mp, SYNC_DELWRI);
60 struct super_block *sb,
61 struct fs_quota_stat *fqs)
63 struct xfs_mount *mp = XFS_M(sb);
65 if (!XFS_IS_QUOTA_RUNNING(mp))
67 return -xfs_qm_scall_getqstat(mp, fqs);
72 struct super_block *sb,
76 struct xfs_mount *mp = XFS_M(sb);
77 unsigned int flags = 0;
79 if (sb->s_flags & MS_RDONLY)
81 if (!XFS_IS_QUOTA_RUNNING(mp))
83 if (!capable(CAP_SYS_ADMIN))
86 if (uflags & XFS_QUOTA_UDQ_ACCT)
87 flags |= XFS_UQUOTA_ACCT;
88 if (uflags & XFS_QUOTA_PDQ_ACCT)
89 flags |= XFS_PQUOTA_ACCT;
90 if (uflags & XFS_QUOTA_GDQ_ACCT)
91 flags |= XFS_GQUOTA_ACCT;
92 if (uflags & XFS_QUOTA_UDQ_ENFD)
93 flags |= XFS_UQUOTA_ENFD;
94 if (uflags & (XFS_QUOTA_PDQ_ENFD|XFS_QUOTA_GDQ_ENFD))
95 flags |= XFS_OQUOTA_ENFD;
99 return -xfs_qm_scall_quotaon(mp, flags);
101 if (!XFS_IS_QUOTA_ON(mp))
103 return -xfs_qm_scall_quotaoff(mp, flags);
105 if (XFS_IS_QUOTA_ON(mp))
107 return -xfs_qm_scall_trunc_qfiles(mp, flags);
115 struct super_block *sb,
118 struct fs_disk_quota *fdq)
120 struct xfs_mount *mp = XFS_M(sb);
122 if (!XFS_IS_QUOTA_RUNNING(mp))
124 if (!XFS_IS_QUOTA_ON(mp))
127 return -xfs_qm_scall_getquota(mp, id, xfs_quota_type(type), fdq);
132 struct super_block *sb,
135 struct fs_disk_quota *fdq)
137 struct xfs_mount *mp = XFS_M(sb);
139 if (sb->s_flags & MS_RDONLY)
141 if (!XFS_IS_QUOTA_RUNNING(mp))
143 if (!XFS_IS_QUOTA_ON(mp))
145 if (!capable(CAP_SYS_ADMIN))
148 return -xfs_qm_scall_setqlim(mp, id, xfs_quota_type(type), fdq);
151 struct quotactl_ops xfs_quotactl_operations = {
152 .quota_sync = xfs_fs_quota_sync,
153 .get_xstate = xfs_fs_get_xstate,
154 .set_xstate = xfs_fs_set_xstate,
155 .get_xquota = xfs_fs_get_xquota,
156 .set_xquota = xfs_fs_set_xquota,