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-2003 Silicon Graphics, Inc. |
| 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include "xfs.h" |
| 7 | #include "xfs_fs.h" |
Dave Chinner | 6ca1c90 | 2013-08-12 20:49:26 +1000 | [diff] [blame] | 8 | #include "xfs_format.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 9 | #include "xfs_log_format.h" |
| 10 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include "xfs_inode.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 13 | #include "xfs_quota.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include "xfs_error.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 15 | #include "xfs_trans.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "xfs_buf_item.h" |
| 17 | #include "xfs_trans_priv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs_qm.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 19 | #include "xfs_log.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 21 | static inline struct xfs_dq_logitem *DQUOT_ITEM(struct xfs_log_item *lip) |
| 22 | { |
| 23 | return container_of(lip, struct xfs_dq_logitem, qli_item); |
| 24 | } |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | /* |
| 27 | * returns the number of iovecs needed to log the given dquot item. |
| 28 | */ |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 29 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | xfs_qm_dquot_logitem_size( |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 31 | struct xfs_log_item *lip, |
| 32 | int *nvecs, |
| 33 | int *nbytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 35 | *nvecs += 2; |
| 36 | *nbytes += sizeof(struct xfs_dq_logformat) + |
| 37 | sizeof(struct xfs_disk_dquot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | /* |
| 41 | * fills in the vector of log iovecs for the given dquot log item. |
| 42 | */ |
| 43 | STATIC void |
| 44 | xfs_qm_dquot_logitem_format( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 45 | struct xfs_log_item *lip, |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 46 | struct xfs_log_vec *lv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 48 | struct xfs_dq_logitem *qlip = DQUOT_ITEM(lip); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 49 | struct xfs_log_iovec *vecp = NULL; |
Christoph Hellwig | ce8e962 | 2013-12-13 11:34:07 +1100 | [diff] [blame] | 50 | struct xfs_dq_logformat *qlf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Christoph Hellwig | ce8e962 | 2013-12-13 11:34:07 +1100 | [diff] [blame] | 52 | qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QFORMAT); |
| 53 | qlf->qlf_type = XFS_LI_DQUOT; |
| 54 | qlf->qlf_size = 2; |
| 55 | qlf->qlf_id = be32_to_cpu(qlip->qli_dquot->q_core.d_id); |
| 56 | qlf->qlf_blkno = qlip->qli_dquot->q_blkno; |
| 57 | qlf->qlf_len = 1; |
| 58 | qlf->qlf_boffset = qlip->qli_dquot->q_bufoffset; |
| 59 | xlog_finish_iovec(lv, vecp, sizeof(struct xfs_dq_logformat)); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 60 | |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 61 | xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_DQUOT, |
| 62 | &qlip->qli_dquot->q_core, |
| 63 | sizeof(struct xfs_disk_dquot)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | /* |
| 67 | * Increment the pin count of the given dquot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | */ |
| 69 | STATIC void |
| 70 | xfs_qm_dquot_logitem_pin( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 71 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 73 | struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
Peter Leckie | d1de802 | 2008-10-30 17:05:18 +1100 | [diff] [blame] | 76 | atomic_inc(&dqp->q_pincount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | * Decrement the pin count of the given dquot, and wake up |
| 81 | * anyone in xfs_dqwait_unpin() if the count goes to 0. The |
Peter Leckie | bc3048e | 2008-10-30 17:05:04 +1100 | [diff] [blame] | 82 | * dquot must have been previously pinned with a call to |
| 83 | * xfs_qm_dquot_logitem_pin(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | STATIC void |
| 86 | xfs_qm_dquot_logitem_unpin( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 87 | struct xfs_log_item *lip, |
Christoph Hellwig | 9412e31 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 88 | int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 90 | struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Peter Leckie | bc3048e | 2008-10-30 17:05:04 +1100 | [diff] [blame] | 92 | ASSERT(atomic_read(&dqp->q_pincount) > 0); |
| 93 | if (atomic_dec_and_test(&dqp->q_pincount)) |
| 94 | wake_up(&dqp->q_pinwait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | STATIC xfs_lsn_t |
| 98 | xfs_qm_dquot_logitem_committed( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 99 | struct xfs_log_item *lip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | xfs_lsn_t lsn) |
| 101 | { |
| 102 | /* |
| 103 | * We always re-log the entire dquot when it becomes dirty, |
| 104 | * so, the latest copy _is_ the only one that matters. |
| 105 | */ |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 106 | return lsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /* |
| 110 | * This is called to wait for the given dquot to be unpinned. |
| 111 | * Most of these pin/unpin routines are plagiarized from inode code. |
| 112 | */ |
| 113 | void |
| 114 | xfs_qm_dqunpin_wait( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 115 | struct xfs_dquot *dqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
Peter Leckie | bc3048e | 2008-10-30 17:05:04 +1100 | [diff] [blame] | 118 | if (atomic_read(&dqp->q_pincount) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * Give the log a push so we don't wait here too long. |
| 123 | */ |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 124 | xfs_log_force(dqp->q_mount, 0); |
Peter Leckie | bc3048e | 2008-10-30 17:05:04 +1100 | [diff] [blame] | 125 | wait_event(dqp->q_pinwait, (atomic_read(&dqp->q_pincount) == 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 128 | /* |
| 129 | * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer |
| 130 | * have been failed during writeback |
| 131 | * |
| 132 | * this informs the AIL that the dquot is already flush locked on the next push, |
| 133 | * and acquires a hold on the buffer to ensure that it isn't reclaimed before |
| 134 | * dirty data makes it to disk. |
| 135 | */ |
| 136 | STATIC void |
| 137 | xfs_dquot_item_error( |
| 138 | struct xfs_log_item *lip, |
| 139 | struct xfs_buf *bp) |
| 140 | { |
Darrick J. Wong | 75d4a13 | 2018-01-16 19:04:27 -0800 | [diff] [blame] | 141 | ASSERT(!completion_done(&DQUOT_ITEM(lip)->qli_dquot->q_flush)); |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 142 | xfs_set_li_failed(lip, bp); |
| 143 | } |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | STATIC uint |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 146 | xfs_qm_dquot_logitem_push( |
| 147 | struct xfs_log_item *lip, |
Matthew Wilcox | 57e8095 | 2018-03-07 14:59:39 -0800 | [diff] [blame] | 148 | struct list_head *buffer_list) |
| 149 | __releases(&lip->li_ailp->ail_lock) |
| 150 | __acquires(&lip->li_ailp->ail_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 152 | struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot; |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 153 | struct xfs_buf *bp = lip->li_buf; |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 154 | uint rval = XFS_ITEM_SUCCESS; |
| 155 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Peter Leckie | bc3048e | 2008-10-30 17:05:04 +1100 | [diff] [blame] | 157 | if (atomic_read(&dqp->q_pincount) > 0) |
Dave Chinner | d808f61 | 2010-02-02 10:13:42 +1100 | [diff] [blame] | 158 | return XFS_ITEM_PINNED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 160 | /* |
| 161 | * The buffer containing this item failed to be written back |
| 162 | * previously. Resubmit the buffer for IO |
| 163 | */ |
Dave Chinner | 22525c1 | 2018-05-09 07:47:34 -0700 | [diff] [blame] | 164 | if (test_bit(XFS_LI_FAILED, &lip->li_flags)) { |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 165 | if (!xfs_buf_trylock(bp)) |
| 166 | return XFS_ITEM_LOCKED; |
| 167 | |
Carlos Maiolino | 643c8c0 | 2018-01-24 13:38:49 -0800 | [diff] [blame] | 168 | if (!xfs_buf_resubmit_failed_buffers(bp, buffer_list)) |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 169 | rval = XFS_ITEM_FLUSHING; |
| 170 | |
| 171 | xfs_buf_unlock(bp); |
| 172 | return rval; |
| 173 | } |
| 174 | |
Christoph Hellwig | 800b484 | 2011-12-06 21:58:14 +0000 | [diff] [blame] | 175 | if (!xfs_dqlock_nowait(dqp)) |
Dave Chinner | d808f61 | 2010-02-02 10:13:42 +1100 | [diff] [blame] | 176 | return XFS_ITEM_LOCKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 178 | /* |
| 179 | * Re-check the pincount now that we stabilized the value by |
| 180 | * taking the quota lock. |
| 181 | */ |
| 182 | if (atomic_read(&dqp->q_pincount) > 0) { |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 183 | rval = XFS_ITEM_PINNED; |
| 184 | goto out_unlock; |
Christoph Hellwig | fe7257f | 2012-04-23 15:58:37 +1000 | [diff] [blame] | 185 | } |
| 186 | |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 187 | /* |
| 188 | * Someone else is already flushing the dquot. Nothing we can do |
| 189 | * here but wait for the flush to finish and remove the item from |
| 190 | * the AIL. |
| 191 | */ |
David Chinner | e1f49cf | 2008-08-13 16:41:43 +1000 | [diff] [blame] | 192 | if (!xfs_dqflock_nowait(dqp)) { |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 193 | rval = XFS_ITEM_FLUSHING; |
| 194 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Matthew Wilcox | 57e8095 | 2018-03-07 14:59:39 -0800 | [diff] [blame] | 197 | spin_unlock(&lip->li_ailp->ail_lock); |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 198 | |
| 199 | error = xfs_qm_dqflush(dqp, &bp); |
Darrick J. Wong | 609001b | 2018-05-04 15:30:20 -0700 | [diff] [blame] | 200 | if (!error) { |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 201 | if (!xfs_buf_delwri_queue(bp, buffer_list)) |
| 202 | rval = XFS_ITEM_FLUSHING; |
| 203 | xfs_buf_relse(bp); |
| 204 | } |
| 205 | |
Matthew Wilcox | 57e8095 | 2018-03-07 14:59:39 -0800 | [diff] [blame] | 206 | spin_lock(&lip->li_ailp->ail_lock); |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 207 | out_unlock: |
| 208 | xfs_dqunlock(dqp); |
| 209 | return rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | /* |
| 213 | * Unlock the dquot associated with the log item. |
| 214 | * Clear the fields of the dquot and dquot log item that |
| 215 | * are specific to the current transaction. If the |
| 216 | * hold flags is set, do not unlock the dquot. |
| 217 | */ |
| 218 | STATIC void |
| 219 | xfs_qm_dquot_logitem_unlock( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 220 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 222 | struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); |
| 225 | |
| 226 | /* |
| 227 | * Clear the transaction pointer in the dquot |
| 228 | */ |
| 229 | dqp->q_transp = NULL; |
| 230 | |
| 231 | /* |
| 232 | * dquots are never 'held' from getting unlocked at the end of |
| 233 | * a transaction. Their locking and unlocking is hidden inside the |
| 234 | * transaction layer, within trans_commit. Hence, no LI_HOLD flag |
| 235 | * for the logitem. |
| 236 | */ |
| 237 | xfs_dqunlock(dqp); |
| 238 | } |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | * this needs to stamp an lsn into the dquot, I think. |
| 242 | * rpc's that look at user dquot's would then have to |
| 243 | * push on the dependency recorded in the dquot |
| 244 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | STATIC void |
| 246 | xfs_qm_dquot_logitem_committing( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 247 | struct xfs_log_item *lip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | xfs_lsn_t lsn) |
| 249 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | /* |
| 253 | * This is the ops vector for dquots |
| 254 | */ |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 255 | static const struct xfs_item_ops xfs_dquot_item_ops = { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 256 | .iop_size = xfs_qm_dquot_logitem_size, |
| 257 | .iop_format = xfs_qm_dquot_logitem_format, |
| 258 | .iop_pin = xfs_qm_dquot_logitem_pin, |
| 259 | .iop_unpin = xfs_qm_dquot_logitem_unpin, |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 260 | .iop_unlock = xfs_qm_dquot_logitem_unlock, |
| 261 | .iop_committed = xfs_qm_dquot_logitem_committed, |
| 262 | .iop_push = xfs_qm_dquot_logitem_push, |
Carlos Maiolino | 373b058 | 2017-11-28 08:54:10 -0800 | [diff] [blame] | 263 | .iop_committing = xfs_qm_dquot_logitem_committing, |
| 264 | .iop_error = xfs_dquot_item_error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | /* |
| 268 | * Initialize the dquot log item for a newly allocated dquot. |
| 269 | * The dquot isn't locked at this point, but it isn't on any of the lists |
| 270 | * either, so we don't care. |
| 271 | */ |
| 272 | void |
| 273 | xfs_qm_dquot_logitem_init( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 274 | struct xfs_dquot *dqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 276 | struct xfs_dq_logitem *lp = &dqp->q_logitem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 278 | xfs_log_item_init(dqp->q_mount, &lp->qli_item, XFS_LI_DQUOT, |
| 279 | &xfs_dquot_item_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | lp->qli_dquot = dqp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | /*------------------ QUOTAOFF LOG ITEMS -------------------*/ |
| 284 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 285 | static inline struct xfs_qoff_logitem *QOFF_ITEM(struct xfs_log_item *lip) |
| 286 | { |
| 287 | return container_of(lip, struct xfs_qoff_logitem, qql_item); |
| 288 | } |
| 289 | |
| 290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | /* |
| 292 | * This returns the number of iovecs needed to log the given quotaoff item. |
| 293 | * We only need 1 iovec for an quotaoff item. It just logs the |
| 294 | * quotaoff_log_format structure. |
| 295 | */ |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 296 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 297 | xfs_qm_qoff_logitem_size( |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 298 | struct xfs_log_item *lip, |
| 299 | int *nvecs, |
| 300 | int *nbytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 302 | *nvecs += 1; |
| 303 | *nbytes += sizeof(struct xfs_qoff_logitem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 307 | xfs_qm_qoff_logitem_format( |
| 308 | struct xfs_log_item *lip, |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 309 | struct xfs_log_vec *lv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 311 | struct xfs_qoff_logitem *qflip = QOFF_ITEM(lip); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 312 | struct xfs_log_iovec *vecp = NULL; |
Christoph Hellwig | ffda4e8 | 2013-12-13 11:34:08 +1100 | [diff] [blame] | 313 | struct xfs_qoff_logformat *qlf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Christoph Hellwig | ffda4e8 | 2013-12-13 11:34:08 +1100 | [diff] [blame] | 315 | qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QUOTAOFF); |
| 316 | qlf->qf_type = XFS_LI_QUOTAOFF; |
| 317 | qlf->qf_size = 1; |
| 318 | qlf->qf_flags = qflip->qql_flags; |
| 319 | xlog_finish_iovec(lv, vecp, sizeof(struct xfs_qoff_logitem)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* |
| 323 | * Pinning has no meaning for an quotaoff item, so just return. |
| 324 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 326 | xfs_qm_qoff_logitem_pin( |
| 327 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | /* |
| 332 | * Since pinning has no meaning for an quotaoff item, unpinning does |
| 333 | * not either. |
| 334 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 336 | xfs_qm_qoff_logitem_unpin( |
| 337 | struct xfs_log_item *lip, |
| 338 | int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /* |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 343 | * There isn't much you can do to push a quotaoff item. It is simply |
| 344 | * stuck waiting for the log to be flushed to disk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | STATIC uint |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 347 | xfs_qm_qoff_logitem_push( |
| 348 | struct xfs_log_item *lip, |
| 349 | struct list_head *buffer_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | { |
| 351 | return XFS_ITEM_LOCKED; |
| 352 | } |
| 353 | |
| 354 | /* |
| 355 | * Quotaoff items have no locking or pushing, so return failure |
| 356 | * so that the caller doesn't bother with us. |
| 357 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 359 | xfs_qm_qoff_logitem_unlock( |
| 360 | struct xfs_log_item *lip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | /* |
| 365 | * The quotaoff-start-item is logged only once and cannot be moved in the log, |
| 366 | * so simply return the lsn at which it's been logged. |
| 367 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | STATIC xfs_lsn_t |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 369 | xfs_qm_qoff_logitem_committed( |
| 370 | struct xfs_log_item *lip, |
| 371 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 373 | return lsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | STATIC xfs_lsn_t |
| 377 | xfs_qm_qoffend_logitem_committed( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 378 | struct xfs_log_item *lip, |
| 379 | xfs_lsn_t lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 381 | struct xfs_qoff_logitem *qfe = QOFF_ITEM(lip); |
| 382 | struct xfs_qoff_logitem *qfs = qfe->qql_start_lip; |
| 383 | struct xfs_ail *ailp = qfs->qql_item.li_ailp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | /* |
| 386 | * Delete the qoff-start logitem from the AIL. |
David Chinner | 783a2f6 | 2008-10-30 17:39:58 +1100 | [diff] [blame] | 387 | * xfs_trans_ail_delete() drops the AIL lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | */ |
Matthew Wilcox | 57e8095 | 2018-03-07 14:59:39 -0800 | [diff] [blame] | 389 | spin_lock(&ailp->ail_lock); |
Dave Chinner | 04913fd | 2012-04-23 15:58:41 +1000 | [diff] [blame] | 390 | xfs_trans_ail_delete(ailp, &qfs->qql_item, SHUTDOWN_LOG_IO_ERROR); |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 391 | |
Dave Chinner | b1c5ebb | 2016-07-22 09:52:35 +1000 | [diff] [blame] | 392 | kmem_free(qfs->qql_item.li_lv_shadow); |
| 393 | kmem_free(lip->li_lv_shadow); |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 394 | kmem_free(qfs); |
| 395 | kmem_free(qfe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return (xfs_lsn_t)-1; |
| 397 | } |
| 398 | |
| 399 | /* |
| 400 | * XXX rcc - don't know quite what to do with this. I think we can |
| 401 | * just ignore it. The only time that isn't the case is if we allow |
| 402 | * the client to somehow see that quotas have been turned off in which |
| 403 | * we can't allow that to get back until the quotaoff hits the disk. |
| 404 | * So how would that happen? Also, do we need different routines for |
| 405 | * quotaoff start and quotaoff end? I suspect the answer is yes but |
| 406 | * to be sure, I need to look at the recovery code and see how quota off |
| 407 | * recovery is handled (do we roll forward or back or do something else). |
| 408 | * If we roll forwards or backwards, then we need two separate routines, |
| 409 | * one that does nothing and one that stamps in the lsn that matters |
| 410 | * (truly makes the quotaoff irrevocable). If we do something else, |
| 411 | * then maybe we don't need two. |
| 412 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | STATIC void |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 414 | xfs_qm_qoff_logitem_committing( |
| 415 | struct xfs_log_item *lip, |
| 416 | xfs_lsn_t commit_lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 420 | static const struct xfs_item_ops xfs_qm_qoffend_logitem_ops = { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 421 | .iop_size = xfs_qm_qoff_logitem_size, |
| 422 | .iop_format = xfs_qm_qoff_logitem_format, |
| 423 | .iop_pin = xfs_qm_qoff_logitem_pin, |
| 424 | .iop_unpin = xfs_qm_qoff_logitem_unpin, |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 425 | .iop_unlock = xfs_qm_qoff_logitem_unlock, |
| 426 | .iop_committed = xfs_qm_qoffend_logitem_committed, |
| 427 | .iop_push = xfs_qm_qoff_logitem_push, |
| 428 | .iop_committing = xfs_qm_qoff_logitem_committing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | }; |
| 430 | |
| 431 | /* |
| 432 | * This is the ops vector shared by all quotaoff-start log items. |
| 433 | */ |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 434 | static const struct xfs_item_ops xfs_qm_qoff_logitem_ops = { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 435 | .iop_size = xfs_qm_qoff_logitem_size, |
| 436 | .iop_format = xfs_qm_qoff_logitem_format, |
| 437 | .iop_pin = xfs_qm_qoff_logitem_pin, |
| 438 | .iop_unpin = xfs_qm_qoff_logitem_unpin, |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 439 | .iop_unlock = xfs_qm_qoff_logitem_unlock, |
| 440 | .iop_committed = xfs_qm_qoff_logitem_committed, |
| 441 | .iop_push = xfs_qm_qoff_logitem_push, |
| 442 | .iop_committing = xfs_qm_qoff_logitem_committing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | }; |
| 444 | |
| 445 | /* |
| 446 | * Allocate and initialize an quotaoff item of the correct quota type(s). |
| 447 | */ |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 448 | struct xfs_qoff_logitem * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | xfs_qm_qoff_logitem_init( |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 450 | struct xfs_mount *mp, |
| 451 | struct xfs_qoff_logitem *start, |
| 452 | uint flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 454 | struct xfs_qoff_logitem *qf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 456 | qf = kmem_zalloc(sizeof(struct xfs_qoff_logitem), KM_SLEEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 458 | xfs_log_item_init(mp, &qf->qql_item, XFS_LI_QUOTAOFF, start ? |
| 459 | &xfs_qm_qoffend_logitem_ops : &xfs_qm_qoff_logitem_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | qf->qql_item.li_mountp = mp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | qf->qql_start_lip = start; |
Christoph Hellwig | ffda4e8 | 2013-12-13 11:34:08 +1100 | [diff] [blame] | 462 | qf->qql_flags = flags; |
Christoph Hellwig | 7bfa31d | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 463 | return qf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |