blob: a55e687bf562f1174e37e0764e9dab1405333a7a [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 Hellwig4e0d5f92010-06-23 18:11:15 +100085 log_vector->i_addr = &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{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000247 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000248 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) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000260 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000261
262 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
263 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
264 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
265 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
266 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
267 dst_efi_fmt->efi_extents[i].ext_start =
268 src_efi_fmt_32->efi_extents[i].ext_start;
269 dst_efi_fmt->efi_extents[i].ext_len =
270 src_efi_fmt_32->efi_extents[i].ext_len;
271 }
272 return 0;
273 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000274 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000275
276 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
277 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
278 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
279 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
280 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
281 dst_efi_fmt->efi_extents[i].ext_start =
282 src_efi_fmt_64->efi_extents[i].ext_start;
283 dst_efi_fmt->efi_extents[i].ext_len =
284 src_efi_fmt_64->efi_extents[i].ext_len;
285 }
286 return 0;
287 }
288 return EFSCORRUPTED;
289}
290
291/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * This is called by the efd item code below to release references to
293 * the given efi item. Each efd calls this with the number of
294 * extents that it has logged, and when the sum of these reaches
295 * the total number of extents logged by this efi item we can free
296 * the efi item.
297 *
298 * Freeing the efi item requires that we remove it from the AIL.
299 * We'll use the AIL lock to protect our counters as well as
300 * the removal from the AIL.
301 */
302void
303xfs_efi_release(xfs_efi_log_item_t *efip,
304 uint nextents)
305{
David Chinner783a2f62008-10-30 17:39:58 +1100306 struct xfs_ail *ailp = efip->efi_item.li_ailp;
David Chinnerfc1829f2008-10-30 17:39:46 +1100307 int extents_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ASSERT(efip->efi_next_extent > 0);
310 ASSERT(efip->efi_flags & XFS_EFI_COMMITTED);
311
David Chinnerfc1829f2008-10-30 17:39:46 +1100312 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 ASSERT(efip->efi_next_extent >= nextents);
314 efip->efi_next_extent -= nextents;
315 extents_left = efip->efi_next_extent;
316 if (extents_left == 0) {
David Chinner783a2f62008-10-30 17:39:58 +1100317 /* xfs_trans_ail_delete() drops the AIL lock. */
318 xfs_trans_ail_delete(ailp, (xfs_log_item_t *)efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000319 xfs_efi_item_free(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 } else {
David Chinnerfc1829f2008-10-30 17:39:46 +1100321 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000325static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000326{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000327 return container_of(lip, struct xfs_efd_log_item, efd_item);
328}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000330STATIC void
331xfs_efd_item_free(struct xfs_efd_log_item *efdp)
332{
333 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000334 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000335 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000336 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000337}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339/*
340 * This returns the number of iovecs needed to log the given efd item.
341 * We only need 1 iovec for an efd item. It just logs the efd_log_format
342 * structure.
343 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000345xfs_efd_item_size(
346 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 return 1;
349}
350
351/*
352 * This is called to fill in the vector of log iovecs for the
353 * given efd log item. We use only 1 iovec, and we point that
354 * at the efd_log_format structure embedded in the efd item.
355 * It is at this point that we assert that all of the extent
356 * slots in the efd item have been filled.
357 */
358STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000359xfs_efd_item_format(
360 struct xfs_log_item *lip,
361 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000363 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
364 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
367
368 efdp->efd_format.efd_type = XFS_LI_EFD;
369
370 size = sizeof(xfs_efd_log_format_t);
371 size += (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
372 efdp->efd_format.efd_size = 1;
373
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000374 log_vector->i_addr = &efdp->efd_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000376 log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 ASSERT(size >= sizeof(xfs_efd_log_format_t));
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*
381 * Pinning has no meaning for an efd item, so just return.
382 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000384xfs_efd_item_pin(
385 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * Since pinning has no meaning for an efd item, unpinning does
391 * not either.
392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000394xfs_efd_item_unpin(
395 struct xfs_log_item *lip,
396 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400/*
401 * Efd items have no locking, so just return success.
402 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000404xfs_efd_item_trylock(
405 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 return XFS_ITEM_LOCKED;
408}
409
410/*
411 * Efd items have no locking or pushing, so return failure
412 * so that the caller doesn't bother with us.
413 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000415xfs_efd_item_unlock(
416 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000418 if (lip->li_flags & XFS_LI_ABORTED)
419 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422/*
423 * When the efd item is committed to disk, all we need to do
424 * is delete our reference to our partner efi item and then
425 * free ourselves. Since we're freeing ourselves we must
426 * return -1 to keep the transaction code from further referencing
427 * this item.
428 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000430xfs_efd_item_committed(
431 struct xfs_log_item *lip,
432 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000434 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * If we got a log I/O error, it's always the case that the LR with the
438 * EFI got unpinned and freed before the EFD got aborted.
439 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000440 if (!(lip->li_flags & XFS_LI_ABORTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 xfs_efi_release(efdp->efd_efip, efdp->efd_format.efd_nextents);
442
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000443 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return (xfs_lsn_t)-1;
445}
446
447/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * There isn't much you can do to push on an efd item. It is simply
449 * stuck waiting for the log to be flushed to disk.
450 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000452xfs_efd_item_push(
453 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
458 * The EFD dependency tracking op doesn't do squat. It can't because
459 * it doesn't know where the free extent is coming from. The dependency
460 * tracking has to be handled by the "enclosing" metadata object. For
461 * example, for inodes, the inode is locked throughout the extent freeing
462 * so the dependency should be recorded there.
463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000465xfs_efd_item_committing(
466 struct xfs_log_item *lip,
467 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471/*
472 * This is the ops vector shared by all efd log items.
473 */
David Chinner7989cb82007-02-10 18:34:56 +1100474static struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000475 .iop_size = xfs_efd_item_size,
476 .iop_format = xfs_efd_item_format,
477 .iop_pin = xfs_efd_item_pin,
478 .iop_unpin = xfs_efd_item_unpin,
479 .iop_trylock = xfs_efd_item_trylock,
480 .iop_unlock = xfs_efd_item_unlock,
481 .iop_committed = xfs_efd_item_committed,
482 .iop_push = xfs_efd_item_push,
483 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484};
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
487 * Allocate and initialize an efd item with the given number of extents.
488 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000489struct xfs_efd_log_item *
490xfs_efd_init(
491 struct xfs_mount *mp,
492 struct xfs_efi_log_item *efip,
493 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000496 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 uint size;
498
499 ASSERT(nextents > 0);
500 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
501 size = (uint)(sizeof(xfs_efd_log_item_t) +
502 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000503 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000505 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
Dave Chinner43f5efc2010-03-23 10:10:00 +1100508 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 efdp->efd_efip = efip;
510 efdp->efd_format.efd_nextents = nextents;
511 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
512
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000513 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}