Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Nathan Scott | 4ce3121 | 2005-11-02 14:59:41 +1100 | [diff] [blame] | 3 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 6 | |
| 7 | #include <linux/capability.h> |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include "xfs.h" |
| 10 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 11 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 12 | #include "xfs_format.h" |
| 13 | #include "xfs_log_format.h" |
| 14 | #include "xfs_trans_resv.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 15 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "xfs_sb.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs_inode.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 19 | #include "xfs_trans.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_error.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 21 | #include "xfs_quota.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_qm.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 23 | #include "xfs_trace.h" |
Dave Chinner | 6d8b79c | 2012-10-08 21:56:09 +1100 | [diff] [blame] | 24 | #include "xfs_icache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | STATIC int xfs_qm_log_quotaoff(xfs_mount_t *, xfs_qoff_logitem_t **, uint); |
| 27 | STATIC int xfs_qm_log_quotaoff_end(xfs_mount_t *, xfs_qoff_logitem_t *, |
| 28 | uint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * Turn off quota accounting and/or enforcement for all udquots and/or |
| 32 | * gdquots. Called only at unmount time. |
| 33 | * |
| 34 | * This assumes that there are no dquots of this file system cached |
| 35 | * incore, and modifies the ondisk dquot directly. Therefore, for example, |
| 36 | * it is an error to call this twice, without purging the cache. |
| 37 | */ |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 38 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | xfs_qm_scall_quotaoff( |
| 40 | xfs_mount_t *mp, |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 41 | uint flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 43 | struct xfs_quotainfo *q = mp->m_quotainfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | uint dqtype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | int error; |
| 46 | uint inactivate_flags; |
| 47 | xfs_qoff_logitem_t *qoffstart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
| 50 | * No file system can have quotas enabled on disk but not in core. |
| 51 | * Note that quota utilities (like quotaoff) _expect_ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 52 | * errno == -EEXIST here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | */ |
| 54 | if ((mp->m_qflags & flags) == 0) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 55 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | error = 0; |
| 57 | |
| 58 | flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD); |
| 59 | |
| 60 | /* |
| 61 | * We don't want to deal with two quotaoffs messing up each other, |
| 62 | * so we're going to serialize it. quotaoff isn't exactly a performance |
| 63 | * critical thing. |
| 64 | * If quotaoff, then we must be dealing with the root filesystem. |
| 65 | */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 66 | ASSERT(q); |
| 67 | mutex_lock(&q->qi_quotaofflock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | * If we're just turning off quota enforcement, change mp and go. |
| 71 | */ |
| 72 | if ((flags & XFS_ALL_QUOTA_ACCT) == 0) { |
| 73 | mp->m_qflags &= ~(flags); |
| 74 | |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 75 | spin_lock(&mp->m_sb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | mp->m_sb.sb_qflags = mp->m_qflags; |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 77 | spin_unlock(&mp->m_sb_lock); |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 78 | mutex_unlock(&q->qi_quotaofflock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* XXX what to do if error ? Revert back to old vals incore ? */ |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 81 | return xfs_sync_sb(mp, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | dqtype = 0; |
| 85 | inactivate_flags = 0; |
| 86 | /* |
| 87 | * If accounting is off, we must turn enforcement off, clear the |
| 88 | * quota 'CHKD' certificate to make it known that we have to |
| 89 | * do a quotacheck the next time this quota is turned on. |
| 90 | */ |
| 91 | if (flags & XFS_UQUOTA_ACCT) { |
| 92 | dqtype |= XFS_QMOPT_UQUOTA; |
| 93 | flags |= (XFS_UQUOTA_CHKD | XFS_UQUOTA_ENFD); |
| 94 | inactivate_flags |= XFS_UQUOTA_ACTIVE; |
| 95 | } |
| 96 | if (flags & XFS_GQUOTA_ACCT) { |
| 97 | dqtype |= XFS_QMOPT_GQUOTA; |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 98 | flags |= (XFS_GQUOTA_CHKD | XFS_GQUOTA_ENFD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | inactivate_flags |= XFS_GQUOTA_ACTIVE; |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 100 | } |
| 101 | if (flags & XFS_PQUOTA_ACCT) { |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 102 | dqtype |= XFS_QMOPT_PQUOTA; |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 103 | flags |= (XFS_PQUOTA_CHKD | XFS_PQUOTA_ENFD); |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 104 | inactivate_flags |= XFS_PQUOTA_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* |
| 108 | * Nothing to do? Don't complain. This happens when we're just |
| 109 | * turning off quota enforcement. |
| 110 | */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 111 | if ((mp->m_qflags & flags) == 0) |
| 112 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * Write the LI_QUOTAOFF log record, and do SB changes atomically, |
David Chinner | cb6edc2 | 2008-04-10 12:20:45 +1000 | [diff] [blame] | 116 | * and synchronously. If we fail to write, we should abort the |
| 117 | * operation as it cannot be recovered safely if we crash. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
David Chinner | cb6edc2 | 2008-04-10 12:20:45 +1000 | [diff] [blame] | 119 | error = xfs_qm_log_quotaoff(mp, &qoffstart, flags); |
| 120 | if (error) |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 121 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * Next we clear the XFS_MOUNT_*DQ_ACTIVE bit(s) in the mount struct |
| 125 | * to take care of the race between dqget and quotaoff. We don't take |
| 126 | * any special locks to reset these bits. All processes need to check |
| 127 | * these bits *after* taking inode lock(s) to see if the particular |
| 128 | * quota type is in the process of being turned off. If *ACTIVE, it is |
| 129 | * guaranteed that all dquot structures and all quotainode ptrs will all |
| 130 | * stay valid as long as that inode is kept locked. |
| 131 | * |
| 132 | * There is no turning back after this. |
| 133 | */ |
| 134 | mp->m_qflags &= ~inactivate_flags; |
| 135 | |
| 136 | /* |
| 137 | * Give back all the dquot reference(s) held by inodes. |
| 138 | * Here we go thru every single incore inode in this file system, and |
| 139 | * do a dqrele on the i_udquot/i_gdquot that it may have. |
| 140 | * Essentially, as long as somebody has an inode locked, this guarantees |
| 141 | * that quotas will not be turned off. This is handy because in a |
| 142 | * transaction once we lock the inode(s) and check for quotaon, we can |
| 143 | * depend on the quota inodes (and other things) being valid as long as |
| 144 | * we keep the lock(s). |
| 145 | */ |
| 146 | xfs_qm_dqrele_all_inodes(mp, flags); |
| 147 | |
| 148 | /* |
| 149 | * Next we make the changes in the quota flag in the mount struct. |
| 150 | * This isn't protected by a particular lock directly, because we |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 151 | * don't want to take a mrlock every time we depend on quotas being on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | */ |
Christoph Hellwig | b84a3a9 | 2012-03-14 11:53:34 -0500 | [diff] [blame] | 153 | mp->m_qflags &= ~flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * Go through all the dquots of this file system and purge them, |
Christoph Hellwig | b84a3a9 | 2012-03-14 11:53:34 -0500 | [diff] [blame] | 157 | * according to what was turned off. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | */ |
Christoph Hellwig | b84a3a9 | 2012-03-14 11:53:34 -0500 | [diff] [blame] | 159 | xfs_qm_dqpurge_all(mp, dqtype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* |
| 162 | * Transactions that had started before ACTIVE state bit was cleared |
| 163 | * could have logged many dquots, so they'd have higher LSNs than |
| 164 | * the first QUOTAOFF log record does. If we happen to crash when |
| 165 | * the tail of the log has gone past the QUOTAOFF record, but |
| 166 | * before the last dquot modification, those dquots __will__ |
| 167 | * recover, and that's not good. |
| 168 | * |
| 169 | * So, we have QUOTAOFF start and end logitems; the start |
| 170 | * logitem won't get overwritten until the end logitem appears... |
| 171 | */ |
David Chinner | cb6edc2 | 2008-04-10 12:20:45 +1000 | [diff] [blame] | 172 | error = xfs_qm_log_quotaoff_end(mp, qoffstart, flags); |
| 173 | if (error) { |
| 174 | /* We're screwed now. Shutdown is the only option. */ |
| 175 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 176 | goto out_unlock; |
David Chinner | cb6edc2 | 2008-04-10 12:20:45 +1000 | [diff] [blame] | 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | /* |
Chandra Seetharaman | c31ad43 | 2013-07-10 18:00:36 -0500 | [diff] [blame] | 180 | * If all quotas are completely turned off, close shop. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | */ |
Chandra Seetharaman | c31ad43 | 2013-07-10 18:00:36 -0500 | [diff] [blame] | 182 | if (mp->m_qflags == 0) { |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 183 | mutex_unlock(&q->qi_quotaofflock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | xfs_qm_destroy_quotainfo(mp); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 185 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 189 | * Release our quotainode references if we don't need them anymore. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 191 | if ((dqtype & XFS_QMOPT_UQUOTA) && q->qi_uquotaip) { |
| 192 | IRELE(q->qi_uquotaip); |
| 193 | q->qi_uquotaip = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 195 | if ((dqtype & XFS_QMOPT_GQUOTA) && q->qi_gquotaip) { |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 196 | IRELE(q->qi_gquotaip); |
| 197 | q->qi_gquotaip = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 199 | if ((dqtype & XFS_QMOPT_PQUOTA) && q->qi_pquotaip) { |
| 200 | IRELE(q->qi_pquotaip); |
| 201 | q->qi_pquotaip = NULL; |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 204 | out_unlock: |
| 205 | mutex_unlock(&q->qi_quotaofflock); |
| 206 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 209 | STATIC int |
| 210 | xfs_qm_scall_trunc_qfile( |
| 211 | struct xfs_mount *mp, |
| 212 | xfs_ino_t ino) |
| 213 | { |
| 214 | struct xfs_inode *ip; |
| 215 | struct xfs_trans *tp; |
| 216 | int error; |
| 217 | |
| 218 | if (ino == NULLFSINO) |
| 219 | return 0; |
| 220 | |
| 221 | error = xfs_iget(mp, NULL, ino, 0, 0, &ip); |
| 222 | if (error) |
| 223 | return error; |
| 224 | |
| 225 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
| 226 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 227 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp); |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 228 | if (error) { |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 229 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 230 | goto out_put; |
| 231 | } |
| 232 | |
| 233 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 234 | xfs_trans_ijoin(tp, ip, 0); |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 235 | |
Christoph Hellwig | 673e8e5 | 2011-12-18 20:00:04 +0000 | [diff] [blame] | 236 | ip->i_d.di_size = 0; |
Christoph Hellwig | 673e8e5 | 2011-12-18 20:00:04 +0000 | [diff] [blame] | 237 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 238 | |
| 239 | error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0); |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 240 | if (error) { |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 241 | xfs_trans_cancel(tp); |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 242 | goto out_unlock; |
| 243 | } |
| 244 | |
Christoph Hellwig | 673e8e5 | 2011-12-18 20:00:04 +0000 | [diff] [blame] | 245 | ASSERT(ip->i_d.di_nextents == 0); |
| 246 | |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 247 | xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG); |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 248 | error = xfs_trans_commit(tp); |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 249 | |
| 250 | out_unlock: |
| 251 | xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); |
| 252 | out_put: |
| 253 | IRELE(ip); |
| 254 | return error; |
| 255 | } |
| 256 | |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 257 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | xfs_qm_scall_trunc_qfiles( |
| 259 | xfs_mount_t *mp, |
| 260 | uint flags) |
| 261 | { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 262 | int error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Eric Sandeen | f58522c | 2014-05-05 17:27:06 +1000 | [diff] [blame] | 264 | if (!xfs_sb_version_hasquota(&mp->m_sb) || flags == 0 || |
| 265 | (flags & ~XFS_DQ_ALLTYPES)) { |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 266 | xfs_debug(mp, "%s: flags=%x m_qflags=%x", |
Dave Chinner | 8221112 | 2011-03-07 10:07:35 +1100 | [diff] [blame] | 267 | __func__, flags, mp->m_qflags); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 268 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Jie Liu | c61a9e3 | 2013-11-22 14:04:00 +0800 | [diff] [blame] | 271 | if (flags & XFS_DQ_USER) { |
Christoph Hellwig | 5d18898 | 2010-07-20 17:51:31 +1000 | [diff] [blame] | 272 | error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_uquotino); |
Jie Liu | c61a9e3 | 2013-11-22 14:04:00 +0800 | [diff] [blame] | 273 | if (error) |
| 274 | return error; |
| 275 | } |
| 276 | if (flags & XFS_DQ_GROUP) { |
| 277 | error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_gquotino); |
| 278 | if (error) |
| 279 | return error; |
| 280 | } |
Chandra Seetharaman | d892d58 | 2013-07-19 17:36:02 -0500 | [diff] [blame] | 281 | if (flags & XFS_DQ_PROJ) |
Jie Liu | c61a9e3 | 2013-11-22 14:04:00 +0800 | [diff] [blame] | 282 | error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_pquotino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Jie Liu | c61a9e3 | 2013-11-22 14:04:00 +0800 | [diff] [blame] | 284 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | /* |
| 288 | * Switch on (a given) quota enforcement for a filesystem. This takes |
| 289 | * effect immediately. |
| 290 | * (Switching on quota accounting must be done at mount time.) |
| 291 | */ |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 292 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | xfs_qm_scall_quotaon( |
| 294 | xfs_mount_t *mp, |
| 295 | uint flags) |
| 296 | { |
| 297 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | uint qf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD); |
| 301 | /* |
| 302 | * Switching on quota accounting must be done at mount time. |
| 303 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | flags &= ~(XFS_ALL_QUOTA_ACCT); |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (flags == 0) { |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 307 | xfs_debug(mp, "%s: zero flags, m_qflags=%x", |
Dave Chinner | 8221112 | 2011-03-07 10:07:35 +1100 | [diff] [blame] | 308 | __func__, mp->m_qflags); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 309 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /* |
| 313 | * Can't enforce without accounting. We check the superblock |
| 314 | * qflags here instead of m_qflags because rootfs can have |
| 315 | * quota acct on ondisk without m_qflags' knowing. |
| 316 | */ |
Jan Kara | fbf64b3 | 2014-10-08 11:52:52 +0200 | [diff] [blame] | 317 | if (((mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) == 0 && |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 318 | (flags & XFS_UQUOTA_ENFD)) || |
Jan Kara | fbf64b3 | 2014-10-08 11:52:52 +0200 | [diff] [blame] | 319 | ((mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) == 0 && |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 320 | (flags & XFS_GQUOTA_ENFD)) || |
Jan Kara | fbf64b3 | 2014-10-08 11:52:52 +0200 | [diff] [blame] | 321 | ((mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) == 0 && |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 322 | (flags & XFS_PQUOTA_ENFD))) { |
Dave Chinner | 8221112 | 2011-03-07 10:07:35 +1100 | [diff] [blame] | 323 | xfs_debug(mp, |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 324 | "%s: Can't enforce without acct, flags=%x sbflags=%x", |
Dave Chinner | 8221112 | 2011-03-07 10:07:35 +1100 | [diff] [blame] | 325 | __func__, flags, mp->m_sb.sb_qflags); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 326 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 329 | * If everything's up to-date incore, then don't waste time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | */ |
| 331 | if ((mp->m_qflags & flags) == flags) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 332 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | /* |
| 335 | * Change sb_qflags on disk but not incore mp->qflags |
| 336 | * if this is the root filesystem. |
| 337 | */ |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 338 | spin_lock(&mp->m_sb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | qf = mp->m_sb.sb_qflags; |
| 340 | mp->m_sb.sb_qflags = qf | flags; |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 341 | spin_unlock(&mp->m_sb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
| 343 | /* |
| 344 | * There's nothing to change if it's the same. |
| 345 | */ |
Dave Chinner | 4d11a40 | 2015-01-22 09:10:26 +1100 | [diff] [blame] | 346 | if ((qf & flags) == flags) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 347 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 349 | error = xfs_sync_sb(mp, false); |
| 350 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 351 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /* |
| 353 | * If we aren't trying to switch on quota enforcement, we are done. |
| 354 | */ |
| 355 | if (((mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) != |
| 356 | (mp->m_qflags & XFS_UQUOTA_ACCT)) || |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 357 | ((mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) != |
| 358 | (mp->m_qflags & XFS_PQUOTA_ACCT)) || |
| 359 | ((mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) != |
Jan Kara | fbf64b3 | 2014-10-08 11:52:52 +0200 | [diff] [blame] | 360 | (mp->m_qflags & XFS_GQUOTA_ACCT))) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 361 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | if (! XFS_IS_QUOTA_RUNNING(mp)) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 364 | return -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | /* |
| 367 | * Switch on quota enforcement in core. |
| 368 | */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 369 | mutex_lock(&mp->m_quotainfo->qi_quotaofflock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | mp->m_qflags |= (flags & XFS_ALL_QUOTA_ENFD); |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 371 | mutex_unlock(&mp->m_quotainfo->qi_quotaofflock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 373 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 376 | #define XFS_QC_MASK \ |
| 377 | (QC_LIMIT_MASK | QC_TIMER_MASK | QC_WARNS_MASK) |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | /* |
| 380 | * Adjust quota limits, and start/stop timers accordingly. |
| 381 | */ |
Christoph Hellwig | fcafb71 | 2009-02-09 08:47:34 +0100 | [diff] [blame] | 382 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | xfs_qm_scall_setqlim( |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 384 | struct xfs_mount *mp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | xfs_dqid_t id, |
| 386 | uint type, |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 387 | struct qc_dqblk *newlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 389 | struct xfs_quotainfo *q = mp->m_quotainfo; |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 390 | struct xfs_disk_dquot *ddq; |
| 391 | struct xfs_dquot *dqp; |
| 392 | struct xfs_trans *tp; |
Carlos Maiolino | be60794 | 2016-02-08 11:27:55 +1100 | [diff] [blame] | 393 | struct xfs_def_quota *defq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | int error; |
| 395 | xfs_qcnt_t hard, soft; |
| 396 | |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 397 | if (newlim->d_fieldmask & ~XFS_QC_MASK) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 398 | return -EINVAL; |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 399 | if ((newlim->d_fieldmask & XFS_QC_MASK) == 0) |
Christoph Hellwig | c472b43 | 2010-05-06 17:05:17 -0400 | [diff] [blame] | 400 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 402 | /* |
| 403 | * We don't want to race with a quotaoff so take the quotaoff lock. |
| 404 | * We don't hold an inode lock, so there's nothing else to stop |
| 405 | * a quotaoff from happening. |
| 406 | */ |
| 407 | mutex_lock(&q->qi_quotaofflock); |
| 408 | |
| 409 | /* |
| 410 | * Get the dquot (locked) before we start, as we need to do a |
| 411 | * transaction to allocate it if it doesn't exist. Once we have the |
| 412 | * dquot, unlock it so we can start the next transaction safely. We hold |
| 413 | * a reference to the dquot, so it's safe to do this unlock/lock without |
| 414 | * it being reclaimed in the mean time. |
| 415 | */ |
Darrick J. Wong | 30ab2dc | 2018-05-04 15:30:24 -0700 | [diff] [blame] | 416 | error = xfs_qm_dqget(mp, id, type, true, &dqp); |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 417 | if (error) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 418 | ASSERT(error != -ENOENT); |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 419 | goto out_unlock; |
| 420 | } |
Carlos Maiolino | be60794 | 2016-02-08 11:27:55 +1100 | [diff] [blame] | 421 | |
| 422 | defq = xfs_get_defquota(dqp, q); |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 423 | xfs_dqunlock(dqp); |
| 424 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 425 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_qm_setqlim, 0, 0, 0, &tp); |
| 426 | if (error) |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 427 | goto out_rele; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 429 | xfs_dqlock(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | xfs_trans_dqjoin(tp, dqp); |
| 431 | ddq = &dqp->q_core; |
| 432 | |
| 433 | /* |
| 434 | * Make sure that hardlimits are >= soft limits before changing. |
| 435 | */ |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 436 | hard = (newlim->d_fieldmask & QC_SPC_HARD) ? |
| 437 | (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_spc_hardlimit) : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 438 | be64_to_cpu(ddq->d_blk_hardlimit); |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 439 | soft = (newlim->d_fieldmask & QC_SPC_SOFT) ? |
| 440 | (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_spc_softlimit) : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 441 | be64_to_cpu(ddq->d_blk_softlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | if (hard == 0 || hard >= soft) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 443 | ddq->d_blk_hardlimit = cpu_to_be64(hard); |
| 444 | ddq->d_blk_softlimit = cpu_to_be64(soft); |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 445 | xfs_dquot_set_prealloc_limits(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | if (id == 0) { |
Carlos Maiolino | be60794 | 2016-02-08 11:27:55 +1100 | [diff] [blame] | 447 | defq->bhardlimit = hard; |
| 448 | defq->bsoftlimit = soft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | } |
| 450 | } else { |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 451 | xfs_debug(mp, "blkhard %Ld < blksoft %Ld", hard, soft); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 453 | hard = (newlim->d_fieldmask & QC_RT_SPC_HARD) ? |
| 454 | (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_rt_spc_hardlimit) : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 455 | be64_to_cpu(ddq->d_rtb_hardlimit); |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 456 | soft = (newlim->d_fieldmask & QC_RT_SPC_SOFT) ? |
| 457 | (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_rt_spc_softlimit) : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 458 | be64_to_cpu(ddq->d_rtb_softlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | if (hard == 0 || hard >= soft) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 460 | ddq->d_rtb_hardlimit = cpu_to_be64(hard); |
| 461 | ddq->d_rtb_softlimit = cpu_to_be64(soft); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | if (id == 0) { |
Carlos Maiolino | be60794 | 2016-02-08 11:27:55 +1100 | [diff] [blame] | 463 | defq->rtbhardlimit = hard; |
| 464 | defq->rtbsoftlimit = soft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | } else { |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 467 | xfs_debug(mp, "rtbhard %Ld < rtbsoft %Ld", hard, soft); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 470 | hard = (newlim->d_fieldmask & QC_INO_HARD) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | (xfs_qcnt_t) newlim->d_ino_hardlimit : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 472 | be64_to_cpu(ddq->d_ino_hardlimit); |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 473 | soft = (newlim->d_fieldmask & QC_INO_SOFT) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | (xfs_qcnt_t) newlim->d_ino_softlimit : |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 475 | be64_to_cpu(ddq->d_ino_softlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | if (hard == 0 || hard >= soft) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 477 | ddq->d_ino_hardlimit = cpu_to_be64(hard); |
| 478 | ddq->d_ino_softlimit = cpu_to_be64(soft); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | if (id == 0) { |
Carlos Maiolino | be60794 | 2016-02-08 11:27:55 +1100 | [diff] [blame] | 480 | defq->ihardlimit = hard; |
| 481 | defq->isoftlimit = soft; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | } else { |
Eric Sandeen | 08e96e1 | 2013-10-11 20:59:05 -0500 | [diff] [blame] | 484 | xfs_debug(mp, "ihard %Ld < isoft %Ld", hard, soft); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 487 | /* |
| 488 | * Update warnings counter(s) if requested |
| 489 | */ |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 490 | if (newlim->d_fieldmask & QC_SPC_WARNS) |
| 491 | ddq->d_bwarns = cpu_to_be16(newlim->d_spc_warns); |
| 492 | if (newlim->d_fieldmask & QC_INO_WARNS) |
| 493 | ddq->d_iwarns = cpu_to_be16(newlim->d_ino_warns); |
| 494 | if (newlim->d_fieldmask & QC_RT_SPC_WARNS) |
| 495 | ddq->d_rtbwarns = cpu_to_be16(newlim->d_rt_spc_warns); |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | if (id == 0) { |
| 498 | /* |
| 499 | * Timelimits for the super user set the relative time |
| 500 | * the other users can be over quota for this file system. |
| 501 | * If it is zero a default is used. Ditto for the default |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 502 | * soft and hard limit values (already done, above), and |
| 503 | * for warnings. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | */ |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 505 | if (newlim->d_fieldmask & QC_SPC_TIMER) { |
| 506 | q->qi_btimelimit = newlim->d_spc_timer; |
| 507 | ddq->d_btimer = cpu_to_be32(newlim->d_spc_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 509 | if (newlim->d_fieldmask & QC_INO_TIMER) { |
| 510 | q->qi_itimelimit = newlim->d_ino_timer; |
| 511 | ddq->d_itimer = cpu_to_be32(newlim->d_ino_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 513 | if (newlim->d_fieldmask & QC_RT_SPC_TIMER) { |
| 514 | q->qi_rtbtimelimit = newlim->d_rt_spc_timer; |
| 515 | ddq->d_rtbtimer = cpu_to_be32(newlim->d_rt_spc_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 517 | if (newlim->d_fieldmask & QC_SPC_WARNS) |
| 518 | q->qi_bwarnlimit = newlim->d_spc_warns; |
| 519 | if (newlim->d_fieldmask & QC_INO_WARNS) |
| 520 | q->qi_iwarnlimit = newlim->d_ino_warns; |
| 521 | if (newlim->d_fieldmask & QC_RT_SPC_WARNS) |
| 522 | q->qi_rtbwarnlimit = newlim->d_rt_spc_warns; |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 523 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* |
| 525 | * If the user is now over quota, start the timelimit. |
| 526 | * The user will not be 'warned'. |
| 527 | * Note that we keep the timers ticking, whether enforcement |
| 528 | * is on or off. We don't really want to bother with iterating |
| 529 | * over all ondisk dquots and turning the timers on/off. |
| 530 | */ |
| 531 | xfs_qm_adjust_dqtimers(mp, ddq); |
| 532 | } |
| 533 | dqp->dq_flags |= XFS_DQ_DIRTY; |
| 534 | xfs_trans_log_dquot(tp, dqp); |
| 535 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 536 | error = xfs_trans_commit(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
Dave Chinner | f648167 | 2013-05-21 18:02:00 +1000 | [diff] [blame] | 538 | out_rele: |
| 539 | xfs_qm_dqrele(dqp); |
| 540 | out_unlock: |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 541 | mutex_unlock(&q->qi_quotaofflock); |
David Chinner | e5720ee | 2008-04-10 12:21:18 +1000 | [diff] [blame] | 542 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | STATIC int |
| 546 | xfs_qm_log_quotaoff_end( |
| 547 | xfs_mount_t *mp, |
| 548 | xfs_qoff_logitem_t *startqoff, |
| 549 | uint flags) |
| 550 | { |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 551 | xfs_trans_t *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | int error; |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 553 | xfs_qoff_logitem_t *qoffi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 555 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_qm_equotaoff, 0, 0, 0, &tp); |
| 556 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 557 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
| 559 | qoffi = xfs_trans_get_qoff_item(tp, startqoff, |
| 560 | flags & XFS_ALL_QUOTA_ACCT); |
| 561 | xfs_trans_log_quotaoff_item(tp, qoffi); |
| 562 | |
| 563 | /* |
| 564 | * We have to make sure that the transaction is secure on disk before we |
| 565 | * return and actually stop quota accounting. So, make it synchronous. |
| 566 | * We don't care about quotoff's performance. |
| 567 | */ |
| 568 | xfs_trans_set_sync(tp); |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 569 | return xfs_trans_commit(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | |
| 573 | STATIC int |
| 574 | xfs_qm_log_quotaoff( |
| 575 | xfs_mount_t *mp, |
| 576 | xfs_qoff_logitem_t **qoffstartp, |
| 577 | uint flags) |
| 578 | { |
| 579 | xfs_trans_t *tp; |
| 580 | int error; |
Brian Foster | 5d45ee1 | 2014-11-28 14:00:53 +1100 | [diff] [blame] | 581 | xfs_qoff_logitem_t *qoffi; |
| 582 | |
| 583 | *qoffstartp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 585 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_qm_quotaoff, 0, 0, 0, &tp); |
| 586 | if (error) |
Brian Foster | 5d45ee1 | 2014-11-28 14:00:53 +1100 | [diff] [blame] | 587 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
| 589 | qoffi = xfs_trans_get_qoff_item(tp, NULL, flags & XFS_ALL_QUOTA_ACCT); |
| 590 | xfs_trans_log_quotaoff_item(tp, qoffi); |
| 591 | |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 592 | spin_lock(&mp->m_sb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | mp->m_sb.sb_qflags = (mp->m_qflags & ~(flags)) & XFS_MOUNT_QUOTA_ALL; |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 594 | spin_unlock(&mp->m_sb_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 596 | xfs_log_sb(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | /* |
| 599 | * We have to make sure that the transaction is secure on disk before we |
| 600 | * return and actually stop quota accounting. So, make it synchronous. |
| 601 | * We don't care about quotoff's performance. |
| 602 | */ |
| 603 | xfs_trans_set_sync(tp); |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 604 | error = xfs_trans_commit(tp); |
Brian Foster | 5d45ee1 | 2014-11-28 14:00:53 +1100 | [diff] [blame] | 605 | if (error) |
| 606 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | *qoffstartp = qoffi; |
Brian Foster | 5d45ee1 | 2014-11-28 14:00:53 +1100 | [diff] [blame] | 609 | out: |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 610 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 613 | /* Fill out the quota context. */ |
| 614 | static void |
| 615 | xfs_qm_scall_getquota_fill_qc( |
Christoph Hellwig | 18535a7 | 2012-02-20 02:28:16 +0000 | [diff] [blame] | 616 | struct xfs_mount *mp, |
Christoph Hellwig | 18535a7 | 2012-02-20 02:28:16 +0000 | [diff] [blame] | 617 | uint type, |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 618 | const struct xfs_dquot *dqp, |
| 619 | struct qc_dqblk *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | { |
| 621 | memset(dst, 0, sizeof(*dst)); |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 622 | dst->d_spc_hardlimit = |
| 623 | XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_blk_hardlimit)); |
| 624 | dst->d_spc_softlimit = |
| 625 | XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_blk_softlimit)); |
Christoph Hellwig | 18535a7 | 2012-02-20 02:28:16 +0000 | [diff] [blame] | 626 | dst->d_ino_hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit); |
| 627 | dst->d_ino_softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit); |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 628 | dst->d_space = XFS_FSB_TO_B(mp, dqp->q_res_bcount); |
| 629 | dst->d_ino_count = dqp->q_res_icount; |
| 630 | dst->d_spc_timer = be32_to_cpu(dqp->q_core.d_btimer); |
| 631 | dst->d_ino_timer = be32_to_cpu(dqp->q_core.d_itimer); |
| 632 | dst->d_ino_warns = be16_to_cpu(dqp->q_core.d_iwarns); |
| 633 | dst->d_spc_warns = be16_to_cpu(dqp->q_core.d_bwarns); |
| 634 | dst->d_rt_spc_hardlimit = |
| 635 | XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_rtb_hardlimit)); |
| 636 | dst->d_rt_spc_softlimit = |
| 637 | XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_rtb_softlimit)); |
| 638 | dst->d_rt_space = XFS_FSB_TO_B(mp, dqp->q_res_rtbcount); |
| 639 | dst->d_rt_spc_timer = be32_to_cpu(dqp->q_core.d_rtbtimer); |
| 640 | dst->d_rt_spc_warns = be16_to_cpu(dqp->q_core.d_rtbwarns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | /* |
| 643 | * Internally, we don't reset all the timers when quota enforcement |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 644 | * gets turned off. No need to confuse the user level code, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | * so return zeroes in that case. |
| 646 | */ |
Chandra Seetharaman | 83e782e | 2013-06-27 17:25:10 -0500 | [diff] [blame] | 647 | if ((!XFS_IS_UQUOTA_ENFORCED(mp) && |
| 648 | dqp->q_core.d_flags == XFS_DQ_USER) || |
| 649 | (!XFS_IS_GQUOTA_ENFORCED(mp) && |
| 650 | dqp->q_core.d_flags == XFS_DQ_GROUP) || |
| 651 | (!XFS_IS_PQUOTA_ENFORCED(mp) && |
| 652 | dqp->q_core.d_flags == XFS_DQ_PROJ)) { |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 653 | dst->d_spc_timer = 0; |
| 654 | dst->d_ino_timer = 0; |
| 655 | dst->d_rt_spc_timer = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | #ifdef DEBUG |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 659 | if (((XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQ_USER) || |
| 660 | (XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQ_GROUP) || |
| 661 | (XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQ_PROJ)) && |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 662 | dqp->q_core.d_id != 0) { |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 663 | if ((dst->d_space > dst->d_spc_softlimit) && |
| 664 | (dst->d_spc_softlimit > 0)) { |
| 665 | ASSERT(dst->d_spc_timer != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 667 | if ((dst->d_ino_count > dst->d_ino_softlimit) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | (dst->d_ino_softlimit > 0)) { |
Jan Kara | 14bf61f | 2014-10-09 16:03:13 +0200 | [diff] [blame] | 669 | ASSERT(dst->d_ino_timer != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | #endif |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | /* Return the quota information for the dquot matching id. */ |
| 676 | int |
| 677 | xfs_qm_scall_getquota( |
| 678 | struct xfs_mount *mp, |
| 679 | xfs_dqid_t id, |
| 680 | uint type, |
| 681 | struct qc_dqblk *dst) |
| 682 | { |
| 683 | struct xfs_dquot *dqp; |
| 684 | int error; |
| 685 | |
| 686 | /* |
Darrick J. Wong | 30ab2dc | 2018-05-04 15:30:24 -0700 | [diff] [blame] | 687 | * Try to get the dquot. We don't want it allocated on disk, so don't |
| 688 | * set doalloc. If it doesn't exist, we'll get ENOENT back. |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 689 | */ |
Darrick J. Wong | 30ab2dc | 2018-05-04 15:30:24 -0700 | [diff] [blame] | 690 | error = xfs_qm_dqget(mp, id, type, false, &dqp); |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 691 | if (error) |
| 692 | return error; |
| 693 | |
| 694 | /* |
| 695 | * If everything's NULL, this dquot doesn't quite exist as far as |
| 696 | * our utility programs are concerned. |
| 697 | */ |
| 698 | if (XFS_IS_DQUOT_UNINITIALIZED(dqp)) { |
| 699 | error = -ENOENT; |
| 700 | goto out_put; |
| 701 | } |
| 702 | |
| 703 | xfs_qm_scall_getquota_fill_qc(mp, type, dqp, dst); |
| 704 | |
Christoph Hellwig | 18535a7 | 2012-02-20 02:28:16 +0000 | [diff] [blame] | 705 | out_put: |
| 706 | xfs_qm_dqput(dqp); |
| 707 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Darrick J. Wong | 2e330e7 | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 710 | /* |
| 711 | * Return the quota information for the first initialized dquot whose id |
| 712 | * is at least as high as id. |
| 713 | */ |
| 714 | int |
| 715 | xfs_qm_scall_getquota_next( |
| 716 | struct xfs_mount *mp, |
| 717 | xfs_dqid_t *id, |
| 718 | uint type, |
| 719 | struct qc_dqblk *dst) |
| 720 | { |
| 721 | struct xfs_dquot *dqp; |
| 722 | int error; |
| 723 | |
| 724 | error = xfs_qm_dqget_next(mp, *id, type, &dqp); |
| 725 | if (error) |
| 726 | return error; |
| 727 | |
| 728 | /* Fill in the ID we actually read from disk */ |
| 729 | *id = be32_to_cpu(dqp->q_core.d_id); |
| 730 | |
| 731 | xfs_qm_scall_getquota_fill_qc(mp, type, dqp, dst); |
| 732 | |
| 733 | xfs_qm_dqput(dqp); |
| 734 | return error; |
| 735 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 737 | STATIC int |
| 738 | xfs_dqrele_inode( |
| 739 | struct xfs_inode *ip, |
Brian Foster | a454f74 | 2012-11-06 09:50:39 -0500 | [diff] [blame] | 740 | int flags, |
| 741 | void *args) |
David Chinner | 5b4d89a | 2008-10-30 17:08:03 +1100 | [diff] [blame] | 742 | { |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 743 | /* skip quota inodes */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 744 | if (ip == ip->i_mount->m_quotainfo->qi_uquotaip || |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 745 | ip == ip->i_mount->m_quotainfo->qi_gquotaip || |
| 746 | ip == ip->i_mount->m_quotainfo->qi_pquotaip) { |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 747 | ASSERT(ip->i_udquot == NULL); |
| 748 | ASSERT(ip->i_gdquot == NULL); |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 749 | ASSERT(ip->i_pdquot == NULL); |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 750 | return 0; |
| 751 | } |
Dave Chinner | cb4f0d1 | 2008-11-10 17:11:18 +1100 | [diff] [blame] | 752 | |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 753 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 754 | if ((flags & XFS_UQUOTA_ACCT) && ip->i_udquot) { |
| 755 | xfs_qm_dqrele(ip->i_udquot); |
| 756 | ip->i_udquot = NULL; |
| 757 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 758 | if ((flags & XFS_GQUOTA_ACCT) && ip->i_gdquot) { |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 759 | xfs_qm_dqrele(ip->i_gdquot); |
| 760 | ip->i_gdquot = NULL; |
| 761 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 762 | if ((flags & XFS_PQUOTA_ACCT) && ip->i_pdquot) { |
| 763 | xfs_qm_dqrele(ip->i_pdquot); |
| 764 | ip->i_pdquot = NULL; |
| 765 | } |
Christoph Hellwig | f2d6761 | 2010-06-24 11:52:50 +1000 | [diff] [blame] | 766 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 767 | return 0; |
David Chinner | 5b4d89a | 2008-10-30 17:08:03 +1100 | [diff] [blame] | 768 | } |
| 769 | |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 770 | |
David Chinner | 5b4d89a | 2008-10-30 17:08:03 +1100 | [diff] [blame] | 771 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | * Go thru all the inodes in the file system, releasing their dquots. |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 773 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | * Note that the mount structure gets modified to indicate that quotas are off |
Christoph Hellwig | fe588ed | 2009-06-08 15:35:27 +0200 | [diff] [blame] | 775 | * AFTER this, in the case of quotaoff. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | */ |
| 777 | void |
| 778 | xfs_qm_dqrele_all_inodes( |
| 779 | struct xfs_mount *mp, |
| 780 | uint flags) |
| 781 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | ASSERT(mp->m_quotainfo); |
Brian Foster | e20c8a5 | 2017-04-26 08:30:40 -0700 | [diff] [blame] | 783 | xfs_inode_ag_iterator_flags(mp, xfs_dqrele_inode, flags, NULL, |
| 784 | XFS_AGITER_INEW_WAIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |