blob: 6ff738fe331ada29918691a6c8ca51220b352de8 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Dave Chinner239880e2013-10-23 10:50:10 +110024#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans_priv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110026#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_extfree_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110028#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30
31kmem_zone_t *xfs_efi_zone;
32kmem_zone_t *xfs_efd_zone;
33
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100034static inline struct xfs_efi_log_item *EFI_ITEM(struct xfs_log_item *lip)
35{
36 return container_of(lip, struct xfs_efi_log_item, efi_item);
37}
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100039void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100040xfs_efi_item_free(
41 struct xfs_efi_log_item *efip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100042{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100043 if (efip->efi_format.efi_nextents > XFS_EFI_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +100044 kmem_free(efip);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100045 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100046 kmem_zone_free(xfs_efi_zone, efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100047}
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +110050 * Freeing the efi requires that we remove it from the AIL if it has already
51 * been placed there. However, the EFI may not yet have been placed in the AIL
52 * when called by xfs_efi_release() from EFD processing due to the ordering of
Dave Chinner666d6442013-04-03 14:09:21 +110053 * committed vs unpin operations in bulk insert operations. Hence the reference
54 * count to ensure only the last caller frees the EFI.
Dave Chinnerb199c8a2010-12-20 11:59:49 +110055 */
56STATIC void
57__xfs_efi_release(
58 struct xfs_efi_log_item *efip)
59{
60 struct xfs_ail *ailp = efip->efi_item.li_ailp;
61
Dave Chinner666d6442013-04-03 14:09:21 +110062 if (atomic_dec_and_test(&efip->efi_refcount)) {
Dave Chinnerb199c8a2010-12-20 11:59:49 +110063 spin_lock(&ailp->xa_lock);
64 /* xfs_trans_ail_delete() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +100065 xfs_trans_ail_delete(ailp, &efip->efi_item,
66 SHUTDOWN_LOG_IO_ERROR);
Dave Chinnerb199c8a2010-12-20 11:59:49 +110067 xfs_efi_item_free(efip);
68 }
69}
70
71/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * This returns the number of iovecs needed to log the given efi item.
73 * We only need 1 iovec for an efi item. It just logs the efi_log_format
74 * structure.
75 */
Dave Chinner166d1362013-08-12 20:50:04 +100076static inline int
77xfs_efi_item_sizeof(
78 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Dave Chinner166d1362013-08-12 20:50:04 +100080 return sizeof(struct xfs_efi_log_format) +
81 (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
82}
83
84STATIC void
85xfs_efi_item_size(
86 struct xfs_log_item *lip,
87 int *nvecs,
88 int *nbytes)
89{
90 *nvecs += 1;
91 *nbytes += xfs_efi_item_sizeof(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/*
95 * This is called to fill in the vector of log iovecs for the
96 * given efi log item. We use only 1 iovec, and we point that
97 * at the efi_log_format structure embedded in the efi item.
98 * It is at this point that we assert that all of the extent
99 * slots in the efi item have been filled.
100 */
101STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000102xfs_efi_item_format(
103 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100104 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000106 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100107 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100109 ASSERT(atomic_read(&efip->efi_next_extent) ==
110 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 efip->efi_format.efi_type = XFS_LI_EFI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 efip->efi_format.efi_size = 1;
114
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100115 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFI_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100116 &efip->efi_format,
117 xfs_efi_item_sizeof(efip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120
121/*
122 * Pinning has no meaning for an efi item, so just return.
123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000125xfs_efi_item_pin(
126 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
Dave Chinner9c5f8412010-12-20 11:57:24 +1100131 * While EFIs cannot really be pinned, the unpin operation is the last place at
132 * which the EFI is manipulated during a transaction. If we are being asked to
133 * remove the EFI it's because the transaction has been cancelled and by
134 * definition that means the EFI cannot be in the AIL so remove it from the
Dave Chinner666d6442013-04-03 14:09:21 +1100135 * transaction and free it. Otherwise coordinate with xfs_efi_release()
136 * to determine who gets to free the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000139xfs_efi_item_unpin(
140 struct xfs_log_item *lip,
141 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000143 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Dave Chinner9c5f8412010-12-20 11:57:24 +1100145 if (remove) {
146 ASSERT(!(lip->li_flags & XFS_LI_IN_AIL));
Dave Chinnere34a3142011-01-27 12:13:35 +1100147 if (lip->li_desc)
148 xfs_trans_del_item(lip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000149 xfs_efi_item_free(efip);
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Brian Foster5e4b5382015-08-19 09:50:12 +1000152 xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000156 * Efi items have no locking or pushing. However, since EFIs are pulled from
157 * the AIL when their corresponding EFDs are committed to disk, their situation
158 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
159 * will eventually flush the log. This should help in getting the EFI out of
160 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000163xfs_efi_item_push(
164 struct xfs_log_item *lip,
165 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 return XFS_ITEM_PINNED;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000171xfs_efi_item_unlock(
172 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000174 if (lip->li_flags & XFS_LI_ABORTED)
175 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100179 * The EFI is logged only once and cannot be moved in the log, so simply return
Dave Chinner666d6442013-04-03 14:09:21 +1100180 * the lsn at which it's been logged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000183xfs_efi_item_committed(
184 struct xfs_log_item *lip,
185 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 return lsn;
188}
189
190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * The EFI dependency tracking op doesn't do squat. It can't because
192 * it doesn't know where the free extent is coming from. The dependency
193 * tracking has to be handled by the "enclosing" metadata object. For
194 * example, for inodes, the inode is locked throughout the extent freeing
195 * so the dependency should be recorded there.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000198xfs_efi_item_committing(
199 struct xfs_log_item *lip,
200 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204/*
205 * This is the ops vector shared by all efi log items.
206 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000207static const struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000208 .iop_size = xfs_efi_item_size,
209 .iop_format = xfs_efi_item_format,
210 .iop_pin = xfs_efi_item_pin,
211 .iop_unpin = xfs_efi_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000212 .iop_unlock = xfs_efi_item_unlock,
213 .iop_committed = xfs_efi_item_committed,
214 .iop_push = xfs_efi_item_push,
215 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
218
219/*
220 * Allocate and initialize an efi item with the given number of extents.
221 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000222struct xfs_efi_log_item *
223xfs_efi_init(
224 struct xfs_mount *mp,
225 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000228 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 uint size;
230
231 ASSERT(nextents > 0);
232 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
233 size = (uint)(sizeof(xfs_efi_log_item_t) +
234 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000235 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000237 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
Dave Chinner43f5efc2010-03-23 10:10:00 +1100240 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 efip->efi_format.efi_nextents = nextents;
Christoph Hellwigdb9d67d2015-06-22 09:43:32 +1000242 efip->efi_format.efi_id = (uintptr_t)(void *)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100243 atomic_set(&efip->efi_next_extent, 0);
Dave Chinner666d6442013-04-03 14:09:21 +1100244 atomic_set(&efip->efi_refcount, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000246 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000250 * Copy an EFI format buffer from the given buf, and into the destination
251 * EFI format structure.
252 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
253 * one of which will be the native format for this kernel.
254 * It will handle the conversion of formats if necessary.
255 */
256int
257xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
258{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000259 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000260 uint i;
261 uint len = sizeof(xfs_efi_log_format_t) +
262 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
263 uint len32 = sizeof(xfs_efi_log_format_32_t) +
264 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
265 uint len64 = sizeof(xfs_efi_log_format_64_t) +
266 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
267
268 if (buf->i_len == len) {
269 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
270 return 0;
271 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000272 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000273
274 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
275 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
276 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
277 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
278 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
279 dst_efi_fmt->efi_extents[i].ext_start =
280 src_efi_fmt_32->efi_extents[i].ext_start;
281 dst_efi_fmt->efi_extents[i].ext_len =
282 src_efi_fmt_32->efi_extents[i].ext_len;
283 }
284 return 0;
285 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000286 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000287
288 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
289 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
290 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
291 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
292 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
293 dst_efi_fmt->efi_extents[i].ext_start =
294 src_efi_fmt_64->efi_extents[i].ext_start;
295 dst_efi_fmt->efi_extents[i].ext_len =
296 src_efi_fmt_64->efi_extents[i].ext_len;
297 }
298 return 0;
299 }
Dave Chinner24513372014-06-25 14:58:08 +1000300 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000301}
302
303/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100304 * This is called by the efd item code below to release references to the given
305 * efi item. Each efd calls this with the number of extents that it has
306 * logged, and when the sum of these reaches the total number of extents logged
307 * by this efi item we can free the efi item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
309void
Brian Foster5e4b5382015-08-19 09:50:12 +1000310xfs_efi_release(
311 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Brian Foster5e4b5382015-08-19 09:50:12 +1000313 /* recovery needs us to drop the EFI reference, too */
314 if (test_bit(XFS_EFI_RECOVERED, &efip->efi_flags))
Dave Chinner509e7082013-05-20 09:51:10 +1000315 __xfs_efi_release(efip);
Brian Foster5e4b5382015-08-19 09:50:12 +1000316
317 __xfs_efi_release(efip);
318 /* efip may now have been freed, do not reference it again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000321static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000322{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000323 return container_of(lip, struct xfs_efd_log_item, efd_item);
324}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000326STATIC void
327xfs_efd_item_free(struct xfs_efd_log_item *efdp)
328{
329 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000330 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000331 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000332 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000333}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335/*
336 * This returns the number of iovecs needed to log the given efd item.
337 * We only need 1 iovec for an efd item. It just logs the efd_log_format
338 * structure.
339 */
Dave Chinner166d1362013-08-12 20:50:04 +1000340static inline int
341xfs_efd_item_sizeof(
342 struct xfs_efd_log_item *efdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Dave Chinner166d1362013-08-12 20:50:04 +1000344 return sizeof(xfs_efd_log_format_t) +
345 (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
346}
347
348STATIC void
349xfs_efd_item_size(
350 struct xfs_log_item *lip,
351 int *nvecs,
352 int *nbytes)
353{
354 *nvecs += 1;
355 *nbytes += xfs_efd_item_sizeof(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358/*
359 * This is called to fill in the vector of log iovecs for the
360 * given efd log item. We use only 1 iovec, and we point that
361 * at the efd_log_format structure embedded in the efd item.
362 * It is at this point that we assert that all of the extent
363 * slots in the efd item have been filled.
364 */
365STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000366xfs_efd_item_format(
367 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100368 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000370 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100371 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
374
375 efdp->efd_format.efd_type = XFS_LI_EFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 efdp->efd_format.efd_size = 1;
377
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100378 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFD_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100379 &efdp->efd_format,
380 xfs_efd_item_sizeof(efdp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/*
384 * Pinning has no meaning for an efd item, so just return.
385 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000387xfs_efd_item_pin(
388 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392/*
393 * Since pinning has no meaning for an efd item, unpinning does
394 * not either.
395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000397xfs_efd_item_unpin(
398 struct xfs_log_item *lip,
399 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000404 * There isn't much you can do to push on an efd item. It is simply stuck
405 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000408xfs_efd_item_push(
409 struct xfs_log_item *lip,
410 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000412 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000416xfs_efd_item_unlock(
417 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000419 if (lip->li_flags & XFS_LI_ABORTED)
420 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/*
424 * When the efd item is committed to disk, all we need to do
425 * is delete our reference to our partner efi item and then
426 * free ourselves. Since we're freeing ourselves we must
427 * return -1 to keep the transaction code from further referencing
428 * this item.
429 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000431xfs_efd_item_committed(
432 struct xfs_log_item *lip,
433 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000435 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /*
438 * If we got a log I/O error, it's always the case that the LR with the
439 * EFI got unpinned and freed before the EFD got aborted.
440 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000441 if (!(lip->li_flags & XFS_LI_ABORTED))
Brian Foster5e4b5382015-08-19 09:50:12 +1000442 xfs_efi_release(efdp->efd_efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000444 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return (xfs_lsn_t)-1;
446}
447
448/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * The EFD dependency tracking op doesn't do squat. It can't because
450 * it doesn't know where the free extent is coming from. The dependency
451 * tracking has to be handled by the "enclosing" metadata object. For
452 * example, for inodes, the inode is locked throughout the extent freeing
453 * so the dependency should be recorded there.
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000456xfs_efd_item_committing(
457 struct xfs_log_item *lip,
458 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/*
463 * This is the ops vector shared by all efd log items.
464 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000465static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000466 .iop_size = xfs_efd_item_size,
467 .iop_format = xfs_efd_item_format,
468 .iop_pin = xfs_efd_item_pin,
469 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000470 .iop_unlock = xfs_efd_item_unlock,
471 .iop_committed = xfs_efd_item_committed,
472 .iop_push = xfs_efd_item_push,
473 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474};
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * Allocate and initialize an efd item with the given number of extents.
478 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000479struct xfs_efd_log_item *
480xfs_efd_init(
481 struct xfs_mount *mp,
482 struct xfs_efi_log_item *efip,
483 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000486 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 uint size;
488
489 ASSERT(nextents > 0);
490 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
491 size = (uint)(sizeof(xfs_efd_log_item_t) +
492 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000493 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000495 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
Dave Chinner43f5efc2010-03-23 10:10:00 +1100498 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 efdp->efd_efip = efip;
500 efdp->efd_format.efd_nextents = nextents;
501 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
502
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000503 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}