1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_inode.h"
14 #include "xfs_quota.h"
15 #include "xfs_trans.h"
16 #include "xfs_buf_item.h"
17 #include "xfs_trans_priv.h"
20 #include "xfs_error.h"
22 static inline struct xfs_dq_logitem
*DQUOT_ITEM(struct xfs_log_item
*lip
)
24 return container_of(lip
, struct xfs_dq_logitem
, qli_item
);
28 * returns the number of iovecs needed to log the given dquot item.
31 xfs_qm_dquot_logitem_size(
32 struct xfs_log_item
*lip
,
37 *nbytes
+= sizeof(struct xfs_dq_logformat
) +
38 sizeof(struct xfs_disk_dquot
);
42 * fills in the vector of log iovecs for the given dquot log item.
45 xfs_qm_dquot_logitem_format(
46 struct xfs_log_item
*lip
,
47 struct xfs_log_vec
*lv
)
49 struct xfs_disk_dquot ddq
;
50 struct xfs_dq_logitem
*qlip
= DQUOT_ITEM(lip
);
51 struct xfs_log_iovec
*vecp
= NULL
;
52 struct xfs_dq_logformat
*qlf
;
54 qlf
= xlog_prepare_iovec(lv
, &vecp
, XLOG_REG_TYPE_QFORMAT
);
55 qlf
->qlf_type
= XFS_LI_DQUOT
;
57 qlf
->qlf_id
= qlip
->qli_dquot
->q_id
;
58 qlf
->qlf_blkno
= qlip
->qli_dquot
->q_blkno
;
60 qlf
->qlf_boffset
= qlip
->qli_dquot
->q_bufoffset
;
61 xlog_finish_iovec(lv
, vecp
, sizeof(struct xfs_dq_logformat
));
63 xfs_dquot_to_disk(&ddq
, qlip
->qli_dquot
);
65 xlog_copy_iovec(lv
, &vecp
, XLOG_REG_TYPE_DQUOT
, &ddq
,
66 sizeof(struct xfs_disk_dquot
));
70 * Increment the pin count of the given dquot.
73 xfs_qm_dquot_logitem_pin(
74 struct xfs_log_item
*lip
)
76 struct xfs_dquot
*dqp
= DQUOT_ITEM(lip
)->qli_dquot
;
78 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
79 atomic_inc(&dqp
->q_pincount
);
83 * Decrement the pin count of the given dquot, and wake up
84 * anyone in xfs_dqwait_unpin() if the count goes to 0. The
85 * dquot must have been previously pinned with a call to
86 * xfs_qm_dquot_logitem_pin().
89 xfs_qm_dquot_logitem_unpin(
90 struct xfs_log_item
*lip
,
93 struct xfs_dquot
*dqp
= DQUOT_ITEM(lip
)->qli_dquot
;
95 ASSERT(atomic_read(&dqp
->q_pincount
) > 0);
96 if (atomic_dec_and_test(&dqp
->q_pincount
))
97 wake_up(&dqp
->q_pinwait
);
101 * This is called to wait for the given dquot to be unpinned.
102 * Most of these pin/unpin routines are plagiarized from inode code.
106 struct xfs_dquot
*dqp
)
108 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
109 if (atomic_read(&dqp
->q_pincount
) == 0)
113 * Give the log a push so we don't wait here too long.
115 xfs_log_force(dqp
->q_mount
, 0);
116 wait_event(dqp
->q_pinwait
, (atomic_read(&dqp
->q_pincount
) == 0));
120 xfs_qm_dquot_logitem_push(
121 struct xfs_log_item
*lip
,
122 struct list_head
*buffer_list
)
123 __releases(&lip
->li_ailp
->ail_lock
)
124 __acquires(&lip
->li_ailp
->ail_lock
)
126 struct xfs_dquot
*dqp
= DQUOT_ITEM(lip
)->qli_dquot
;
127 struct xfs_buf
*bp
= lip
->li_buf
;
128 uint rval
= XFS_ITEM_SUCCESS
;
131 if (atomic_read(&dqp
->q_pincount
) > 0)
132 return XFS_ITEM_PINNED
;
134 if (!xfs_dqlock_nowait(dqp
))
135 return XFS_ITEM_LOCKED
;
138 * Re-check the pincount now that we stabilized the value by
139 * taking the quota lock.
141 if (atomic_read(&dqp
->q_pincount
) > 0) {
142 rval
= XFS_ITEM_PINNED
;
147 * Someone else is already flushing the dquot. Nothing we can do
148 * here but wait for the flush to finish and remove the item from
151 if (!xfs_dqflock_nowait(dqp
)) {
152 rval
= XFS_ITEM_FLUSHING
;
156 spin_unlock(&lip
->li_ailp
->ail_lock
);
158 error
= xfs_qm_dqflush(dqp
, &bp
);
160 if (!xfs_buf_delwri_queue(bp
, buffer_list
))
161 rval
= XFS_ITEM_FLUSHING
;
163 } else if (error
== -EAGAIN
)
164 rval
= XFS_ITEM_LOCKED
;
166 spin_lock(&lip
->li_ailp
->ail_lock
);
173 xfs_qm_dquot_logitem_release(
174 struct xfs_log_item
*lip
)
176 struct xfs_dquot
*dqp
= DQUOT_ITEM(lip
)->qli_dquot
;
178 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
181 * dquots are never 'held' from getting unlocked at the end of
182 * a transaction. Their locking and unlocking is hidden inside the
183 * transaction layer, within trans_commit. Hence, no LI_HOLD flag
190 xfs_qm_dquot_logitem_committing(
191 struct xfs_log_item
*lip
,
194 return xfs_qm_dquot_logitem_release(lip
);
197 #ifdef DEBUG_EXPENSIVE
199 xfs_qm_dquot_logitem_precommit(
200 struct xfs_trans
*tp
,
201 struct xfs_log_item
*lip
)
203 struct xfs_dquot
*dqp
= DQUOT_ITEM(lip
)->qli_dquot
;
204 struct xfs_mount
*mp
= dqp
->q_mount
;
205 struct xfs_disk_dquot ddq
= { };
208 xfs_dquot_to_disk(&ddq
, dqp
);
209 fa
= xfs_dquot_verify(mp
, &ddq
, dqp
->q_id
);
211 XFS_CORRUPTION_ERROR("Bad dquot during logging",
212 XFS_ERRLEVEL_LOW
, mp
, &ddq
, sizeof(ddq
));
214 "Metadata corruption detected at %pS, dquot 0x%x",
216 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
223 # define xfs_qm_dquot_logitem_precommit NULL
226 static const struct xfs_item_ops xfs_dquot_item_ops
= {
227 .iop_size
= xfs_qm_dquot_logitem_size
,
228 .iop_precommit
= xfs_qm_dquot_logitem_precommit
,
229 .iop_format
= xfs_qm_dquot_logitem_format
,
230 .iop_pin
= xfs_qm_dquot_logitem_pin
,
231 .iop_unpin
= xfs_qm_dquot_logitem_unpin
,
232 .iop_release
= xfs_qm_dquot_logitem_release
,
233 .iop_committing
= xfs_qm_dquot_logitem_committing
,
234 .iop_push
= xfs_qm_dquot_logitem_push
,
238 * Initialize the dquot log item for a newly allocated dquot.
239 * The dquot isn't locked at this point, but it isn't on any of the lists
240 * either, so we don't care.
243 xfs_qm_dquot_logitem_init(
244 struct xfs_dquot
*dqp
)
246 struct xfs_dq_logitem
*lp
= &dqp
->q_logitem
;
248 xfs_log_item_init(dqp
->q_mount
, &lp
->qli_item
, XFS_LI_DQUOT
,
249 &xfs_dquot_item_ops
);