blob: feb36d7551ae63ccf546bb7ca4083adc9733b761 [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"
22#include "xfs_trans.h"
23#include "xfs_buf_item.h"
24#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
27#include "xfs_trans_priv.h"
28#include "xfs_extfree_item.h"
29
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
53 * committed vs unpin operations in bulk insert operations. Hence the
54 * test_and_clear_bit(XFS_EFI_COMMITTED) to ensure only the last caller frees
55 * the EFI.
56 */
57STATIC void
58__xfs_efi_release(
59 struct xfs_efi_log_item *efip)
60{
61 struct xfs_ail *ailp = efip->efi_item.li_ailp;
62
63 if (!test_and_clear_bit(XFS_EFI_COMMITTED, &efip->efi_flags)) {
64 spin_lock(&ailp->xa_lock);
65 /* xfs_trans_ail_delete() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +100066 xfs_trans_ail_delete(ailp, &efip->efi_item,
67 SHUTDOWN_LOG_IO_ERROR);
Dave Chinnerb199c8a2010-12-20 11:59:49 +110068 xfs_efi_item_free(efip);
69 }
70}
71
72/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * This returns the number of iovecs needed to log the given efi item.
74 * We only need 1 iovec for an efi item. It just logs the efi_log_format
75 * structure.
76 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100078xfs_efi_item_size(
79 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 return 1;
82}
83
84/*
85 * This is called to fill in the vector of log iovecs for the
86 * given efi log item. We use only 1 iovec, and we point that
87 * at the efi_log_format structure embedded in the efi item.
88 * It is at this point that we assert that all of the extent
89 * slots in the efi item have been filled.
90 */
91STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100092xfs_efi_item_format(
93 struct xfs_log_item *lip,
94 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100096 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
97 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Dave Chinnerb199c8a2010-12-20 11:59:49 +110099 ASSERT(atomic_read(&efip->efi_next_extent) ==
100 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 efip->efi_format.efi_type = XFS_LI_EFI;
103
104 size = sizeof(xfs_efi_log_format_t);
105 size += (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
106 efip->efi_format.efi_size = 1;
107
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000108 log_vector->i_addr = &efip->efi_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000110 log_vector->i_type = XLOG_REG_TYPE_EFI_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 ASSERT(size >= sizeof(xfs_efi_log_format_t));
112}
113
114
115/*
116 * Pinning has no meaning for an efi item, so just return.
117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000119xfs_efi_item_pin(
120 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
Dave Chinner9c5f8412010-12-20 11:57:24 +1100125 * While EFIs cannot really be pinned, the unpin operation is the last place at
126 * which the EFI is manipulated during a transaction. If we are being asked to
127 * remove the EFI it's because the transaction has been cancelled and by
128 * definition that means the EFI cannot be in the AIL so remove it from the
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100129 * transaction and free it. Otherwise coordinate with xfs_efi_release() (via
130 * XFS_EFI_COMMITTED) to determine who gets to free the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000133xfs_efi_item_unpin(
134 struct xfs_log_item *lip,
135 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000137 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Dave Chinner9c5f8412010-12-20 11:57:24 +1100139 if (remove) {
140 ASSERT(!(lip->li_flags & XFS_LI_IN_AIL));
Dave Chinnere34a3142011-01-27 12:13:35 +1100141 if (lip->li_desc)
142 xfs_trans_del_item(lip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000143 xfs_efi_item_free(efip);
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100144 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100146 __xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000150 * Efi items have no locking or pushing. However, since EFIs are pulled from
151 * the AIL when their corresponding EFDs are committed to disk, their situation
152 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
153 * will eventually flush the log. This should help in getting the EFI out of
154 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000157xfs_efi_item_push(
158 struct xfs_log_item *lip,
159 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 return XFS_ITEM_PINNED;
162}
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000165xfs_efi_item_unlock(
166 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000168 if (lip->li_flags & XFS_LI_ABORTED)
169 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100173 * The EFI is logged only once and cannot be moved in the log, so simply return
174 * the lsn at which it's been logged. For bulk transaction committed
175 * processing, the EFI may be processed but not yet unpinned prior to the EFD
176 * being processed. Set the XFS_EFI_COMMITTED flag so this case can be detected
177 * when processing the EFD.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000180xfs_efi_item_committed(
181 struct xfs_log_item *lip,
182 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100184 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
185
186 set_bit(XFS_EFI_COMMITTED, &efip->efi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 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;
242 efip->efi_format.efi_id = (__psint_t)(void*)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100243 atomic_set(&efip->efi_next_extent, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000245 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000249 * Copy an EFI format buffer from the given buf, and into the destination
250 * EFI format structure.
251 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
252 * one of which will be the native format for this kernel.
253 * It will handle the conversion of formats if necessary.
254 */
255int
256xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
257{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000258 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000259 uint i;
260 uint len = sizeof(xfs_efi_log_format_t) +
261 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
262 uint len32 = sizeof(xfs_efi_log_format_32_t) +
263 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
264 uint len64 = sizeof(xfs_efi_log_format_64_t) +
265 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
266
267 if (buf->i_len == len) {
268 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
269 return 0;
270 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000271 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000272
273 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
274 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
275 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
276 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
277 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
278 dst_efi_fmt->efi_extents[i].ext_start =
279 src_efi_fmt_32->efi_extents[i].ext_start;
280 dst_efi_fmt->efi_extents[i].ext_len =
281 src_efi_fmt_32->efi_extents[i].ext_len;
282 }
283 return 0;
284 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000285 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000286
287 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
288 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
289 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
290 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
291 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
292 dst_efi_fmt->efi_extents[i].ext_start =
293 src_efi_fmt_64->efi_extents[i].ext_start;
294 dst_efi_fmt->efi_extents[i].ext_len =
295 src_efi_fmt_64->efi_extents[i].ext_len;
296 }
297 return 0;
298 }
299 return EFSCORRUPTED;
300}
301
302/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100303 * This is called by the efd item code below to release references to the given
304 * efi item. Each efd calls this with the number of extents that it has
305 * logged, and when the sum of these reaches the total number of extents logged
306 * by this efi item we can free the efi item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
308void
309xfs_efi_release(xfs_efi_log_item_t *efip,
310 uint nextents)
311{
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100312 ASSERT(atomic_read(&efip->efi_next_extent) >= nextents);
313 if (atomic_sub_and_test(nextents, &efip->efi_next_extent))
314 __xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000317static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000318{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000319 return container_of(lip, struct xfs_efd_log_item, efd_item);
320}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000322STATIC void
323xfs_efd_item_free(struct xfs_efd_log_item *efdp)
324{
325 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000326 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000327 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000328 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000329}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331/*
332 * This returns the number of iovecs needed to log the given efd item.
333 * We only need 1 iovec for an efd item. It just logs the efd_log_format
334 * structure.
335 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000337xfs_efd_item_size(
338 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 return 1;
341}
342
343/*
344 * This is called to fill in the vector of log iovecs for the
345 * given efd log item. We use only 1 iovec, and we point that
346 * at the efd_log_format structure embedded in the efd item.
347 * It is at this point that we assert that all of the extent
348 * slots in the efd item have been filled.
349 */
350STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000351xfs_efd_item_format(
352 struct xfs_log_item *lip,
353 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000355 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
356 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
359
360 efdp->efd_format.efd_type = XFS_LI_EFD;
361
362 size = sizeof(xfs_efd_log_format_t);
363 size += (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
364 efdp->efd_format.efd_size = 1;
365
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000366 log_vector->i_addr = &efdp->efd_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000368 log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 ASSERT(size >= sizeof(xfs_efd_log_format_t));
370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
373 * Pinning has no meaning for an efd item, so just return.
374 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000376xfs_efd_item_pin(
377 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
382 * Since pinning has no meaning for an efd item, unpinning does
383 * not either.
384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000386xfs_efd_item_unpin(
387 struct xfs_log_item *lip,
388 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000393 * There isn't much you can do to push on an efd item. It is simply stuck
394 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000397xfs_efd_item_push(
398 struct xfs_log_item *lip,
399 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000401 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000405xfs_efd_item_unlock(
406 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000408 if (lip->li_flags & XFS_LI_ABORTED)
409 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412/*
413 * When the efd item is committed to disk, all we need to do
414 * is delete our reference to our partner efi item and then
415 * free ourselves. Since we're freeing ourselves we must
416 * return -1 to keep the transaction code from further referencing
417 * this item.
418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000420xfs_efd_item_committed(
421 struct xfs_log_item *lip,
422 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000424 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
427 * If we got a log I/O error, it's always the case that the LR with the
428 * EFI got unpinned and freed before the EFD got aborted.
429 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000430 if (!(lip->li_flags & XFS_LI_ABORTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 xfs_efi_release(efdp->efd_efip, efdp->efd_format.efd_nextents);
432
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000433 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return (xfs_lsn_t)-1;
435}
436
437/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * The EFD dependency tracking op doesn't do squat. It can't because
439 * it doesn't know where the free extent is coming from. The dependency
440 * tracking has to be handled by the "enclosing" metadata object. For
441 * example, for inodes, the inode is locked throughout the extent freeing
442 * so the dependency should be recorded there.
443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000445xfs_efd_item_committing(
446 struct xfs_log_item *lip,
447 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/*
452 * This is the ops vector shared by all efd log items.
453 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000454static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000455 .iop_size = xfs_efd_item_size,
456 .iop_format = xfs_efd_item_format,
457 .iop_pin = xfs_efd_item_pin,
458 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000459 .iop_unlock = xfs_efd_item_unlock,
460 .iop_committed = xfs_efd_item_committed,
461 .iop_push = xfs_efd_item_push,
462 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463};
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*
466 * Allocate and initialize an efd item with the given number of extents.
467 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000468struct xfs_efd_log_item *
469xfs_efd_init(
470 struct xfs_mount *mp,
471 struct xfs_efi_log_item *efip,
472 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000475 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 uint size;
477
478 ASSERT(nextents > 0);
479 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
480 size = (uint)(sizeof(xfs_efd_log_item_t) +
481 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000482 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000484 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
Dave Chinner43f5efc2010-03-23 10:10:00 +1100487 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 efdp->efd_efip = efip;
489 efdp->efd_format.efd_nextents = nextents;
490 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
491
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000492 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}