blob: d7bc14906af87f14ef570a968ead42100445c8bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Christoph Hellwig4fb6e8a2014-11-28 14:25:04 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Darrick J. Wongdc423752016-08-03 11:23:49 +100023#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Dave Chinner239880e2013-10-23 10:50:10 +110025#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_trans_priv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_extfree_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110029#include "xfs_log.h"
Darrick J. Wong340785c2016-08-03 11:33:42 +100030#include "xfs_btree.h"
31#include "xfs_rmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33
34kmem_zone_t *xfs_efi_zone;
35kmem_zone_t *xfs_efd_zone;
36
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100037static inline struct xfs_efi_log_item *EFI_ITEM(struct xfs_log_item *lip)
38{
39 return container_of(lip, struct xfs_efi_log_item, efi_item);
40}
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100042void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100043xfs_efi_item_free(
44 struct xfs_efi_log_item *efip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100045{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +100046 kmem_free(efip->efi_item.li_lv_shadow);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100047 if (efip->efi_format.efi_nextents > XFS_EFI_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +100048 kmem_free(efip);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100049 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100050 kmem_zone_free(xfs_efi_zone, efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100051}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * This returns the number of iovecs needed to log the given efi item.
55 * We only need 1 iovec for an efi item. It just logs the efi_log_format
56 * structure.
57 */
Dave Chinner166d1362013-08-12 20:50:04 +100058static inline int
59xfs_efi_item_sizeof(
60 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Dave Chinner166d1362013-08-12 20:50:04 +100062 return sizeof(struct xfs_efi_log_format) +
63 (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
64}
65
66STATIC void
67xfs_efi_item_size(
68 struct xfs_log_item *lip,
69 int *nvecs,
70 int *nbytes)
71{
72 *nvecs += 1;
73 *nbytes += xfs_efi_item_sizeof(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76/*
77 * This is called to fill in the vector of log iovecs for the
78 * given efi log item. We use only 1 iovec, and we point that
79 * at the efi_log_format structure embedded in the efi item.
80 * It is at this point that we assert that all of the extent
81 * slots in the efi item have been filled.
82 */
83STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100084xfs_efi_item_format(
85 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110086 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100088 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110089 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Dave Chinnerb199c8a2010-12-20 11:59:49 +110091 ASSERT(atomic_read(&efip->efi_next_extent) ==
92 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 efip->efi_format.efi_type = XFS_LI_EFI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 efip->efi_format.efi_size = 1;
96
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110097 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFI_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +110098 &efip->efi_format,
99 xfs_efi_item_sizeof(efip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102
103/*
104 * Pinning has no meaning for an efi item, so just return.
105 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000107xfs_efi_item_pin(
108 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
Brian Foster8d99fe92015-08-19 09:51:16 +1000113 * The unpin operation is the last place an EFI is manipulated in the log. It is
114 * either inserted in the AIL or aborted in the event of a log I/O error. In
115 * either case, the EFI transaction has been successfully committed to make it
116 * this far. Therefore, we expect whoever committed the EFI to either construct
117 * and commit the EFD or drop the EFD's reference in the event of error. Simply
118 * drop the log's EFI reference now that the log is done with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000121xfs_efi_item_unpin(
122 struct xfs_log_item *lip,
123 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000125 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Brian Foster5e4b5382015-08-19 09:50:12 +1000126 xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000130 * Efi items have no locking or pushing. However, since EFIs are pulled from
131 * the AIL when their corresponding EFDs are committed to disk, their situation
132 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
133 * will eventually flush the log. This should help in getting the EFI out of
134 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000137xfs_efi_item_push(
138 struct xfs_log_item *lip,
139 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 return XFS_ITEM_PINNED;
142}
143
Brian Foster8d99fe92015-08-19 09:51:16 +1000144/*
145 * The EFI has been either committed or aborted if the transaction has been
146 * cancelled. If the transaction was cancelled, an EFD isn't going to be
147 * constructed and thus we free the EFI here directly.
148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000150xfs_efi_item_unlock(
151 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000153 if (lip->li_flags & XFS_LI_ABORTED)
154 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100158 * The EFI is logged only once and cannot be moved in the log, so simply return
Dave Chinner666d6442013-04-03 14:09:21 +1100159 * the lsn at which it's been logged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000162xfs_efi_item_committed(
163 struct xfs_log_item *lip,
164 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 return lsn;
167}
168
169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * The EFI dependency tracking op doesn't do squat. It can't because
171 * it doesn't know where the free extent is coming from. The dependency
172 * tracking has to be handled by the "enclosing" metadata object. For
173 * example, for inodes, the inode is locked throughout the extent freeing
174 * so the dependency should be recorded there.
175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000177xfs_efi_item_committing(
178 struct xfs_log_item *lip,
179 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183/*
184 * This is the ops vector shared by all efi log items.
185 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000186static const struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000187 .iop_size = xfs_efi_item_size,
188 .iop_format = xfs_efi_item_format,
189 .iop_pin = xfs_efi_item_pin,
190 .iop_unpin = xfs_efi_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000191 .iop_unlock = xfs_efi_item_unlock,
192 .iop_committed = xfs_efi_item_committed,
193 .iop_push = xfs_efi_item_push,
194 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
197
198/*
199 * Allocate and initialize an efi item with the given number of extents.
200 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000201struct xfs_efi_log_item *
202xfs_efi_init(
203 struct xfs_mount *mp,
204 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000207 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 uint size;
209
210 ASSERT(nextents > 0);
211 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
212 size = (uint)(sizeof(xfs_efi_log_item_t) +
213 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000214 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000216 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
Dave Chinner43f5efc2010-03-23 10:10:00 +1100219 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 efip->efi_format.efi_nextents = nextents;
Christoph Hellwigdb9d67d2015-06-22 09:43:32 +1000221 efip->efi_format.efi_id = (uintptr_t)(void *)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100222 atomic_set(&efip->efi_next_extent, 0);
Dave Chinner666d6442013-04-03 14:09:21 +1100223 atomic_set(&efip->efi_refcount, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000225 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000229 * Copy an EFI format buffer from the given buf, and into the destination
230 * EFI format structure.
231 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
232 * one of which will be the native format for this kernel.
233 * It will handle the conversion of formats if necessary.
234 */
235int
236xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
237{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000238 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000239 uint i;
240 uint len = sizeof(xfs_efi_log_format_t) +
241 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
242 uint len32 = sizeof(xfs_efi_log_format_32_t) +
243 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
244 uint len64 = sizeof(xfs_efi_log_format_64_t) +
245 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
246
247 if (buf->i_len == len) {
248 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
249 return 0;
250 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000251 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000252
253 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
254 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
255 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
256 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
257 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
258 dst_efi_fmt->efi_extents[i].ext_start =
259 src_efi_fmt_32->efi_extents[i].ext_start;
260 dst_efi_fmt->efi_extents[i].ext_len =
261 src_efi_fmt_32->efi_extents[i].ext_len;
262 }
263 return 0;
264 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000265 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000266
267 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
268 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
269 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
270 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
271 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
272 dst_efi_fmt->efi_extents[i].ext_start =
273 src_efi_fmt_64->efi_extents[i].ext_start;
274 dst_efi_fmt->efi_extents[i].ext_len =
275 src_efi_fmt_64->efi_extents[i].ext_len;
276 }
277 return 0;
278 }
Dave Chinner24513372014-06-25 14:58:08 +1000279 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000280}
281
282/*
Brian Fostere32a1d12015-08-19 09:52:21 +1000283 * Freeing the efi requires that we remove it from the AIL if it has already
284 * been placed there. However, the EFI may not yet have been placed in the AIL
285 * when called by xfs_efi_release() from EFD processing due to the ordering of
286 * committed vs unpin operations in bulk insert operations. Hence the reference
287 * count to ensure only the last caller frees the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289void
Brian Foster5e4b5382015-08-19 09:50:12 +1000290xfs_efi_release(
291 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Brian Fostere32a1d12015-08-19 09:52:21 +1000293 if (atomic_dec_and_test(&efip->efi_refcount)) {
Brian Foster146e54b2015-08-19 10:01:08 +1000294 xfs_trans_ail_remove(&efip->efi_item, SHUTDOWN_LOG_IO_ERROR);
Brian Fostere32a1d12015-08-19 09:52:21 +1000295 xfs_efi_item_free(efip);
296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000299static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000300{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000301 return container_of(lip, struct xfs_efd_log_item, efd_item);
302}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000304STATIC void
305xfs_efd_item_free(struct xfs_efd_log_item *efdp)
306{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000307 kmem_free(efdp->efd_item.li_lv_shadow);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000308 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000309 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000310 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000311 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000312}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314/*
315 * This returns the number of iovecs needed to log the given efd item.
316 * We only need 1 iovec for an efd item. It just logs the efd_log_format
317 * structure.
318 */
Dave Chinner166d1362013-08-12 20:50:04 +1000319static inline int
320xfs_efd_item_sizeof(
321 struct xfs_efd_log_item *efdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Dave Chinner166d1362013-08-12 20:50:04 +1000323 return sizeof(xfs_efd_log_format_t) +
324 (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
325}
326
327STATIC void
328xfs_efd_item_size(
329 struct xfs_log_item *lip,
330 int *nvecs,
331 int *nbytes)
332{
333 *nvecs += 1;
334 *nbytes += xfs_efd_item_sizeof(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337/*
338 * This is called to fill in the vector of log iovecs for the
339 * given efd log item. We use only 1 iovec, and we point that
340 * at the efd_log_format structure embedded in the efd item.
341 * It is at this point that we assert that all of the extent
342 * slots in the efd item have been filled.
343 */
344STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000345xfs_efd_item_format(
346 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100347 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000349 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100350 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
353
354 efdp->efd_format.efd_type = XFS_LI_EFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 efdp->efd_format.efd_size = 1;
356
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100357 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFD_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100358 &efdp->efd_format,
359 xfs_efd_item_sizeof(efdp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
363 * Pinning has no meaning for an efd item, so just return.
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000366xfs_efd_item_pin(
367 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*
372 * Since pinning has no meaning for an efd item, unpinning does
373 * not either.
374 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000376xfs_efd_item_unpin(
377 struct xfs_log_item *lip,
378 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
382/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000383 * There isn't much you can do to push on an efd item. It is simply stuck
384 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000387xfs_efd_item_push(
388 struct xfs_log_item *lip,
389 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000391 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Brian Foster8d99fe92015-08-19 09:51:16 +1000394/*
395 * The EFD is either committed or aborted if the transaction is cancelled. If
396 * the transaction is cancelled, drop our reference to the EFI and free the EFD.
397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000399xfs_efd_item_unlock(
400 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Brian Foster8d99fe92015-08-19 09:51:16 +1000402 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
403
404 if (lip->li_flags & XFS_LI_ABORTED) {
405 xfs_efi_release(efdp->efd_efip);
406 xfs_efd_item_free(efdp);
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410/*
Brian Foster8d99fe92015-08-19 09:51:16 +1000411 * When the efd item is committed to disk, all we need to do is delete our
412 * reference to our partner efi item and then free ourselves. Since we're
413 * freeing ourselves we must return -1 to keep the transaction code from further
414 * referencing this item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000417xfs_efd_item_committed(
418 struct xfs_log_item *lip,
419 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000421 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /*
Brian Foster8d99fe92015-08-19 09:51:16 +1000424 * Drop the EFI reference regardless of whether the EFD has been
425 * aborted. Once the EFD transaction is constructed, it is the sole
426 * responsibility of the EFD to release the EFI (even if the EFI is
427 * aborted due to log I/O error).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
Brian Foster8d99fe92015-08-19 09:51:16 +1000429 xfs_efi_release(efdp->efd_efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000430 xfs_efd_item_free(efdp);
Brian Foster8d99fe92015-08-19 09:51:16 +1000431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return (xfs_lsn_t)-1;
433}
434
435/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * The EFD dependency tracking op doesn't do squat. It can't because
437 * it doesn't know where the free extent is coming from. The dependency
438 * tracking has to be handled by the "enclosing" metadata object. For
439 * example, for inodes, the inode is locked throughout the extent freeing
440 * so the dependency should be recorded there.
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000443xfs_efd_item_committing(
444 struct xfs_log_item *lip,
445 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/*
450 * This is the ops vector shared by all efd log items.
451 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000452static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000453 .iop_size = xfs_efd_item_size,
454 .iop_format = xfs_efd_item_format,
455 .iop_pin = xfs_efd_item_pin,
456 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000457 .iop_unlock = xfs_efd_item_unlock,
458 .iop_committed = xfs_efd_item_committed,
459 .iop_push = xfs_efd_item_push,
460 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461};
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
464 * Allocate and initialize an efd item with the given number of extents.
465 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000466struct xfs_efd_log_item *
467xfs_efd_init(
468 struct xfs_mount *mp,
469 struct xfs_efi_log_item *efip,
470 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000473 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 uint size;
475
476 ASSERT(nextents > 0);
477 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
478 size = (uint)(sizeof(xfs_efd_log_item_t) +
479 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000480 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000482 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
Dave Chinner43f5efc2010-03-23 10:10:00 +1100485 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 efdp->efd_efip = efip;
487 efdp->efd_format.efd_nextents = nextents;
488 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
489
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000490 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
Darrick J. Wongdc423752016-08-03 11:23:49 +1000492
493/*
494 * Process an extent free intent item that was recovered from
495 * the log. We need to free the extents that it describes.
496 */
497int
498xfs_efi_recover(
499 struct xfs_mount *mp,
500 struct xfs_efi_log_item *efip)
501{
502 struct xfs_efd_log_item *efdp;
503 struct xfs_trans *tp;
504 int i;
505 int error = 0;
506 xfs_extent_t *extp;
507 xfs_fsblock_t startblock_fsb;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000508 struct xfs_owner_info oinfo;
Darrick J. Wongdc423752016-08-03 11:23:49 +1000509
510 ASSERT(!test_bit(XFS_EFI_RECOVERED, &efip->efi_flags));
511
512 /*
513 * First check the validity of the extents described by the
514 * EFI. If any are bad, then assume that all are bad and
515 * just toss the EFI.
516 */
517 for (i = 0; i < efip->efi_format.efi_nextents; i++) {
Darrick J. Wonge127faf2016-08-03 12:29:32 +1000518 extp = &efip->efi_format.efi_extents[i];
Darrick J. Wongdc423752016-08-03 11:23:49 +1000519 startblock_fsb = XFS_BB_TO_FSB(mp,
520 XFS_FSB_TO_DADDR(mp, extp->ext_start));
Darrick J. Wonge127faf2016-08-03 12:29:32 +1000521 if (startblock_fsb == 0 ||
522 extp->ext_len == 0 ||
523 startblock_fsb >= mp->m_sb.sb_dblocks ||
524 extp->ext_len >= mp->m_sb.sb_agblocks) {
Darrick J. Wongdc423752016-08-03 11:23:49 +1000525 /*
526 * This will pull the EFI from the AIL and
527 * free the memory associated with it.
528 */
529 set_bit(XFS_EFI_RECOVERED, &efip->efi_flags);
530 xfs_efi_release(efip);
531 return -EIO;
532 }
533 }
534
535 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
536 if (error)
537 return error;
538 efdp = xfs_trans_get_efd(tp, efip, efip->efi_format.efi_nextents);
539
Darrick J. Wong340785c2016-08-03 11:33:42 +1000540 xfs_rmap_skip_owner_update(&oinfo);
Darrick J. Wongdc423752016-08-03 11:23:49 +1000541 for (i = 0; i < efip->efi_format.efi_nextents; i++) {
Darrick J. Wonge127faf2016-08-03 12:29:32 +1000542 extp = &efip->efi_format.efi_extents[i];
Darrick J. Wongdc423752016-08-03 11:23:49 +1000543 error = xfs_trans_free_extent(tp, efdp, extp->ext_start,
Darrick J. Wong340785c2016-08-03 11:33:42 +1000544 extp->ext_len, &oinfo);
Darrick J. Wongdc423752016-08-03 11:23:49 +1000545 if (error)
546 goto abort_error;
547
548 }
549
550 set_bit(XFS_EFI_RECOVERED, &efip->efi_flags);
551 error = xfs_trans_commit(tp);
552 return error;
553
554abort_error:
555 xfs_trans_cancel(tp);
556 return error;
557}