blob: 2960fc104cb751f3caf98b73c49622654a4dc5ec [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/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +110051 * Freeing the efi requires that we remove it from the AIL if it has already
52 * been placed there. However, the EFI may not yet have been placed in the AIL
53 * when called by xfs_efi_release() from EFD processing due to the ordering of
54 * committed vs unpin operations in bulk insert operations. Hence the
55 * test_and_clear_bit(XFS_EFI_COMMITTED) to ensure only the last caller frees
56 * the EFI.
57 */
58STATIC void
59__xfs_efi_release(
60 struct xfs_efi_log_item *efip)
61{
62 struct xfs_ail *ailp = efip->efi_item.li_ailp;
63
64 if (!test_and_clear_bit(XFS_EFI_COMMITTED, &efip->efi_flags)) {
65 spin_lock(&ailp->xa_lock);
66 /* xfs_trans_ail_delete() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +100067 xfs_trans_ail_delete(ailp, &efip->efi_item,
68 SHUTDOWN_LOG_IO_ERROR);
Dave Chinnerb199c8a2010-12-20 11:59:49 +110069 xfs_efi_item_free(efip);
70 }
71}
72
73/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * This returns the number of iovecs needed to log the given efi item.
75 * We only need 1 iovec for an efi item. It just logs the efi_log_format
76 * structure.
77 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100079xfs_efi_item_size(
80 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 return 1;
83}
84
85/*
86 * This is called to fill in the vector of log iovecs for the
87 * given efi log item. We use only 1 iovec, and we point that
88 * at the efi_log_format structure embedded in the efi item.
89 * It is at this point that we assert that all of the extent
90 * slots in the efi item have been filled.
91 */
92STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100093xfs_efi_item_format(
94 struct xfs_log_item *lip,
95 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100097 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
98 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100100 ASSERT(atomic_read(&efip->efi_next_extent) ==
101 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 efip->efi_format.efi_type = XFS_LI_EFI;
104
105 size = sizeof(xfs_efi_log_format_t);
106 size += (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
107 efip->efi_format.efi_size = 1;
108
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000109 log_vector->i_addr = &efip->efi_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000111 log_vector->i_type = XLOG_REG_TYPE_EFI_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 ASSERT(size >= sizeof(xfs_efi_log_format_t));
113}
114
115
116/*
117 * Pinning has no meaning for an efi item, so just return.
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000120xfs_efi_item_pin(
121 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*
Dave Chinner9c5f8412010-12-20 11:57:24 +1100126 * While EFIs cannot really be pinned, the unpin operation is the last place at
127 * which the EFI is manipulated during a transaction. If we are being asked to
128 * remove the EFI it's because the transaction has been cancelled and by
129 * definition that means the EFI cannot be in the AIL so remove it from the
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100130 * transaction and free it. Otherwise coordinate with xfs_efi_release() (via
131 * XFS_EFI_COMMITTED) to determine who gets to free the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000134xfs_efi_item_unpin(
135 struct xfs_log_item *lip,
136 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000138 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Dave Chinner9c5f8412010-12-20 11:57:24 +1100140 if (remove) {
141 ASSERT(!(lip->li_flags & XFS_LI_IN_AIL));
Dave Chinnere34a3142011-01-27 12:13:35 +1100142 if (lip->li_desc)
143 xfs_trans_del_item(lip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000144 xfs_efi_item_free(efip);
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100145 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100147 __xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000151 * Efi items have no locking or pushing. However, since EFIs are pulled from
152 * the AIL when their corresponding EFDs are committed to disk, their situation
153 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
154 * will eventually flush the log. This should help in getting the EFI out of
155 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000158xfs_efi_item_push(
159 struct xfs_log_item *lip,
160 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 return XFS_ITEM_PINNED;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000166xfs_efi_item_unlock(
167 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000169 if (lip->li_flags & XFS_LI_ABORTED)
170 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100174 * The EFI is logged only once and cannot be moved in the log, so simply return
175 * the lsn at which it's been logged. For bulk transaction committed
176 * processing, the EFI may be processed but not yet unpinned prior to the EFD
177 * being processed. Set the XFS_EFI_COMMITTED flag so this case can be detected
178 * when processing the EFD.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000181xfs_efi_item_committed(
182 struct xfs_log_item *lip,
183 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100185 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
186
187 set_bit(XFS_EFI_COMMITTED, &efip->efi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return lsn;
189}
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * The EFI dependency tracking op doesn't do squat. It can't because
193 * it doesn't know where the free extent is coming from. The dependency
194 * tracking has to be handled by the "enclosing" metadata object. For
195 * example, for inodes, the inode is locked throughout the extent freeing
196 * so the dependency should be recorded there.
197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000199xfs_efi_item_committing(
200 struct xfs_log_item *lip,
201 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205/*
206 * This is the ops vector shared by all efi log items.
207 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000208static const struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000209 .iop_size = xfs_efi_item_size,
210 .iop_format = xfs_efi_item_format,
211 .iop_pin = xfs_efi_item_pin,
212 .iop_unpin = xfs_efi_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000213 .iop_unlock = xfs_efi_item_unlock,
214 .iop_committed = xfs_efi_item_committed,
215 .iop_push = xfs_efi_item_push,
216 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
219
220/*
221 * Allocate and initialize an efi item with the given number of extents.
222 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000223struct xfs_efi_log_item *
224xfs_efi_init(
225 struct xfs_mount *mp,
226 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000229 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 uint size;
231
232 ASSERT(nextents > 0);
233 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
234 size = (uint)(sizeof(xfs_efi_log_item_t) +
235 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000236 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000238 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
Dave Chinner43f5efc2010-03-23 10:10:00 +1100241 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 efip->efi_format.efi_nextents = nextents;
243 efip->efi_format.efi_id = (__psint_t)(void*)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100244 atomic_set(&efip->efi_next_extent, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000246 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000250 * Copy an EFI format buffer from the given buf, and into the destination
251 * EFI format structure.
252 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
253 * one of which will be the native format for this kernel.
254 * It will handle the conversion of formats if necessary.
255 */
256int
257xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
258{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000259 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000260 uint i;
261 uint len = sizeof(xfs_efi_log_format_t) +
262 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
263 uint len32 = sizeof(xfs_efi_log_format_32_t) +
264 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
265 uint len64 = sizeof(xfs_efi_log_format_64_t) +
266 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
267
268 if (buf->i_len == len) {
269 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
270 return 0;
271 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000272 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000273
274 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
275 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
276 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
277 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
278 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
279 dst_efi_fmt->efi_extents[i].ext_start =
280 src_efi_fmt_32->efi_extents[i].ext_start;
281 dst_efi_fmt->efi_extents[i].ext_len =
282 src_efi_fmt_32->efi_extents[i].ext_len;
283 }
284 return 0;
285 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000286 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000287
288 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
289 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
290 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
291 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
292 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
293 dst_efi_fmt->efi_extents[i].ext_start =
294 src_efi_fmt_64->efi_extents[i].ext_start;
295 dst_efi_fmt->efi_extents[i].ext_len =
296 src_efi_fmt_64->efi_extents[i].ext_len;
297 }
298 return 0;
299 }
300 return EFSCORRUPTED;
301}
302
303/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100304 * This is called by the efd item code below to release references to the given
305 * efi item. Each efd calls this with the number of extents that it has
306 * logged, and when the sum of these reaches the total number of extents logged
307 * by this efi item we can free the efi item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
309void
310xfs_efi_release(xfs_efi_log_item_t *efip,
311 uint nextents)
312{
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100313 ASSERT(atomic_read(&efip->efi_next_extent) >= nextents);
314 if (atomic_sub_and_test(nextents, &efip->efi_next_extent))
315 __xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000318static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000319{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000320 return container_of(lip, struct xfs_efd_log_item, efd_item);
321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000323STATIC void
324xfs_efd_item_free(struct xfs_efd_log_item *efdp)
325{
326 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000327 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000328 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000329 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000330}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332/*
333 * This returns the number of iovecs needed to log the given efd item.
334 * We only need 1 iovec for an efd item. It just logs the efd_log_format
335 * structure.
336 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337STATIC uint
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000338xfs_efd_item_size(
339 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 return 1;
342}
343
344/*
345 * This is called to fill in the vector of log iovecs for the
346 * given efd log item. We use only 1 iovec, and we point that
347 * at the efd_log_format structure embedded in the efd item.
348 * It is at this point that we assert that all of the extent
349 * slots in the efd item have been filled.
350 */
351STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000352xfs_efd_item_format(
353 struct xfs_log_item *lip,
354 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000356 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
357 uint size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
360
361 efdp->efd_format.efd_type = XFS_LI_EFD;
362
363 size = sizeof(xfs_efd_log_format_t);
364 size += (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
365 efdp->efd_format.efd_size = 1;
366
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000367 log_vector->i_addr = &efdp->efd_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 log_vector->i_len = size;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000369 log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 ASSERT(size >= sizeof(xfs_efd_log_format_t));
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/*
374 * Pinning has no meaning for an efd item, so just return.
375 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000377xfs_efd_item_pin(
378 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/*
383 * Since pinning has no meaning for an efd item, unpinning does
384 * not either.
385 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000387xfs_efd_item_unpin(
388 struct xfs_log_item *lip,
389 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000394 * There isn't much you can do to push on an efd item. It is simply stuck
395 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000398xfs_efd_item_push(
399 struct xfs_log_item *lip,
400 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000402 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000406xfs_efd_item_unlock(
407 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000409 if (lip->li_flags & XFS_LI_ABORTED)
410 xfs_efd_item_free(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413/*
414 * When the efd item is committed to disk, all we need to do
415 * is delete our reference to our partner efi item and then
416 * free ourselves. Since we're freeing ourselves we must
417 * return -1 to keep the transaction code from further referencing
418 * this item.
419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000421xfs_efd_item_committed(
422 struct xfs_log_item *lip,
423 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000425 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /*
428 * If we got a log I/O error, it's always the case that the LR with the
429 * EFI got unpinned and freed before the EFD got aborted.
430 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000431 if (!(lip->li_flags & XFS_LI_ABORTED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 xfs_efi_release(efdp->efd_efip, efdp->efd_format.efd_nextents);
433
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000434 xfs_efd_item_free(efdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return (xfs_lsn_t)-1;
436}
437
438/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * The EFD dependency tracking op doesn't do squat. It can't because
440 * it doesn't know where the free extent is coming from. The dependency
441 * tracking has to be handled by the "enclosing" metadata object. For
442 * example, for inodes, the inode is locked throughout the extent freeing
443 * so the dependency should be recorded there.
444 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000446xfs_efd_item_committing(
447 struct xfs_log_item *lip,
448 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/*
453 * This is the ops vector shared by all efd log items.
454 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000455static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000456 .iop_size = xfs_efd_item_size,
457 .iop_format = xfs_efd_item_format,
458 .iop_pin = xfs_efd_item_pin,
459 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000460 .iop_unlock = xfs_efd_item_unlock,
461 .iop_committed = xfs_efd_item_committed,
462 .iop_push = xfs_efd_item_push,
463 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464};
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
467 * Allocate and initialize an efd item with the given number of extents.
468 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000469struct xfs_efd_log_item *
470xfs_efd_init(
471 struct xfs_mount *mp,
472 struct xfs_efi_log_item *efip,
473 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000476 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 uint size;
478
479 ASSERT(nextents > 0);
480 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
481 size = (uint)(sizeof(xfs_efd_log_item_t) +
482 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000483 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000485 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
Dave Chinner43f5efc2010-03-23 10:10:00 +1100488 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 efdp->efd_efip = efip;
490 efdp->efd_format.efd_nextents = nextents;
491 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
492
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000493 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}