blob: c0f375087efc3256cf5196ff08cdd2068ce18834 [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
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100077xfs_efi_item_size(
78 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 return 1;
81}
82
83/*
84 * This is called to fill in the vector of log iovecs for the
85 * given efi log item. We use only 1 iovec, and we point that
86 * at the efi_log_format structure embedded in the efi item.
87 * It is at this point that we assert that all of the extent
88 * slots in the efi item have been filled.
89 */
90STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100091xfs_efi_item_format(
92 struct xfs_log_item *lip,
93 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100095 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
96 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dave Chinnerb199c8a2010-12-20 11:59:49 +110098 ASSERT(atomic_read(&efip->efi_next_extent) ==
99 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 efip->efi_format.efi_type = XFS_LI_EFI;
102
103 size = sizeof(xfs_efi_log_format_t);
104 size += (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
105 efip->efi_format.efi_size = 1;
106
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000107 log_vector->i_addr = &efip->efi_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000109 log_vector->i_type = XLOG_REG_TYPE_EFI_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 ASSERT(size >= sizeof(xfs_efi_log_format_t));
111}
112
113
114/*
115 * Pinning has no meaning for an efi item, so just return.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000118xfs_efi_item_pin(
119 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
Dave Chinner9c5f8412010-12-20 11:57:24 +1100124 * While EFIs cannot really be pinned, the unpin operation is the last place at
125 * which the EFI is manipulated during a transaction. If we are being asked to
126 * remove the EFI it's because the transaction has been cancelled and by
127 * definition that means the EFI cannot be in the AIL so remove it from the
Dave Chinner666d6442013-04-03 14:09:21 +1100128 * transaction and free it. Otherwise coordinate with xfs_efi_release()
129 * to determine who gets to free the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000132xfs_efi_item_unpin(
133 struct xfs_log_item *lip,
134 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000136 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Dave Chinner9c5f8412010-12-20 11:57:24 +1100138 if (remove) {
139 ASSERT(!(lip->li_flags & XFS_LI_IN_AIL));
Dave Chinnere34a3142011-01-27 12:13:35 +1100140 if (lip->li_desc)
141 xfs_trans_del_item(lip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000142 xfs_efi_item_free(efip);
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100143 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100145 __xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000149 * Efi items have no locking or pushing. However, since EFIs are pulled from
150 * the AIL when their corresponding EFDs are committed to disk, their situation
151 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
152 * will eventually flush the log. This should help in getting the EFI out of
153 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000156xfs_efi_item_push(
157 struct xfs_log_item *lip,
158 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 return XFS_ITEM_PINNED;
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000164xfs_efi_item_unlock(
165 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000167 if (lip->li_flags & XFS_LI_ABORTED)
168 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100172 * The EFI is logged only once and cannot be moved in the log, so simply return
Dave Chinner666d6442013-04-03 14:09:21 +1100173 * the lsn at which it's been logged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000176xfs_efi_item_committed(
177 struct xfs_log_item *lip,
178 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 return lsn;
181}
182
183/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * The EFI dependency tracking op doesn't do squat. It can't because
185 * it doesn't know where the free extent is coming from. The dependency
186 * tracking has to be handled by the "enclosing" metadata object. For
187 * example, for inodes, the inode is locked throughout the extent freeing
188 * so the dependency should be recorded there.
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000191xfs_efi_item_committing(
192 struct xfs_log_item *lip,
193 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/*
198 * This is the ops vector shared by all efi log items.
199 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000200static const struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000201 .iop_size = xfs_efi_item_size,
202 .iop_format = xfs_efi_item_format,
203 .iop_pin = xfs_efi_item_pin,
204 .iop_unpin = xfs_efi_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000205 .iop_unlock = xfs_efi_item_unlock,
206 .iop_committed = xfs_efi_item_committed,
207 .iop_push = xfs_efi_item_push,
208 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
211
212/*
213 * Allocate and initialize an efi item with the given number of extents.
214 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000215struct xfs_efi_log_item *
216xfs_efi_init(
217 struct xfs_mount *mp,
218 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000221 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 uint size;
223
224 ASSERT(nextents > 0);
225 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
226 size = (uint)(sizeof(xfs_efi_log_item_t) +
227 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000228 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000230 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Dave Chinner43f5efc2010-03-23 10:10:00 +1100233 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 efip->efi_format.efi_nextents = nextents;
235 efip->efi_format.efi_id = (__psint_t)(void*)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100236 atomic_set(&efip->efi_next_extent, 0);
Dave Chinner666d6442013-04-03 14:09:21 +1100237 atomic_set(&efip->efi_refcount, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000239 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000243 * Copy an EFI format buffer from the given buf, and into the destination
244 * EFI format structure.
245 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
246 * one of which will be the native format for this kernel.
247 * It will handle the conversion of formats if necessary.
248 */
249int
250xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
251{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000252 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000253 uint i;
254 uint len = sizeof(xfs_efi_log_format_t) +
255 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
256 uint len32 = sizeof(xfs_efi_log_format_32_t) +
257 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
258 uint len64 = sizeof(xfs_efi_log_format_64_t) +
259 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
260
261 if (buf->i_len == len) {
262 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
263 return 0;
264 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000265 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000266
267 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
268 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
269 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
270 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
271 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
272 dst_efi_fmt->efi_extents[i].ext_start =
273 src_efi_fmt_32->efi_extents[i].ext_start;
274 dst_efi_fmt->efi_extents[i].ext_len =
275 src_efi_fmt_32->efi_extents[i].ext_len;
276 }
277 return 0;
278 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000279 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000280
281 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
282 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
283 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
284 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
285 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
286 dst_efi_fmt->efi_extents[i].ext_start =
287 src_efi_fmt_64->efi_extents[i].ext_start;
288 dst_efi_fmt->efi_extents[i].ext_len =
289 src_efi_fmt_64->efi_extents[i].ext_len;
290 }
291 return 0;
292 }
293 return EFSCORRUPTED;
294}
295
296/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100297 * This is called by the efd item code below to release references to the given
298 * efi item. Each efd calls this with the number of extents that it has
299 * logged, and when the sum of these reaches the total number of extents logged
300 * by this efi item we can free the efi item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 */
302void
303xfs_efi_release(xfs_efi_log_item_t *efip,
304 uint nextents)
305{
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100306 ASSERT(atomic_read(&efip->efi_next_extent) >= nextents);
Dave Chinner666d6442013-04-03 14:09:21 +1100307 if (atomic_sub_and_test(nextents, &efip->efi_next_extent)) {
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100308 __xfs_efi_release(efip);
Dave Chinner666d6442013-04-03 14:09:21 +1100309
310 /* recovery needs us to drop the EFI reference, too */
311 if (test_bit(XFS_EFI_RECOVERED, &efip->efi_flags))
312 __xfs_efi_release(efip);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000316static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000317{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000318 return container_of(lip, struct xfs_efd_log_item, efd_item);
319}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000321STATIC void
322xfs_efd_item_free(struct xfs_efd_log_item *efdp)
323{
324 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000325 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000326 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000327 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000328}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330/*
331 * This returns the number of iovecs needed to log the given efd item.
332 * We only need 1 iovec for an efd item. It just logs the efd_log_format
333 * structure.
334 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000336xfs_efd_item_size(
337 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 return 1;
340}
341
342/*
343 * This is called to fill in the vector of log iovecs for the
344 * given efd log item. We use only 1 iovec, and we point that
345 * at the efd_log_format structure embedded in the efd item.
346 * It is at this point that we assert that all of the extent
347 * slots in the efd item have been filled.
348 */
349STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000350xfs_efd_item_format(
351 struct xfs_log_item *lip,
352 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000354 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
355 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
358
359 efdp->efd_format.efd_type = XFS_LI_EFD;
360
361 size = sizeof(xfs_efd_log_format_t);
362 size += (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
363 efdp->efd_format.efd_size = 1;
364
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000365 log_vector->i_addr = &efdp->efd_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000367 log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ASSERT(size >= sizeof(xfs_efd_log_format_t));
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*
372 * Pinning has no meaning for an efd item, so just return.
373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000375xfs_efd_item_pin(
376 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*
381 * Since pinning has no meaning for an efd item, unpinning does
382 * not either.
383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000385xfs_efd_item_unpin(
386 struct xfs_log_item *lip,
387 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000392 * There isn't much you can do to push on an efd item. It is simply stuck
393 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000396xfs_efd_item_push(
397 struct xfs_log_item *lip,
398 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000400 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000404xfs_efd_item_unlock(
405 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000407 if (lip->li_flags & XFS_LI_ABORTED)
408 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411/*
412 * When the efd item is committed to disk, all we need to do
413 * is delete our reference to our partner efi item and then
414 * free ourselves. Since we're freeing ourselves we must
415 * return -1 to keep the transaction code from further referencing
416 * this item.
417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000419xfs_efd_item_committed(
420 struct xfs_log_item *lip,
421 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000423 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
426 * If we got a log I/O error, it's always the case that the LR with the
427 * EFI got unpinned and freed before the EFD got aborted.
428 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000429 if (!(lip->li_flags & XFS_LI_ABORTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 xfs_efi_release(efdp->efd_efip, efdp->efd_format.efd_nextents);
431
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000432 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return (xfs_lsn_t)-1;
434}
435
436/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * The EFD dependency tracking op doesn't do squat. It can't because
438 * it doesn't know where the free extent is coming from. The dependency
439 * tracking has to be handled by the "enclosing" metadata object. For
440 * example, for inodes, the inode is locked throughout the extent freeing
441 * so the dependency should be recorded there.
442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000444xfs_efd_item_committing(
445 struct xfs_log_item *lip,
446 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
450/*
451 * This is the ops vector shared by all efd log items.
452 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000453static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000454 .iop_size = xfs_efd_item_size,
455 .iop_format = xfs_efd_item_format,
456 .iop_pin = xfs_efd_item_pin,
457 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000458 .iop_unlock = xfs_efd_item_unlock,
459 .iop_committed = xfs_efd_item_committed,
460 .iop_push = xfs_efd_item_push,
461 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462};
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*
465 * Allocate and initialize an efd item with the given number of extents.
466 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000467struct xfs_efd_log_item *
468xfs_efd_init(
469 struct xfs_mount *mp,
470 struct xfs_efi_log_item *efip,
471 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000474 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 uint size;
476
477 ASSERT(nextents > 0);
478 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
479 size = (uint)(sizeof(xfs_efd_log_item_t) +
480 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000481 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000483 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
Dave Chinner43f5efc2010-03-23 10:10:00 +1100486 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 efdp->efd_efip = efip;
488 efdp->efd_format.efd_nextents = nextents;
489 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
490
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000491 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}