Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 4ce3121 | 2005-11-02 14:59:41 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2003 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 4ce3121 | 2005-11-02 14:59:41 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 4ce3121 | 2005-11-02 14:59:41 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 4ce3121 | 2005-11-02 14:59:41 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
| 19 | #include "xfs_fs.h" |
Dave Chinner | 6ca1c90 | 2013-08-12 20:49:26 +1000 | [diff] [blame^] | 20 | #include "xfs_format.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" |
| 23 | #include "xfs_trans.h" |
| 24 | #include "xfs_sb.h" |
| 25 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "xfs_alloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_quota.h" |
| 28 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "xfs_bmap_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "xfs_inode.h" |
| 31 | #include "xfs_bmap.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_rtalloc.h" |
| 33 | #include "xfs_error.h" |
| 34 | #include "xfs_itable.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_attr.h" |
| 36 | #include "xfs_buf_item.h" |
| 37 | #include "xfs_trans_space.h" |
| 38 | #include "xfs_trans_priv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "xfs_qm.h" |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 40 | #include "xfs_cksum.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 41 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 44 | * Lock order: |
| 45 | * |
| 46 | * ip->i_lock |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 47 | * qi->qi_tree_lock |
Christoph Hellwig | b84a3a9 | 2012-03-14 11:53:34 -0500 | [diff] [blame] | 48 | * dquot->q_qlock (xfs_dqlock() and friends) |
| 49 | * dquot->q_flush (xfs_dqflock() and friends) |
| 50 | * qi->qi_lru_lock |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 51 | * |
| 52 | * If two dquots need to be locked the order is user before group/project, |
| 53 | * otherwise by the lowest id first, see xfs_dqlock2. |
| 54 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #ifdef DEBUG |
| 57 | xfs_buftarg_t *xfs_dqerror_target; |
| 58 | int xfs_do_dqerror; |
| 59 | int xfs_dqreq_num; |
| 60 | int xfs_dqerror_mod = 33; |
| 61 | #endif |
| 62 | |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 63 | struct kmem_zone *xfs_qm_dqtrxzone; |
| 64 | static struct kmem_zone *xfs_qm_dqzone; |
| 65 | |
Christoph Hellwig | 98b8c7a | 2009-01-19 02:03:25 +0100 | [diff] [blame] | 66 | static struct lock_class_key xfs_dquot_other_class; |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | * This is called to free all the memory associated with a dquot |
| 70 | */ |
| 71 | void |
| 72 | xfs_qm_dqdestroy( |
| 73 | xfs_dquot_t *dqp) |
| 74 | { |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 75 | ASSERT(list_empty(&dqp->q_lru)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | mutex_destroy(&dqp->q_qlock); |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 78 | kmem_zone_free(xfs_qm_dqzone, dqp); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 79 | |
Christoph Hellwig | 48776fd | 2012-03-13 08:52:33 +0000 | [diff] [blame] | 80 | XFS_STATS_DEC(xs_qm_dquot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | * If default limits are in force, push them into the dquot now. |
| 85 | * We overwrite the dquot limits only if they are zero and this |
| 86 | * is not the root dquot. |
| 87 | */ |
| 88 | void |
| 89 | xfs_qm_adjust_dqlimits( |
Brian Foster | 4b6eae2e | 2013-03-18 10:51:45 -0400 | [diff] [blame] | 90 | struct xfs_mount *mp, |
| 91 | struct xfs_dquot *dq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
Brian Foster | 4b6eae2e | 2013-03-18 10:51:45 -0400 | [diff] [blame] | 93 | struct xfs_quotainfo *q = mp->m_quotainfo; |
| 94 | struct xfs_disk_dquot *d = &dq->q_core; |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 95 | int prealloc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | ASSERT(d->d_id); |
| 98 | |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 99 | if (q->qi_bsoftlimit && !d->d_blk_softlimit) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 100 | d->d_blk_softlimit = cpu_to_be64(q->qi_bsoftlimit); |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 101 | prealloc = 1; |
| 102 | } |
| 103 | if (q->qi_bhardlimit && !d->d_blk_hardlimit) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 104 | d->d_blk_hardlimit = cpu_to_be64(q->qi_bhardlimit); |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 105 | prealloc = 1; |
| 106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | if (q->qi_isoftlimit && !d->d_ino_softlimit) |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 108 | d->d_ino_softlimit = cpu_to_be64(q->qi_isoftlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | if (q->qi_ihardlimit && !d->d_ino_hardlimit) |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 110 | d->d_ino_hardlimit = cpu_to_be64(q->qi_ihardlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | if (q->qi_rtbsoftlimit && !d->d_rtb_softlimit) |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 112 | d->d_rtb_softlimit = cpu_to_be64(q->qi_rtbsoftlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | if (q->qi_rtbhardlimit && !d->d_rtb_hardlimit) |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 114 | d->d_rtb_hardlimit = cpu_to_be64(q->qi_rtbhardlimit); |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 115 | |
| 116 | if (prealloc) |
| 117 | xfs_dquot_set_prealloc_limits(dq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Check the limits and timers of a dquot and start or reset timers |
| 122 | * if necessary. |
| 123 | * This gets called even when quota enforcement is OFF, which makes our |
| 124 | * life a little less complicated. (We just don't reject any quota |
| 125 | * reservations in that case, when enforcement is off). |
| 126 | * We also return 0 as the values of the timers in Q_GETQUOTA calls, when |
| 127 | * enforcement's off. |
| 128 | * In contrast, warnings are a little different in that they don't |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 129 | * 'automatically' get started when limits get exceeded. They do |
| 130 | * get reset to zero, however, when we find the count to be under |
| 131 | * the soft limit (they are only ever set non-zero via userspace). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | */ |
| 133 | void |
| 134 | xfs_qm_adjust_dqtimers( |
| 135 | xfs_mount_t *mp, |
| 136 | xfs_disk_dquot_t *d) |
| 137 | { |
| 138 | ASSERT(d->d_id); |
| 139 | |
Christoph Hellwig | ea15ab3 | 2011-07-13 13:43:50 +0200 | [diff] [blame] | 140 | #ifdef DEBUG |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 141 | if (d->d_blk_hardlimit) |
| 142 | ASSERT(be64_to_cpu(d->d_blk_softlimit) <= |
| 143 | be64_to_cpu(d->d_blk_hardlimit)); |
| 144 | if (d->d_ino_hardlimit) |
| 145 | ASSERT(be64_to_cpu(d->d_ino_softlimit) <= |
| 146 | be64_to_cpu(d->d_ino_hardlimit)); |
| 147 | if (d->d_rtb_hardlimit) |
| 148 | ASSERT(be64_to_cpu(d->d_rtb_softlimit) <= |
| 149 | be64_to_cpu(d->d_rtb_hardlimit)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | #endif |
Christoph Hellwig | ea15ab3 | 2011-07-13 13:43:50 +0200 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (!d->d_btimer) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 153 | if ((d->d_blk_softlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 154 | (be64_to_cpu(d->d_bcount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 155 | be64_to_cpu(d->d_blk_softlimit))) || |
| 156 | (d->d_blk_hardlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 157 | (be64_to_cpu(d->d_bcount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 158 | be64_to_cpu(d->d_blk_hardlimit)))) { |
| 159 | d->d_btimer = cpu_to_be32(get_seconds() + |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 160 | mp->m_quotainfo->qi_btimelimit); |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 161 | } else { |
| 162 | d->d_bwarns = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | } else { |
| 165 | if ((!d->d_blk_softlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 166 | (be64_to_cpu(d->d_bcount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 167 | be64_to_cpu(d->d_blk_softlimit))) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | (!d->d_blk_hardlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 169 | (be64_to_cpu(d->d_bcount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 170 | be64_to_cpu(d->d_blk_hardlimit)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | d->d_btimer = 0; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | if (!d->d_itimer) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 176 | if ((d->d_ino_softlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 177 | (be64_to_cpu(d->d_icount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 178 | be64_to_cpu(d->d_ino_softlimit))) || |
| 179 | (d->d_ino_hardlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 180 | (be64_to_cpu(d->d_icount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 181 | be64_to_cpu(d->d_ino_hardlimit)))) { |
| 182 | d->d_itimer = cpu_to_be32(get_seconds() + |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 183 | mp->m_quotainfo->qi_itimelimit); |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 184 | } else { |
| 185 | d->d_iwarns = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | } else { |
| 188 | if ((!d->d_ino_softlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 189 | (be64_to_cpu(d->d_icount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 190 | be64_to_cpu(d->d_ino_softlimit))) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | (!d->d_ino_hardlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 192 | (be64_to_cpu(d->d_icount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 193 | be64_to_cpu(d->d_ino_hardlimit)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | d->d_itimer = 0; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | if (!d->d_rtbtimer) { |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 199 | if ((d->d_rtb_softlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 200 | (be64_to_cpu(d->d_rtbcount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 201 | be64_to_cpu(d->d_rtb_softlimit))) || |
| 202 | (d->d_rtb_hardlimit && |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 203 | (be64_to_cpu(d->d_rtbcount) > |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 204 | be64_to_cpu(d->d_rtb_hardlimit)))) { |
| 205 | d->d_rtbtimer = cpu_to_be32(get_seconds() + |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 206 | mp->m_quotainfo->qi_rtbtimelimit); |
Nathan Scott | 754002b | 2005-06-21 15:49:06 +1000 | [diff] [blame] | 207 | } else { |
| 208 | d->d_rtbwarns = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | } else { |
| 211 | if ((!d->d_rtb_softlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 212 | (be64_to_cpu(d->d_rtbcount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 213 | be64_to_cpu(d->d_rtb_softlimit))) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | (!d->d_rtb_hardlimit || |
Mitsuo Hayasaka | d0a3fe6 | 2012-02-06 12:50:07 +0000 | [diff] [blame] | 215 | (be64_to_cpu(d->d_rtbcount) <= |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 216 | be64_to_cpu(d->d_rtb_hardlimit)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | d->d_rtbtimer = 0; |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | * initialize a buffer full of dquots and log the whole thing |
| 224 | */ |
| 225 | STATIC void |
| 226 | xfs_qm_init_dquot_blk( |
| 227 | xfs_trans_t *tp, |
| 228 | xfs_mount_t *mp, |
| 229 | xfs_dqid_t id, |
| 230 | uint type, |
| 231 | xfs_buf_t *bp) |
| 232 | { |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 233 | struct xfs_quotainfo *q = mp->m_quotainfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | xfs_dqblk_t *d; |
| 235 | int curid, i; |
| 236 | |
| 237 | ASSERT(tp); |
Christoph Hellwig | 0c842ad | 2011-07-08 14:36:19 +0200 | [diff] [blame] | 238 | ASSERT(xfs_buf_islocked(bp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Chandra Seetharaman | 6292604 | 2011-07-22 23:40:15 +0000 | [diff] [blame] | 240 | d = bp->b_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
| 242 | /* |
| 243 | * ID of the first dquot in the block - id's are zero based. |
| 244 | */ |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 245 | curid = id - (id % q->qi_dqperchunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | ASSERT(curid >= 0); |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 247 | memset(d, 0, BBTOB(q->qi_dqchunklen)); |
Christoph Hellwig | 49d35a5 | 2011-12-06 21:58:23 +0000 | [diff] [blame] | 248 | for (i = 0; i < q->qi_dqperchunk; i++, d++, curid++) { |
| 249 | d->dd_diskdq.d_magic = cpu_to_be16(XFS_DQUOT_MAGIC); |
| 250 | d->dd_diskdq.d_version = XFS_DQUOT_VERSION; |
| 251 | d->dd_diskdq.d_id = cpu_to_be32(curid); |
| 252 | d->dd_diskdq.d_flags = type; |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 253 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 254 | uuid_copy(&d->dd_uuid, &mp->m_sb.sb_uuid); |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 255 | xfs_update_cksum((char *)d, sizeof(struct xfs_dqblk), |
| 256 | XFS_DQUOT_CRC_OFF); |
| 257 | } |
Christoph Hellwig | 49d35a5 | 2011-12-06 21:58:23 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | xfs_trans_dquot_buf(tp, bp, |
Dave Chinner | c115541 | 2010-05-07 11:05:19 +1000 | [diff] [blame] | 261 | (type & XFS_DQ_USER ? XFS_BLF_UDQUOT_BUF : |
| 262 | ((type & XFS_DQ_PROJ) ? XFS_BLF_PDQUOT_BUF : |
| 263 | XFS_BLF_GDQUOT_BUF))); |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 264 | xfs_trans_log_buf(tp, bp, 0, BBTOB(q->qi_dqchunklen) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 267 | /* |
| 268 | * Initialize the dynamic speculative preallocation thresholds. The lo/hi |
| 269 | * watermarks correspond to the soft and hard limits by default. If a soft limit |
| 270 | * is not specified, we use 95% of the hard limit. |
| 271 | */ |
| 272 | void |
| 273 | xfs_dquot_set_prealloc_limits(struct xfs_dquot *dqp) |
| 274 | { |
| 275 | __uint64_t space; |
| 276 | |
| 277 | dqp->q_prealloc_hi_wmark = be64_to_cpu(dqp->q_core.d_blk_hardlimit); |
| 278 | dqp->q_prealloc_lo_wmark = be64_to_cpu(dqp->q_core.d_blk_softlimit); |
| 279 | if (!dqp->q_prealloc_lo_wmark) { |
| 280 | dqp->q_prealloc_lo_wmark = dqp->q_prealloc_hi_wmark; |
| 281 | do_div(dqp->q_prealloc_lo_wmark, 100); |
| 282 | dqp->q_prealloc_lo_wmark *= 95; |
| 283 | } |
| 284 | |
| 285 | space = dqp->q_prealloc_hi_wmark; |
| 286 | |
| 287 | do_div(space, 100); |
| 288 | dqp->q_low_space[XFS_QLOWSP_1_PCNT] = space; |
| 289 | dqp->q_low_space[XFS_QLOWSP_3_PCNT] = space * 3; |
| 290 | dqp->q_low_space[XFS_QLOWSP_5_PCNT] = space * 5; |
| 291 | } |
| 292 | |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 293 | STATIC bool |
| 294 | xfs_dquot_buf_verify_crc( |
| 295 | struct xfs_mount *mp, |
| 296 | struct xfs_buf *bp) |
| 297 | { |
| 298 | struct xfs_dqblk *d = (struct xfs_dqblk *)bp->b_addr; |
| 299 | int ndquots; |
| 300 | int i; |
| 301 | |
| 302 | if (!xfs_sb_version_hascrc(&mp->m_sb)) |
| 303 | return true; |
| 304 | |
| 305 | /* |
| 306 | * if we are in log recovery, the quota subsystem has not been |
| 307 | * initialised so we have no quotainfo structure. In that case, we need |
| 308 | * to manually calculate the number of dquots in the buffer. |
| 309 | */ |
| 310 | if (mp->m_quotainfo) |
| 311 | ndquots = mp->m_quotainfo->qi_dqperchunk; |
| 312 | else |
| 313 | ndquots = xfs_qm_calc_dquots_per_chunk(mp, |
| 314 | XFS_BB_TO_FSB(mp, bp->b_length)); |
| 315 | |
| 316 | for (i = 0; i < ndquots; i++, d++) { |
| 317 | if (!xfs_verify_cksum((char *)d, sizeof(struct xfs_dqblk), |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 318 | XFS_DQUOT_CRC_OFF)) |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 319 | return false; |
| 320 | if (!uuid_equal(&d->dd_uuid, &mp->m_sb.sb_uuid)) |
| 321 | return false; |
| 322 | } |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 323 | return true; |
| 324 | } |
| 325 | |
| 326 | STATIC bool |
| 327 | xfs_dquot_buf_verify( |
| 328 | struct xfs_mount *mp, |
| 329 | struct xfs_buf *bp) |
| 330 | { |
| 331 | struct xfs_dqblk *d = (struct xfs_dqblk *)bp->b_addr; |
| 332 | xfs_dqid_t id = 0; |
| 333 | int ndquots; |
| 334 | int i; |
| 335 | |
| 336 | /* |
| 337 | * if we are in log recovery, the quota subsystem has not been |
| 338 | * initialised so we have no quotainfo structure. In that case, we need |
| 339 | * to manually calculate the number of dquots in the buffer. |
| 340 | */ |
| 341 | if (mp->m_quotainfo) |
| 342 | ndquots = mp->m_quotainfo->qi_dqperchunk; |
| 343 | else |
| 344 | ndquots = xfs_qm_calc_dquots_per_chunk(mp, bp->b_length); |
| 345 | |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 346 | /* |
| 347 | * On the first read of the buffer, verify that each dquot is valid. |
| 348 | * We don't know what the id of the dquot is supposed to be, just that |
| 349 | * they should be increasing monotonically within the buffer. If the |
| 350 | * first id is corrupt, then it will fail on the second dquot in the |
| 351 | * buffer so corruptions could point to the wrong dquot in this case. |
| 352 | */ |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 353 | for (i = 0; i < ndquots; i++) { |
| 354 | struct xfs_disk_dquot *ddq; |
| 355 | int error; |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 356 | |
| 357 | ddq = &d[i].dd_diskdq; |
| 358 | |
| 359 | if (i == 0) |
| 360 | id = be32_to_cpu(ddq->d_id); |
| 361 | |
| 362 | error = xfs_qm_dqcheck(mp, ddq, id + i, 0, XFS_QMOPT_DOWARN, |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 363 | "xfs_dquot_buf_verify"); |
| 364 | if (error) |
| 365 | return false; |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 366 | } |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 367 | return true; |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | static void |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 371 | xfs_dquot_buf_read_verify( |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 372 | struct xfs_buf *bp) |
| 373 | { |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 374 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 375 | |
| 376 | if (!xfs_dquot_buf_verify_crc(mp, bp) || !xfs_dquot_buf_verify(mp, bp)) { |
| 377 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr); |
| 378 | xfs_buf_ioerror(bp, EFSCORRUPTED); |
| 379 | } |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 380 | } |
| 381 | |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 382 | /* |
| 383 | * we don't calculate the CRC here as that is done when the dquot is flushed to |
| 384 | * the buffer after the update is done. This ensures that the dquot in the |
| 385 | * buffer always has an up-to-date CRC value. |
| 386 | */ |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 387 | void |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 388 | xfs_dquot_buf_write_verify( |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 389 | struct xfs_buf *bp) |
| 390 | { |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 391 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 392 | |
| 393 | if (!xfs_dquot_buf_verify(mp, bp)) { |
| 394 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr); |
| 395 | xfs_buf_ioerror(bp, EFSCORRUPTED); |
| 396 | return; |
| 397 | } |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 400 | const struct xfs_buf_ops xfs_dquot_buf_ops = { |
| 401 | .verify_read = xfs_dquot_buf_read_verify, |
| 402 | .verify_write = xfs_dquot_buf_write_verify, |
| 403 | }; |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | /* |
| 406 | * Allocate a block and fill it with dquots. |
| 407 | * This is called when the bmapi finds a hole. |
| 408 | */ |
| 409 | STATIC int |
| 410 | xfs_qm_dqalloc( |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 411 | xfs_trans_t **tpp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | xfs_mount_t *mp, |
| 413 | xfs_dquot_t *dqp, |
| 414 | xfs_inode_t *quotip, |
| 415 | xfs_fileoff_t offset_fsb, |
| 416 | xfs_buf_t **O_bpp) |
| 417 | { |
| 418 | xfs_fsblock_t firstblock; |
| 419 | xfs_bmap_free_t flist; |
| 420 | xfs_bmbt_irec_t map; |
| 421 | int nmaps, error, committed; |
| 422 | xfs_buf_t *bp; |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 423 | xfs_trans_t *tp = *tpp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
| 425 | ASSERT(tp != NULL); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 426 | |
| 427 | trace_xfs_dqalloc(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * Initialize the bmap freelist prior to calling bmapi code. |
| 431 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 432 | xfs_bmap_init(&flist, &firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | xfs_ilock(quotip, XFS_ILOCK_EXCL); |
| 434 | /* |
| 435 | * Return if this type of quotas is turned off while we didn't |
| 436 | * have an inode lock |
| 437 | */ |
Chandra Seetharaman | 6967b96 | 2012-01-23 17:31:25 +0000 | [diff] [blame] | 438 | if (!xfs_this_quota_on(dqp->q_mount, dqp->dq_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | xfs_iunlock(quotip, XFS_ILOCK_EXCL); |
| 440 | return (ESRCH); |
| 441 | } |
| 442 | |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 443 | xfs_trans_ijoin(tp, quotip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | nmaps = 1; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 445 | error = xfs_bmapi_write(tp, quotip, offset_fsb, |
| 446 | XFS_DQUOT_CLUSTER_SIZE_FSB, XFS_BMAPI_METADATA, |
| 447 | &firstblock, XFS_QM_DQALLOC_SPACE_RES(mp), |
| 448 | &map, &nmaps, &flist); |
| 449 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | goto error0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | ASSERT(map.br_blockcount == XFS_DQUOT_CLUSTER_SIZE_FSB); |
| 452 | ASSERT(nmaps == 1); |
| 453 | ASSERT((map.br_startblock != DELAYSTARTBLOCK) && |
| 454 | (map.br_startblock != HOLESTARTBLOCK)); |
| 455 | |
| 456 | /* |
| 457 | * Keep track of the blkno to save a lookup later |
| 458 | */ |
| 459 | dqp->q_blkno = XFS_FSB_TO_DADDR(mp, map.br_startblock); |
| 460 | |
| 461 | /* now we can just get the buffer (there's nothing to read yet) */ |
| 462 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, |
| 463 | dqp->q_blkno, |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 464 | mp->m_quotainfo->qi_dqchunklen, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | 0); |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 466 | |
| 467 | error = xfs_buf_geterror(bp); |
| 468 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | goto error1; |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 470 | bp->b_ops = &xfs_dquot_buf_ops; |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* |
| 473 | * Make a chunk of dquots out of this buffer and log |
| 474 | * the entire thing. |
| 475 | */ |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 476 | xfs_qm_init_dquot_blk(tp, mp, be32_to_cpu(dqp->q_core.d_id), |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 477 | dqp->dq_flags & XFS_DQ_ALLTYPES, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 479 | /* |
| 480 | * xfs_bmap_finish() may commit the current transaction and |
| 481 | * start a second transaction if the freelist is not empty. |
| 482 | * |
| 483 | * Since we still want to modify this buffer, we need to |
| 484 | * ensure that the buffer is not released on commit of |
| 485 | * the first transaction and ensure the buffer is added to the |
| 486 | * second transaction. |
| 487 | * |
| 488 | * If there is only one transaction then don't stop the buffer |
| 489 | * from being released when it commits later on. |
| 490 | */ |
| 491 | |
| 492 | xfs_trans_bhold(tp, bp); |
| 493 | |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 494 | if ((error = xfs_bmap_finish(tpp, &flist, &committed))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | goto error1; |
| 496 | } |
| 497 | |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 498 | if (committed) { |
| 499 | tp = *tpp; |
| 500 | xfs_trans_bjoin(tp, bp); |
| 501 | } else { |
| 502 | xfs_trans_bhold_release(tp, bp); |
| 503 | } |
| 504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | *O_bpp = bp; |
| 506 | return 0; |
| 507 | |
| 508 | error1: |
| 509 | xfs_bmap_cancel(&flist); |
| 510 | error0: |
| 511 | xfs_iunlock(quotip, XFS_ILOCK_EXCL); |
| 512 | |
| 513 | return (error); |
| 514 | } |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 515 | STATIC int |
| 516 | xfs_qm_dqrepair( |
| 517 | struct xfs_mount *mp, |
| 518 | struct xfs_trans *tp, |
| 519 | struct xfs_dquot *dqp, |
| 520 | xfs_dqid_t firstid, |
| 521 | struct xfs_buf **bpp) |
| 522 | { |
| 523 | int error; |
| 524 | struct xfs_disk_dquot *ddq; |
| 525 | struct xfs_dqblk *d; |
| 526 | int i; |
| 527 | |
| 528 | /* |
| 529 | * Read the buffer without verification so we get the corrupted |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 530 | * buffer returned to us. make sure we verify it on write, though. |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 531 | */ |
| 532 | error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, dqp->q_blkno, |
| 533 | mp->m_quotainfo->qi_dqchunklen, |
| 534 | 0, bpp, NULL); |
| 535 | |
| 536 | if (error) { |
| 537 | ASSERT(*bpp == NULL); |
| 538 | return XFS_ERROR(error); |
| 539 | } |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 540 | (*bpp)->b_ops = &xfs_dquot_buf_ops; |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 541 | |
| 542 | ASSERT(xfs_buf_islocked(*bpp)); |
| 543 | d = (struct xfs_dqblk *)(*bpp)->b_addr; |
| 544 | |
| 545 | /* Do the actual repair of dquots in this buffer */ |
| 546 | for (i = 0; i < mp->m_quotainfo->qi_dqperchunk; i++) { |
| 547 | ddq = &d[i].dd_diskdq; |
| 548 | error = xfs_qm_dqcheck(mp, ddq, firstid + i, |
| 549 | dqp->dq_flags & XFS_DQ_ALLTYPES, |
| 550 | XFS_QMOPT_DQREPAIR, "xfs_qm_dqrepair"); |
| 551 | if (error) { |
| 552 | /* repair failed, we're screwed */ |
| 553 | xfs_trans_brelse(tp, *bpp); |
| 554 | return XFS_ERROR(EIO); |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | /* |
| 562 | * Maps a dquot to the buffer containing its on-disk version. |
| 563 | * This returns a ptr to the buffer containing the on-disk dquot |
| 564 | * in the bpp param, and a ptr to the on-disk dquot within that buffer |
| 565 | */ |
| 566 | STATIC int |
| 567 | xfs_qm_dqtobp( |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 568 | xfs_trans_t **tpp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | xfs_dquot_t *dqp, |
| 570 | xfs_disk_dquot_t **O_ddpp, |
| 571 | xfs_buf_t **O_bpp, |
| 572 | uint flags) |
| 573 | { |
Chandra Seetharaman | 113a568 | 2013-06-27 17:25:07 -0500 | [diff] [blame] | 574 | struct xfs_bmbt_irec map; |
| 575 | int nmaps = 1, error; |
| 576 | struct xfs_buf *bp; |
Chandra Seetharaman | 995961c | 2013-06-27 17:25:06 -0500 | [diff] [blame] | 577 | struct xfs_inode *quotip = xfs_dq_to_quota_inode(dqp); |
Chandra Seetharaman | 113a568 | 2013-06-27 17:25:07 -0500 | [diff] [blame] | 578 | struct xfs_mount *mp = dqp->q_mount; |
| 579 | xfs_dqid_t id = be32_to_cpu(dqp->q_core.d_id); |
| 580 | struct xfs_trans *tp = (tpp ? *tpp : NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 582 | dqp->q_fileoffset = (xfs_fileoff_t)id / mp->m_quotainfo->qi_dqperchunk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 584 | xfs_ilock(quotip, XFS_ILOCK_SHARED); |
Chandra Seetharaman | 6967b96 | 2012-01-23 17:31:25 +0000 | [diff] [blame] | 585 | if (!xfs_this_quota_on(dqp->q_mount, dqp->dq_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | /* |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 587 | * Return if this type of quotas is turned off while we |
| 588 | * didn't have the quota inode lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | xfs_iunlock(quotip, XFS_ILOCK_SHARED); |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 591 | return ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
| 594 | /* |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 595 | * Find the block map; no allocations yet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | */ |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 597 | error = xfs_bmapi_read(quotip, dqp->q_fileoffset, |
| 598 | XFS_DQUOT_CLUSTER_SIZE_FSB, &map, &nmaps, 0); |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 599 | |
| 600 | xfs_iunlock(quotip, XFS_ILOCK_SHARED); |
| 601 | if (error) |
| 602 | return error; |
| 603 | |
| 604 | ASSERT(nmaps == 1); |
| 605 | ASSERT(map.br_blockcount == 1); |
| 606 | |
| 607 | /* |
| 608 | * Offset of dquot in the (fixed sized) dquot chunk. |
| 609 | */ |
| 610 | dqp->q_bufoffset = (id % mp->m_quotainfo->qi_dqperchunk) * |
| 611 | sizeof(xfs_dqblk_t); |
| 612 | |
| 613 | ASSERT(map.br_startblock != DELAYSTARTBLOCK); |
| 614 | if (map.br_startblock == HOLESTARTBLOCK) { |
| 615 | /* |
| 616 | * We don't allocate unless we're asked to |
| 617 | */ |
| 618 | if (!(flags & XFS_QMOPT_DQALLOC)) |
| 619 | return ENOENT; |
| 620 | |
| 621 | ASSERT(tp); |
| 622 | error = xfs_qm_dqalloc(tpp, mp, dqp, quotip, |
| 623 | dqp->q_fileoffset, &bp); |
| 624 | if (error) |
| 625 | return error; |
| 626 | tp = *tpp; |
| 627 | } else { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 628 | trace_xfs_dqtobp_read(dqp); |
| 629 | |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 630 | /* |
| 631 | * store the blkno etc so that we don't have to do the |
| 632 | * mapping all the time |
| 633 | */ |
| 634 | dqp->q_blkno = XFS_FSB_TO_DADDR(mp, map.br_startblock); |
| 635 | |
Christoph Hellwig | 8a7b8a8 | 2010-04-20 17:01:30 +1000 | [diff] [blame] | 636 | error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, |
| 637 | dqp->q_blkno, |
| 638 | mp->m_quotainfo->qi_dqchunklen, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 639 | 0, &bp, &xfs_dquot_buf_ops); |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 640 | |
| 641 | if (error == EFSCORRUPTED && (flags & XFS_QMOPT_DQREPAIR)) { |
| 642 | xfs_dqid_t firstid = (xfs_dqid_t)map.br_startoff * |
| 643 | mp->m_quotainfo->qi_dqperchunk; |
| 644 | ASSERT(bp == NULL); |
| 645 | error = xfs_qm_dqrepair(mp, tp, dqp, firstid, &bp); |
| 646 | } |
| 647 | |
| 648 | if (error) { |
| 649 | ASSERT(bp == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | return XFS_ERROR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
| 653 | |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 654 | ASSERT(xfs_buf_islocked(bp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | *O_bpp = bp; |
Dave Chinner | c631919 | 2012-11-14 17:50:13 +1100 | [diff] [blame] | 656 | *O_ddpp = bp->b_addr + dqp->q_bufoffset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
| 658 | return (0); |
| 659 | } |
| 660 | |
| 661 | |
| 662 | /* |
| 663 | * Read in the ondisk dquot using dqtobp() then copy it to an incore version, |
| 664 | * and release the buffer immediately. |
| 665 | * |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 666 | * If XFS_QMOPT_DQALLOC is set, allocate a dquot on disk if it needed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | */ |
Christoph Hellwig | 7ae4440 | 2011-12-06 21:58:25 +0000 | [diff] [blame] | 668 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | xfs_qm_dqread( |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 670 | struct xfs_mount *mp, |
| 671 | xfs_dqid_t id, |
| 672 | uint type, |
| 673 | uint flags, |
| 674 | struct xfs_dquot **O_dqpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | { |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 676 | struct xfs_dquot *dqp; |
| 677 | struct xfs_disk_dquot *ddqp; |
| 678 | struct xfs_buf *bp; |
| 679 | struct xfs_trans *tp = NULL; |
| 680 | int error; |
| 681 | int cancelflags = 0; |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 682 | |
Christoph Hellwig | 92b2e5b | 2012-02-01 13:57:20 +0000 | [diff] [blame] | 683 | |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 684 | dqp = kmem_zone_zalloc(xfs_qm_dqzone, KM_SLEEP); |
Christoph Hellwig | 92b2e5b | 2012-02-01 13:57:20 +0000 | [diff] [blame] | 685 | |
| 686 | dqp->dq_flags = type; |
| 687 | dqp->q_core.d_id = cpu_to_be32(id); |
| 688 | dqp->q_mount = mp; |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 689 | INIT_LIST_HEAD(&dqp->q_lru); |
Christoph Hellwig | 92b2e5b | 2012-02-01 13:57:20 +0000 | [diff] [blame] | 690 | mutex_init(&dqp->q_qlock); |
| 691 | init_waitqueue_head(&dqp->q_pinwait); |
| 692 | |
| 693 | /* |
| 694 | * Because we want to use a counting completion, complete |
| 695 | * the flush completion once to allow a single access to |
| 696 | * the flush completion without blocking. |
| 697 | */ |
| 698 | init_completion(&dqp->q_flush); |
| 699 | complete(&dqp->q_flush); |
| 700 | |
| 701 | /* |
| 702 | * Make sure group quotas have a different lock class than user |
| 703 | * quotas. |
| 704 | */ |
| 705 | if (!(type & XFS_DQ_USER)) |
| 706 | lockdep_set_class(&dqp->q_qlock, &xfs_dquot_other_class); |
| 707 | |
Christoph Hellwig | 48776fd | 2012-03-13 08:52:33 +0000 | [diff] [blame] | 708 | XFS_STATS_INC(xs_qm_dquot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 710 | trace_xfs_dqread(dqp); |
| 711 | |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 712 | if (flags & XFS_QMOPT_DQALLOC) { |
| 713 | tp = xfs_trans_alloc(mp, XFS_TRANS_QM_DQALLOC); |
| 714 | error = xfs_trans_reserve(tp, XFS_QM_DQALLOC_SPACE_RES(mp), |
Jeff Liu | 4800104 | 2013-01-28 21:27:04 +0800 | [diff] [blame] | 715 | XFS_QM_DQALLOC_LOG_RES(mp), 0, |
| 716 | XFS_TRANS_PERM_LOG_RES, |
| 717 | XFS_WRITE_LOG_COUNT); |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 718 | if (error) |
| 719 | goto error1; |
| 720 | cancelflags = XFS_TRANS_RELEASE_LOG_RES; |
| 721 | } |
| 722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | /* |
| 724 | * get a pointer to the on-disk dquot and the buffer containing it |
| 725 | * dqp already knows its own type (GROUP/USER). |
| 726 | */ |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 727 | error = xfs_qm_dqtobp(&tp, dqp, &ddqp, &bp, flags); |
| 728 | if (error) { |
| 729 | /* |
| 730 | * This can happen if quotas got turned off (ESRCH), |
| 731 | * or if the dquot didn't exist on disk and we ask to |
| 732 | * allocate (ENOENT). |
| 733 | */ |
| 734 | trace_xfs_dqread_fail(dqp); |
| 735 | cancelflags |= XFS_TRANS_ABORT; |
| 736 | goto error1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | /* copy everything from disk dquot to the incore dquot */ |
| 740 | memcpy(&dqp->q_core, ddqp, sizeof(xfs_disk_dquot_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | xfs_qm_dquot_logitem_init(dqp); |
| 742 | |
| 743 | /* |
| 744 | * Reservation counters are defined as reservation plus current usage |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 745 | * to avoid having to add every time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | */ |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 747 | dqp->q_res_bcount = be64_to_cpu(ddqp->d_bcount); |
| 748 | dqp->q_res_icount = be64_to_cpu(ddqp->d_icount); |
| 749 | dqp->q_res_rtbcount = be64_to_cpu(ddqp->d_rtbcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Brian Foster | b136645 | 2013-03-18 10:51:46 -0400 | [diff] [blame] | 751 | /* initialize the dquot speculative prealloc thresholds */ |
| 752 | xfs_dquot_set_prealloc_limits(dqp); |
| 753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | /* Mark the buf so that this will stay incore a little longer */ |
Christoph Hellwig | 38f2323 | 2011-10-10 16:52:45 +0000 | [diff] [blame] | 755 | xfs_buf_set_ref(bp, XFS_DQUOT_REF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
| 757 | /* |
| 758 | * We got the buffer with a xfs_trans_read_buf() (in dqtobp()) |
| 759 | * So we need to release with xfs_trans_brelse(). |
| 760 | * The strategy here is identical to that of inodes; we lock |
| 761 | * the dquot in xfs_qm_dqget() before making it accessible to |
| 762 | * others. This is because dquots, like inodes, need a good level of |
| 763 | * concurrency, and we don't want to take locks on the entire buffers |
| 764 | * for dquot accesses. |
| 765 | * Note also that the dquot buffer may even be dirty at this point, if |
| 766 | * this particular dquot was repaired. We still aren't afraid to |
| 767 | * brelse it because we have the changes incore. |
| 768 | */ |
Christoph Hellwig | 0c842ad | 2011-07-08 14:36:19 +0200 | [diff] [blame] | 769 | ASSERT(xfs_buf_islocked(bp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | xfs_trans_brelse(tp, bp); |
| 771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | if (tp) { |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 773 | error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES); |
| 774 | if (error) |
| 775 | goto error0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | *O_dqpp = dqp; |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 779 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 781 | error1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | if (tp) |
| 783 | xfs_trans_cancel(tp, cancelflags); |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 784 | error0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | xfs_qm_dqdestroy(dqp); |
| 786 | *O_dqpp = NULL; |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 787 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | * Given the file system, inode OR id, and type (UDQUOT/GDQUOT), return a |
| 792 | * a locked dquot, doing an allocation (if requested) as needed. |
| 793 | * When both an inode and an id are given, the inode's id takes precedence. |
| 794 | * That is, if the id changes while we don't hold the ilock inside this |
| 795 | * function, the new dquot is returned, not necessarily the one requested |
| 796 | * in the id argument. |
| 797 | */ |
| 798 | int |
| 799 | xfs_qm_dqget( |
| 800 | xfs_mount_t *mp, |
| 801 | xfs_inode_t *ip, /* locked inode (optional) */ |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 802 | xfs_dqid_t id, /* uid/projid/gid depending on type */ |
| 803 | uint type, /* XFS_DQ_USER/XFS_DQ_PROJ/XFS_DQ_GROUP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | uint flags, /* DQALLOC, DQSUSER, DQREPAIR, DOWARN */ |
| 805 | xfs_dquot_t **O_dqpp) /* OUT : locked incore dquot */ |
| 806 | { |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 807 | struct xfs_quotainfo *qi = mp->m_quotainfo; |
Chandra Seetharaman | 329e087 | 2013-06-27 17:25:05 -0500 | [diff] [blame] | 808 | struct radix_tree_root *tree = xfs_dquot_tree(qi, type); |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 809 | struct xfs_dquot *dqp; |
| 810 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | ASSERT(XFS_IS_QUOTA_RUNNING(mp)); |
| 813 | if ((! XFS_IS_UQUOTA_ON(mp) && type == XFS_DQ_USER) || |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 814 | (! XFS_IS_PQUOTA_ON(mp) && type == XFS_DQ_PROJ) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | (! XFS_IS_GQUOTA_ON(mp) && type == XFS_DQ_GROUP)) { |
| 816 | return (ESRCH); |
| 817 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
| 819 | #ifdef DEBUG |
| 820 | if (xfs_do_dqerror) { |
| 821 | if ((xfs_dqerror_target == mp->m_ddev_targp) && |
| 822 | (xfs_dqreq_num++ % xfs_dqerror_mod) == 0) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 823 | xfs_debug(mp, "Returning error in dqget"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | return (EIO); |
| 825 | } |
| 826 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | |
Nathan Scott | c8ad20f | 2005-06-21 15:38:48 +1000 | [diff] [blame] | 828 | ASSERT(type == XFS_DQ_USER || |
| 829 | type == XFS_DQ_PROJ || |
| 830 | type == XFS_DQ_GROUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | if (ip) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 832 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Chandra Seetharaman | 3673141 | 2012-01-23 17:31:30 +0000 | [diff] [blame] | 833 | ASSERT(xfs_inode_dquot(ip, type) == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | } |
| 835 | #endif |
Christoph Hellwig | 9267855 | 2011-12-06 21:58:18 +0000 | [diff] [blame] | 836 | |
| 837 | restart: |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 838 | mutex_lock(&qi->qi_tree_lock); |
| 839 | dqp = radix_tree_lookup(tree, id); |
| 840 | if (dqp) { |
| 841 | xfs_dqlock(dqp); |
| 842 | if (dqp->dq_flags & XFS_DQ_FREEING) { |
| 843 | xfs_dqunlock(dqp); |
| 844 | mutex_unlock(&qi->qi_tree_lock); |
| 845 | trace_xfs_dqget_freeing(dqp); |
| 846 | delay(1); |
| 847 | goto restart; |
| 848 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 850 | dqp->q_nrefs++; |
| 851 | mutex_unlock(&qi->qi_tree_lock); |
| 852 | |
| 853 | trace_xfs_dqget_hit(dqp); |
Christoph Hellwig | 48776fd | 2012-03-13 08:52:33 +0000 | [diff] [blame] | 854 | XFS_STATS_INC(xs_qm_dqcachehits); |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 855 | *O_dqpp = dqp; |
| 856 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | } |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 858 | mutex_unlock(&qi->qi_tree_lock); |
| 859 | XFS_STATS_INC(xs_qm_dqcachemisses); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | |
| 861 | /* |
| 862 | * Dquot cache miss. We don't want to keep the inode lock across |
| 863 | * a (potential) disk read. Also we don't want to deal with the lock |
| 864 | * ordering between quotainode and this inode. OTOH, dropping the inode |
| 865 | * lock here means dealing with a chown that can happen before |
| 866 | * we re-acquire the lock. |
| 867 | */ |
| 868 | if (ip) |
| 869 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Christoph Hellwig | 97e7ade | 2011-12-06 21:58:24 +0000 | [diff] [blame] | 871 | error = xfs_qm_dqread(mp, id, type, flags, &dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Christoph Hellwig | 7ae4440 | 2011-12-06 21:58:25 +0000 | [diff] [blame] | 873 | if (ip) |
| 874 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 875 | |
| 876 | if (error) |
| 877 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | if (ip) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | /* |
| 881 | * A dquot could be attached to this inode by now, since |
| 882 | * we had dropped the ilock. |
| 883 | */ |
Chandra Seetharaman | 3673141 | 2012-01-23 17:31:30 +0000 | [diff] [blame] | 884 | if (xfs_this_quota_on(mp, type)) { |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 885 | struct xfs_dquot *dqp1; |
| 886 | |
Chandra Seetharaman | 3673141 | 2012-01-23 17:31:30 +0000 | [diff] [blame] | 887 | dqp1 = xfs_inode_dquot(ip, type); |
| 888 | if (dqp1) { |
Christoph Hellwig | 191f848 | 2010-04-20 17:01:53 +1000 | [diff] [blame] | 889 | xfs_qm_dqdestroy(dqp); |
Chandra Seetharaman | 3673141 | 2012-01-23 17:31:30 +0000 | [diff] [blame] | 890 | dqp = dqp1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | xfs_dqlock(dqp); |
| 892 | goto dqret; |
| 893 | } |
| 894 | } else { |
Chandra Seetharaman | 3673141 | 2012-01-23 17:31:30 +0000 | [diff] [blame] | 895 | /* inode stays locked on return */ |
| 896 | xfs_qm_dqdestroy(dqp); |
| 897 | return XFS_ERROR(ESRCH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } |
| 899 | } |
| 900 | |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 901 | mutex_lock(&qi->qi_tree_lock); |
| 902 | error = -radix_tree_insert(tree, id, dqp); |
| 903 | if (unlikely(error)) { |
| 904 | WARN_ON(error != EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 906 | /* |
| 907 | * Duplicate found. Just throw away the new dquot and start |
| 908 | * over. |
| 909 | */ |
| 910 | mutex_unlock(&qi->qi_tree_lock); |
| 911 | trace_xfs_dqget_dup(dqp); |
| 912 | xfs_qm_dqdestroy(dqp); |
| 913 | XFS_STATS_INC(xs_qm_dquot_dups); |
| 914 | goto restart; |
| 915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
| 917 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | * We return a locked dquot to the caller, with a reference taken |
| 919 | */ |
| 920 | xfs_dqlock(dqp); |
| 921 | dqp->q_nrefs = 1; |
| 922 | |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 923 | qi->qi_dquots++; |
Christoph Hellwig | 9f920f1 | 2012-03-13 08:52:35 +0000 | [diff] [blame] | 924 | mutex_unlock(&qi->qi_tree_lock); |
| 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | dqret: |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 927 | ASSERT((ip == NULL) || xfs_isilocked(ip, XFS_ILOCK_EXCL)); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 928 | trace_xfs_dqget_miss(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | *O_dqpp = dqp; |
| 930 | return (0); |
| 931 | } |
| 932 | |
| 933 | |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 934 | STATIC void |
| 935 | xfs_qm_dqput_final( |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 936 | struct xfs_dquot *dqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | { |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 938 | struct xfs_quotainfo *qi = dqp->q_mount->m_quotainfo; |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 939 | struct xfs_dquot *gdqp; |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 940 | struct xfs_dquot *pdqp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 942 | trace_xfs_dqput_free(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 944 | mutex_lock(&qi->qi_lru_lock); |
| 945 | if (list_empty(&dqp->q_lru)) { |
| 946 | list_add_tail(&dqp->q_lru, &qi->qi_lru_list); |
| 947 | qi->qi_lru_count++; |
Christoph Hellwig | 48776fd | 2012-03-13 08:52:33 +0000 | [diff] [blame] | 948 | XFS_STATS_INC(xs_qm_dquot_unused); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 950 | mutex_unlock(&qi->qi_lru_lock); |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 951 | |
| 952 | /* |
| 953 | * If we just added a udquot to the freelist, then we want to release |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 954 | * the gdquot/pdquot reference that it (probably) has. Otherwise it'll |
| 955 | * keep the gdquot/pdquot from getting reclaimed. |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 956 | */ |
| 957 | gdqp = dqp->q_gdquot; |
| 958 | if (gdqp) { |
| 959 | xfs_dqlock(gdqp); |
| 960 | dqp->q_gdquot = NULL; |
| 961 | } |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 962 | |
| 963 | pdqp = dqp->q_pdquot; |
| 964 | if (pdqp) { |
| 965 | xfs_dqlock(pdqp); |
| 966 | dqp->q_pdquot = NULL; |
| 967 | } |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 968 | xfs_dqunlock(dqp); |
| 969 | |
| 970 | /* |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 971 | * If we had a group/project quota hint, release it now. |
Christoph Hellwig | bf72de3 | 2011-12-06 21:58:19 +0000 | [diff] [blame] | 972 | */ |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 973 | if (gdqp) |
| 974 | xfs_qm_dqput(gdqp); |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 975 | if (pdqp) |
| 976 | xfs_qm_dqput(pdqp); |
Christoph Hellwig | f8739c3 | 2012-03-13 08:52:34 +0000 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | /* |
| 980 | * Release a reference to the dquot (decrement ref-count) and unlock it. |
| 981 | * |
| 982 | * If there is a group quota attached to this dquot, carefully release that |
| 983 | * too without tripping over deadlocks'n'stuff. |
| 984 | */ |
| 985 | void |
| 986 | xfs_qm_dqput( |
| 987 | struct xfs_dquot *dqp) |
| 988 | { |
| 989 | ASSERT(dqp->q_nrefs > 0); |
| 990 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
| 991 | |
| 992 | trace_xfs_dqput(dqp); |
| 993 | |
| 994 | if (--dqp->q_nrefs > 0) |
| 995 | xfs_dqunlock(dqp); |
| 996 | else |
| 997 | xfs_qm_dqput_final(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | /* |
| 1001 | * Release a dquot. Flush it if dirty, then dqput() it. |
| 1002 | * dquot must not be locked. |
| 1003 | */ |
| 1004 | void |
| 1005 | xfs_qm_dqrele( |
| 1006 | xfs_dquot_t *dqp) |
| 1007 | { |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1008 | if (!dqp) |
| 1009 | return; |
| 1010 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1011 | trace_xfs_dqrele(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | |
| 1013 | xfs_dqlock(dqp); |
| 1014 | /* |
| 1015 | * We don't care to flush it if the dquot is dirty here. |
| 1016 | * That will create stutters that we want to avoid. |
| 1017 | * Instead we do a delayed write when we try to reclaim |
| 1018 | * a dirty dquot. Also xfs_sync will take part of the burden... |
| 1019 | */ |
| 1020 | xfs_qm_dqput(dqp); |
| 1021 | } |
| 1022 | |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1023 | /* |
| 1024 | * This is the dquot flushing I/O completion routine. It is called |
| 1025 | * from interrupt level when the buffer containing the dquot is |
| 1026 | * flushed to disk. It is responsible for removing the dquot logitem |
| 1027 | * from the AIL if it has not been re-logged, and unlocking the dquot's |
| 1028 | * flush lock. This behavior is very similar to that of inodes.. |
| 1029 | */ |
| 1030 | STATIC void |
| 1031 | xfs_qm_dqflush_done( |
| 1032 | struct xfs_buf *bp, |
| 1033 | struct xfs_log_item *lip) |
| 1034 | { |
| 1035 | xfs_dq_logitem_t *qip = (struct xfs_dq_logitem *)lip; |
| 1036 | xfs_dquot_t *dqp = qip->qli_dquot; |
| 1037 | struct xfs_ail *ailp = lip->li_ailp; |
| 1038 | |
| 1039 | /* |
| 1040 | * We only want to pull the item from the AIL if its |
| 1041 | * location in the log has not changed since we started the flush. |
| 1042 | * Thus, we only bother if the dquot's lsn has |
| 1043 | * not changed. First we check the lsn outside the lock |
| 1044 | * since it's cheaper, and then we recheck while |
| 1045 | * holding the lock before removing the dquot from the AIL. |
| 1046 | */ |
| 1047 | if ((lip->li_flags & XFS_LI_IN_AIL) && |
| 1048 | lip->li_lsn == qip->qli_flush_lsn) { |
| 1049 | |
| 1050 | /* xfs_trans_ail_delete() drops the AIL lock. */ |
| 1051 | spin_lock(&ailp->xa_lock); |
| 1052 | if (lip->li_lsn == qip->qli_flush_lsn) |
Dave Chinner | 04913fd | 2012-04-23 15:58:41 +1000 | [diff] [blame] | 1053 | xfs_trans_ail_delete(ailp, lip, SHUTDOWN_CORRUPT_INCORE); |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1054 | else |
| 1055 | spin_unlock(&ailp->xa_lock); |
| 1056 | } |
| 1057 | |
| 1058 | /* |
| 1059 | * Release the dq's flush lock since we're done with it. |
| 1060 | */ |
| 1061 | xfs_dqfunlock(dqp); |
| 1062 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
| 1064 | /* |
| 1065 | * Write a modified dquot to disk. |
| 1066 | * The dquot must be locked and the flush lock too taken by caller. |
| 1067 | * The flush lock will not be unlocked until the dquot reaches the disk, |
| 1068 | * but the dquot is free to be unlocked and modified by the caller |
| 1069 | * in the interim. Dquot is still locked on return. This behavior is |
| 1070 | * identical to that of inodes. |
| 1071 | */ |
| 1072 | int |
| 1073 | xfs_qm_dqflush( |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1074 | struct xfs_dquot *dqp, |
| 1075 | struct xfs_buf **bpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | { |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1077 | struct xfs_mount *mp = dqp->q_mount; |
| 1078 | struct xfs_buf *bp; |
| 1079 | struct xfs_disk_dquot *ddqp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | |
| 1082 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
David Chinner | e1f49cf | 2008-08-13 16:41:43 +1000 | [diff] [blame] | 1083 | ASSERT(!completion_done(&dqp->q_flush)); |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1084 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1085 | trace_xfs_dqflush(dqp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1087 | *bpp = NULL; |
| 1088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | xfs_qm_dqunpin_wait(dqp); |
| 1090 | |
| 1091 | /* |
| 1092 | * This may have been unpinned because the filesystem is shutting |
| 1093 | * down forcibly. If that's the case we must not write this dquot |
Christoph Hellwig | dea9609 | 2012-04-23 15:58:31 +1000 | [diff] [blame] | 1094 | * to disk, because the log record didn't make it to disk. |
| 1095 | * |
| 1096 | * We also have to remove the log item from the AIL in this case, |
| 1097 | * as we wait for an emptry AIL as part of the unmount process. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | */ |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1099 | if (XFS_FORCED_SHUTDOWN(mp)) { |
Christoph Hellwig | dea9609 | 2012-04-23 15:58:31 +1000 | [diff] [blame] | 1100 | struct xfs_log_item *lip = &dqp->q_logitem.qli_item; |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1101 | dqp->dq_flags &= ~XFS_DQ_DIRTY; |
Christoph Hellwig | dea9609 | 2012-04-23 15:58:31 +1000 | [diff] [blame] | 1102 | |
| 1103 | spin_lock(&mp->m_ail->xa_lock); |
| 1104 | if (lip->li_flags & XFS_LI_IN_AIL) |
Dave Chinner | 04913fd | 2012-04-23 15:58:41 +1000 | [diff] [blame] | 1105 | xfs_trans_ail_delete(mp->m_ail, lip, |
| 1106 | SHUTDOWN_CORRUPT_INCORE); |
Christoph Hellwig | dea9609 | 2012-04-23 15:58:31 +1000 | [diff] [blame] | 1107 | else |
| 1108 | spin_unlock(&mp->m_ail->xa_lock); |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1109 | error = XFS_ERROR(EIO); |
| 1110 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | /* |
| 1114 | * Get the buffer containing the on-disk dquot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | */ |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1116 | error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, dqp->q_blkno, |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 1117 | mp->m_quotainfo->qi_dqchunklen, 0, &bp, NULL); |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1118 | if (error) |
| 1119 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1121 | /* |
| 1122 | * Calculate the location of the dquot inside the buffer. |
| 1123 | */ |
Chandra Seetharaman | 6292604 | 2011-07-22 23:40:15 +0000 | [diff] [blame] | 1124 | ddqp = bp->b_addr + dqp->q_bufoffset; |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1125 | |
| 1126 | /* |
| 1127 | * A simple sanity check in case we got a corrupted dquot.. |
| 1128 | */ |
Dave Chinner | a0fa2b6 | 2011-03-07 10:01:35 +1100 | [diff] [blame] | 1129 | error = xfs_qm_dqcheck(mp, &dqp->q_core, be32_to_cpu(ddqp->d_id), 0, |
| 1130 | XFS_QMOPT_DOWARN, "dqflush (incore copy)"); |
| 1131 | if (error) { |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1132 | xfs_buf_relse(bp); |
| 1133 | xfs_dqfunlock(dqp); |
| 1134 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | return XFS_ERROR(EIO); |
| 1136 | } |
| 1137 | |
| 1138 | /* This is the only portion of data that needs to persist */ |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1139 | memcpy(ddqp, &dqp->q_core, sizeof(xfs_disk_dquot_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | |
| 1141 | /* |
| 1142 | * Clear the dirty field and remember the flush lsn for later use. |
| 1143 | */ |
Christoph Hellwig | acecf1b | 2010-09-06 01:44:45 +0000 | [diff] [blame] | 1144 | dqp->dq_flags &= ~XFS_DQ_DIRTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
David Chinner | 7b2e2a3 | 2008-10-30 17:39:12 +1100 | [diff] [blame] | 1146 | xfs_trans_ail_copy_lsn(mp->m_ail, &dqp->q_logitem.qli_flush_lsn, |
| 1147 | &dqp->q_logitem.qli_item.li_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | |
| 1149 | /* |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 1150 | * copy the lsn into the on-disk dquot now while we have the in memory |
| 1151 | * dquot here. This can't be done later in the write verifier as we |
| 1152 | * can't get access to the log item at that point in time. |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 1153 | * |
| 1154 | * We also calculate the CRC here so that the on-disk dquot in the |
| 1155 | * buffer always has a valid CRC. This ensures there is no possibility |
| 1156 | * of a dquot without an up-to-date CRC getting to disk. |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 1157 | */ |
| 1158 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 1159 | struct xfs_dqblk *dqb = (struct xfs_dqblk *)ddqp; |
| 1160 | |
| 1161 | dqb->dd_lsn = cpu_to_be64(dqp->q_logitem.qli_item.li_lsn); |
Dave Chinner | 6fcdc59 | 2013-06-03 15:28:46 +1000 | [diff] [blame] | 1162 | xfs_update_cksum((char *)dqb, sizeof(struct xfs_dqblk), |
| 1163 | XFS_DQUOT_CRC_OFF); |
Christoph Hellwig | 3fe58f3 | 2013-04-03 16:11:16 +1100 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | * Attach an iodone routine so that we can remove this dquot from the |
| 1168 | * AIL and release the flush lock once the dquot is synced to disk. |
| 1169 | */ |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1170 | xfs_buf_attach_iodone(bp, xfs_qm_dqflush_done, |
| 1171 | &dqp->q_logitem.qli_item); |
| 1172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | /* |
| 1174 | * If the buffer is pinned then push on the log so we won't |
| 1175 | * get stuck waiting in the write for too long. |
| 1176 | */ |
Chandra Seetharaman | 811e64c | 2011-07-22 23:40:27 +0000 | [diff] [blame] | 1177 | if (xfs_buf_ispinned(bp)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1178 | trace_xfs_dqflush_force(dqp); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 1179 | xfs_log_force(mp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } |
| 1181 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1182 | trace_xfs_dqflush_done(dqp); |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1183 | *bpp = bp; |
| 1184 | return 0; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1185 | |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 1186 | out_unlock: |
| 1187 | xfs_dqfunlock(dqp); |
| 1188 | return XFS_ERROR(EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Christoph Hellwig | 5bb87a3 | 2009-01-19 02:03:19 +0100 | [diff] [blame] | 1191 | /* |
| 1192 | * Lock two xfs_dquot structures. |
| 1193 | * |
| 1194 | * To avoid deadlocks we always lock the quota structure with |
| 1195 | * the lowerd id first. |
| 1196 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | void |
| 1198 | xfs_dqlock2( |
| 1199 | xfs_dquot_t *d1, |
| 1200 | xfs_dquot_t *d2) |
| 1201 | { |
| 1202 | if (d1 && d2) { |
| 1203 | ASSERT(d1 != d2); |
Christoph Hellwig | 1149d96 | 2005-11-02 15:01:12 +1100 | [diff] [blame] | 1204 | if (be32_to_cpu(d1->q_core.d_id) > |
| 1205 | be32_to_cpu(d2->q_core.d_id)) { |
Christoph Hellwig | 5bb87a3 | 2009-01-19 02:03:19 +0100 | [diff] [blame] | 1206 | mutex_lock(&d2->q_qlock); |
| 1207 | mutex_lock_nested(&d1->q_qlock, XFS_QLOCK_NESTED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | } else { |
Christoph Hellwig | 5bb87a3 | 2009-01-19 02:03:19 +0100 | [diff] [blame] | 1209 | mutex_lock(&d1->q_qlock); |
| 1210 | mutex_lock_nested(&d2->q_qlock, XFS_QLOCK_NESTED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | } |
Christoph Hellwig | 5bb87a3 | 2009-01-19 02:03:19 +0100 | [diff] [blame] | 1212 | } else if (d1) { |
| 1213 | mutex_lock(&d1->q_qlock); |
| 1214 | } else if (d2) { |
| 1215 | mutex_lock(&d2->q_qlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } |
| 1217 | } |
| 1218 | |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 1219 | int __init |
| 1220 | xfs_qm_init(void) |
| 1221 | { |
| 1222 | xfs_qm_dqzone = |
| 1223 | kmem_zone_init(sizeof(struct xfs_dquot), "xfs_dquot"); |
| 1224 | if (!xfs_qm_dqzone) |
| 1225 | goto out; |
| 1226 | |
| 1227 | xfs_qm_dqtrxzone = |
| 1228 | kmem_zone_init(sizeof(struct xfs_dquot_acct), "xfs_dqtrx"); |
| 1229 | if (!xfs_qm_dqtrxzone) |
| 1230 | goto out_free_dqzone; |
| 1231 | |
| 1232 | return 0; |
| 1233 | |
| 1234 | out_free_dqzone: |
| 1235 | kmem_zone_destroy(xfs_qm_dqzone); |
| 1236 | out: |
| 1237 | return -ENOMEM; |
| 1238 | } |
| 1239 | |
Gerard Snitselaar | 1c2ccc6 | 2012-03-16 18:36:18 +0000 | [diff] [blame] | 1240 | void |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 1241 | xfs_qm_exit(void) |
| 1242 | { |
| 1243 | kmem_zone_destroy(xfs_qm_dqtrxzone); |
| 1244 | kmem_zone_destroy(xfs_qm_dqzone); |
| 1245 | } |