blob: 61d83c64ed329ac65ea1fb5887fdc00877f45552 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_buf_item.h"
25#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
28#include "xfs_trans_priv.h"
29#include "xfs_extfree_item.h"
30
31
32kmem_zone_t *xfs_efi_zone;
33kmem_zone_t *xfs_efd_zone;
34
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100035static inline struct xfs_efi_log_item *EFI_ITEM(struct xfs_log_item *lip)
36{
37 return container_of(lip, struct xfs_efi_log_item, efi_item);
38}
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100040void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100041xfs_efi_item_free(
42 struct xfs_efi_log_item *efip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100043{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100044 if (efip->efi_format.efi_nextents > XFS_EFI_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +100045 kmem_free(efip);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100046 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100047 kmem_zone_free(xfs_efi_zone, efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +100048}
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * This returns the number of iovecs needed to log the given efi item.
52 * We only need 1 iovec for an efi item. It just logs the efi_log_format
53 * structure.
54 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100056xfs_efi_item_size(
57 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 return 1;
60}
61
62/*
63 * This is called to fill in the vector of log iovecs for the
64 * given efi log item. We use only 1 iovec, and we point that
65 * at the efi_log_format structure embedded in the efi item.
66 * It is at this point that we assert that all of the extent
67 * slots in the efi item have been filled.
68 */
69STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100070xfs_efi_item_format(
71 struct xfs_log_item *lip,
72 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100074 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
75 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 ASSERT(efip->efi_next_extent == efip->efi_format.efi_nextents);
78
79 efip->efi_format.efi_type = XFS_LI_EFI;
80
81 size = sizeof(xfs_efi_log_format_t);
82 size += (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
83 efip->efi_format.efi_size = 1;
84
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100085 log_vector->i_addr = (xfs_caddr_t)&efip->efi_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +000087 log_vector->i_type = XLOG_REG_TYPE_EFI_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 ASSERT(size >= sizeof(xfs_efi_log_format_t));
89}
90
91
92/*
93 * Pinning has no meaning for an efi item, so just return.
94 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100096xfs_efi_item_pin(
97 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*
102 * While EFIs cannot really be pinned, the unpin operation is the
103 * last place at which the EFI is manipulated during a transaction.
104 * Here we coordinate with xfs_efi_cancel() to determine who gets to
105 * free the EFI.
106 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000108xfs_efi_item_unpin(
109 struct xfs_log_item *lip,
110 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000112 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
113 struct xfs_ail *ailp = lip->li_ailp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
David Chinnerfc1829f2008-10-30 17:39:46 +1100115 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (efip->efi_flags & XFS_EFI_CANCELED) {
Christoph Hellwig9412e312010-06-23 18:11:15 +1000117 if (remove)
118 xfs_trans_del_item(lip);
David Chinner783a2f62008-10-30 17:39:58 +1100119
120 /* xfs_trans_ail_delete() drops the AIL lock. */
Christoph Hellwige98c4142010-06-23 18:11:15 +1000121 xfs_trans_ail_delete(ailp, lip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000122 xfs_efi_item_free(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 } else {
124 efip->efi_flags |= XFS_EFI_COMMITTED;
David Chinnerfc1829f2008-10-30 17:39:46 +1100125 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/*
130 * Efi items have no locking or pushing. However, since EFIs are
131 * pulled from the AIL when their corresponding EFDs are committed
132 * to disk, their situation is very similar to being pinned. Return
133 * XFS_ITEM_PINNED so that the caller will eventually flush the log.
134 * This should help in getting the EFI out of the AIL.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000137xfs_efi_item_trylock(
138 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 return XFS_ITEM_PINNED;
141}
142
143/*
144 * Efi items have no locking, so just return.
145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000147xfs_efi_item_unlock(
148 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000150 if (lip->li_flags & XFS_LI_ABORTED)
151 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154/*
155 * The EFI is logged only once and cannot be moved in the log, so
156 * simply return the lsn at which it's been logged. The canceled
157 * flag is not paid any attention here. Checking for that is delayed
158 * until the EFI is unpinned.
159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000161xfs_efi_item_committed(
162 struct xfs_log_item *lip,
163 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 return lsn;
166}
167
168/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * There isn't much you can do to push on an efi item. It is simply
170 * stuck waiting for all of its corresponding efd items to be
171 * committed to disk.
172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000174xfs_efi_item_push(
175 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/*
180 * The EFI dependency tracking op doesn't do squat. It can't because
181 * it doesn't know where the free extent is coming from. The dependency
182 * tracking has to be handled by the "enclosing" metadata object. For
183 * example, for inodes, the inode is locked throughout the extent freeing
184 * so the dependency should be recorded there.
185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000187xfs_efi_item_committing(
188 struct xfs_log_item *lip,
189 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193/*
194 * This is the ops vector shared by all efi log items.
195 */
David Chinner7989cb82007-02-10 18:34:56 +1100196static struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000197 .iop_size = xfs_efi_item_size,
198 .iop_format = xfs_efi_item_format,
199 .iop_pin = xfs_efi_item_pin,
200 .iop_unpin = xfs_efi_item_unpin,
201 .iop_trylock = xfs_efi_item_trylock,
202 .iop_unlock = xfs_efi_item_unlock,
203 .iop_committed = xfs_efi_item_committed,
204 .iop_push = xfs_efi_item_push,
205 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208
209/*
210 * Allocate and initialize an efi item with the given number of extents.
211 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000212struct xfs_efi_log_item *
213xfs_efi_init(
214 struct xfs_mount *mp,
215 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000218 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 uint size;
220
221 ASSERT(nextents > 0);
222 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
223 size = (uint)(sizeof(xfs_efi_log_item_t) +
224 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000225 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000227 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
Dave Chinner43f5efc2010-03-23 10:10:00 +1100230 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 efip->efi_format.efi_nextents = nextents;
232 efip->efi_format.efi_id = (__psint_t)(void*)efip;
233
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000234 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000238 * Copy an EFI format buffer from the given buf, and into the destination
239 * EFI format structure.
240 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
241 * one of which will be the native format for this kernel.
242 * It will handle the conversion of formats if necessary.
243 */
244int
245xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
246{
247 xfs_efi_log_format_t *src_efi_fmt = (xfs_efi_log_format_t *)buf->i_addr;
248 uint i;
249 uint len = sizeof(xfs_efi_log_format_t) +
250 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
251 uint len32 = sizeof(xfs_efi_log_format_32_t) +
252 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
253 uint len64 = sizeof(xfs_efi_log_format_64_t) +
254 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
255
256 if (buf->i_len == len) {
257 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
258 return 0;
259 } else if (buf->i_len == len32) {
260 xfs_efi_log_format_32_t *src_efi_fmt_32 =
261 (xfs_efi_log_format_32_t *)buf->i_addr;
262
263 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
264 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
265 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
266 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
267 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
268 dst_efi_fmt->efi_extents[i].ext_start =
269 src_efi_fmt_32->efi_extents[i].ext_start;
270 dst_efi_fmt->efi_extents[i].ext_len =
271 src_efi_fmt_32->efi_extents[i].ext_len;
272 }
273 return 0;
274 } else if (buf->i_len == len64) {
275 xfs_efi_log_format_64_t *src_efi_fmt_64 =
276 (xfs_efi_log_format_64_t *)buf->i_addr;
277
278 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
279 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
280 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
281 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
282 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
283 dst_efi_fmt->efi_extents[i].ext_start =
284 src_efi_fmt_64->efi_extents[i].ext_start;
285 dst_efi_fmt->efi_extents[i].ext_len =
286 src_efi_fmt_64->efi_extents[i].ext_len;
287 }
288 return 0;
289 }
290 return EFSCORRUPTED;
291}
292
293/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * This is called by the efd item code below to release references to
295 * the given efi item. Each efd calls this with the number of
296 * extents that it has logged, and when the sum of these reaches
297 * the total number of extents logged by this efi item we can free
298 * the efi item.
299 *
300 * Freeing the efi item requires that we remove it from the AIL.
301 * We'll use the AIL lock to protect our counters as well as
302 * the removal from the AIL.
303 */
304void
305xfs_efi_release(xfs_efi_log_item_t *efip,
306 uint nextents)
307{
David Chinner783a2f62008-10-30 17:39:58 +1100308 struct xfs_ail *ailp = efip->efi_item.li_ailp;
David Chinnerfc1829f2008-10-30 17:39:46 +1100309 int extents_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 ASSERT(efip->efi_next_extent > 0);
312 ASSERT(efip->efi_flags & XFS_EFI_COMMITTED);
313
David Chinnerfc1829f2008-10-30 17:39:46 +1100314 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 ASSERT(efip->efi_next_extent >= nextents);
316 efip->efi_next_extent -= nextents;
317 extents_left = efip->efi_next_extent;
318 if (extents_left == 0) {
David Chinner783a2f62008-10-30 17:39:58 +1100319 /* xfs_trans_ail_delete() drops the AIL lock. */
320 xfs_trans_ail_delete(ailp, (xfs_log_item_t *)efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000321 xfs_efi_item_free(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 } else {
David Chinnerfc1829f2008-10-30 17:39:46 +1100323 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000327static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000328{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000329 return container_of(lip, struct xfs_efd_log_item, efd_item);
330}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000332STATIC void
333xfs_efd_item_free(struct xfs_efd_log_item *efdp)
334{
335 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000336 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000337 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000338 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000339}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341/*
342 * This returns the number of iovecs needed to log the given efd item.
343 * We only need 1 iovec for an efd item. It just logs the efd_log_format
344 * structure.
345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000347xfs_efd_item_size(
348 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 return 1;
351}
352
353/*
354 * This is called to fill in the vector of log iovecs for the
355 * given efd log item. We use only 1 iovec, and we point that
356 * at the efd_log_format structure embedded in the efd item.
357 * It is at this point that we assert that all of the extent
358 * slots in the efd item have been filled.
359 */
360STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000361xfs_efd_item_format(
362 struct xfs_log_item *lip,
363 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000365 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
366 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
369
370 efdp->efd_format.efd_type = XFS_LI_EFD;
371
372 size = sizeof(xfs_efd_log_format_t);
373 size += (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
374 efdp->efd_format.efd_size = 1;
375
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000376 log_vector->i_addr = (xfs_caddr_t)&efdp->efd_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000378 log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 ASSERT(size >= sizeof(xfs_efd_log_format_t));
380}
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/*
383 * Pinning has no meaning for an efd item, so just return.
384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000386xfs_efd_item_pin(
387 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
392 * Since pinning has no meaning for an efd item, unpinning does
393 * not either.
394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000396xfs_efd_item_unpin(
397 struct xfs_log_item *lip,
398 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402/*
403 * Efd items have no locking, so just return success.
404 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000406xfs_efd_item_trylock(
407 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 return XFS_ITEM_LOCKED;
410}
411
412/*
413 * Efd items have no locking or pushing, so return failure
414 * so that the caller doesn't bother with us.
415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000417xfs_efd_item_unlock(
418 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000420 if (lip->li_flags & XFS_LI_ABORTED)
421 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424/*
425 * When the efd item is committed to disk, all we need to do
426 * is delete our reference to our partner efi item and then
427 * free ourselves. Since we're freeing ourselves we must
428 * return -1 to keep the transaction code from further referencing
429 * this item.
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000432xfs_efd_item_committed(
433 struct xfs_log_item *lip,
434 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000436 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /*
439 * If we got a log I/O error, it's always the case that the LR with the
440 * EFI got unpinned and freed before the EFD got aborted.
441 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000442 if (!(lip->li_flags & XFS_LI_ABORTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 xfs_efi_release(efdp->efd_efip, efdp->efd_format.efd_nextents);
444
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000445 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return (xfs_lsn_t)-1;
447}
448
449/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * There isn't much you can do to push on an efd item. It is simply
451 * stuck waiting for the log to be flushed to disk.
452 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000454xfs_efd_item_push(
455 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459/*
460 * The EFD dependency tracking op doesn't do squat. It can't because
461 * it doesn't know where the free extent is coming from. The dependency
462 * tracking has to be handled by the "enclosing" metadata object. For
463 * example, for inodes, the inode is locked throughout the extent freeing
464 * so the dependency should be recorded there.
465 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000467xfs_efd_item_committing(
468 struct xfs_log_item *lip,
469 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473/*
474 * This is the ops vector shared by all efd log items.
475 */
David Chinner7989cb82007-02-10 18:34:56 +1100476static struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000477 .iop_size = xfs_efd_item_size,
478 .iop_format = xfs_efd_item_format,
479 .iop_pin = xfs_efd_item_pin,
480 .iop_unpin = xfs_efd_item_unpin,
481 .iop_trylock = xfs_efd_item_trylock,
482 .iop_unlock = xfs_efd_item_unlock,
483 .iop_committed = xfs_efd_item_committed,
484 .iop_push = xfs_efd_item_push,
485 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486};
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*
489 * Allocate and initialize an efd item with the given number of extents.
490 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000491struct xfs_efd_log_item *
492xfs_efd_init(
493 struct xfs_mount *mp,
494 struct xfs_efi_log_item *efip,
495 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000498 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 uint size;
500
501 ASSERT(nextents > 0);
502 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
503 size = (uint)(sizeof(xfs_efd_log_item_t) +
504 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000505 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000507 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
Dave Chinner43f5efc2010-03-23 10:10:00 +1100510 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 efdp->efd_efip = efip;
512 efdp->efd_format.efd_nextents = nextents;
513 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
514
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000515 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}