blob: 4aa0153214f91fb9ec03621c0b006317ca3d0e09 [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"
Christoph Hellwig4fb6e8a2014-11-28 14:25:04 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Dave Chinner239880e2013-10-23 10:50:10 +110024#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans_priv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110026#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_extfree_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110028#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
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/*
50 * This returns the number of iovecs needed to log the given efi item.
51 * We only need 1 iovec for an efi item. It just logs the efi_log_format
52 * structure.
53 */
Dave Chinner166d1362013-08-12 20:50:04 +100054static inline int
55xfs_efi_item_sizeof(
56 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Dave Chinner166d1362013-08-12 20:50:04 +100058 return sizeof(struct xfs_efi_log_format) +
59 (efip->efi_format.efi_nextents - 1) * sizeof(xfs_extent_t);
60}
61
62STATIC void
63xfs_efi_item_size(
64 struct xfs_log_item *lip,
65 int *nvecs,
66 int *nbytes)
67{
68 *nvecs += 1;
69 *nbytes += xfs_efi_item_sizeof(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72/*
73 * This is called to fill in the vector of log iovecs for the
74 * given efi log item. We use only 1 iovec, and we point that
75 * at the efi_log_format structure embedded in the efi item.
76 * It is at this point that we assert that all of the extent
77 * slots in the efi item have been filled.
78 */
79STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100080xfs_efi_item_format(
81 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110082 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100084 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110085 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Dave Chinnerb199c8a2010-12-20 11:59:49 +110087 ASSERT(atomic_read(&efip->efi_next_extent) ==
88 efip->efi_format.efi_nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 efip->efi_format.efi_type = XFS_LI_EFI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 efip->efi_format.efi_size = 1;
92
Christoph Hellwigbde7cff2013-12-13 11:34:02 +110093 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFI_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +110094 &efip->efi_format,
95 xfs_efi_item_sizeof(efip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98
99/*
100 * Pinning has no meaning for an efi item, so just return.
101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000103xfs_efi_item_pin(
104 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
Brian Foster8d99fe92015-08-19 09:51:16 +1000109 * The unpin operation is the last place an EFI is manipulated in the log. It is
110 * either inserted in the AIL or aborted in the event of a log I/O error. In
111 * either case, the EFI transaction has been successfully committed to make it
112 * this far. Therefore, we expect whoever committed the EFI to either construct
113 * and commit the EFD or drop the EFD's reference in the event of error. Simply
114 * drop the log's EFI reference now that the log is done with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000117xfs_efi_item_unpin(
118 struct xfs_log_item *lip,
119 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000121 struct xfs_efi_log_item *efip = EFI_ITEM(lip);
Brian Foster5e4b5382015-08-19 09:50:12 +1000122 xfs_efi_release(efip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
125/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000126 * Efi items have no locking or pushing. However, since EFIs are pulled from
127 * the AIL when their corresponding EFDs are committed to disk, their situation
128 * is very similar to being pinned. Return XFS_ITEM_PINNED so that the caller
129 * will eventually flush the log. This should help in getting the EFI out of
130 * the AIL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000133xfs_efi_item_push(
134 struct xfs_log_item *lip,
135 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 return XFS_ITEM_PINNED;
138}
139
Brian Foster8d99fe92015-08-19 09:51:16 +1000140/*
141 * The EFI has been either committed or aborted if the transaction has been
142 * cancelled. If the transaction was cancelled, an EFD isn't going to be
143 * constructed and thus we free the EFI here directly.
144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000146xfs_efi_item_unlock(
147 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000149 if (lip->li_flags & XFS_LI_ABORTED)
150 xfs_efi_item_free(EFI_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153/*
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100154 * The EFI is logged only once and cannot be moved in the log, so simply return
Dave Chinner666d6442013-04-03 14:09:21 +1100155 * the lsn at which it's been logged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000158xfs_efi_item_committed(
159 struct xfs_log_item *lip,
160 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 return lsn;
163}
164
165/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * The EFI dependency tracking op doesn't do squat. It can't because
167 * it doesn't know where the free extent is coming from. The dependency
168 * tracking has to be handled by the "enclosing" metadata object. For
169 * example, for inodes, the inode is locked throughout the extent freeing
170 * so the dependency should be recorded there.
171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000173xfs_efi_item_committing(
174 struct xfs_log_item *lip,
175 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/*
180 * This is the ops vector shared by all efi log items.
181 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000182static const struct xfs_item_ops xfs_efi_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000183 .iop_size = xfs_efi_item_size,
184 .iop_format = xfs_efi_item_format,
185 .iop_pin = xfs_efi_item_pin,
186 .iop_unpin = xfs_efi_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000187 .iop_unlock = xfs_efi_item_unlock,
188 .iop_committed = xfs_efi_item_committed,
189 .iop_push = xfs_efi_item_push,
190 .iop_committing = xfs_efi_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191};
192
193
194/*
195 * Allocate and initialize an efi item with the given number of extents.
196 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000197struct xfs_efi_log_item *
198xfs_efi_init(
199 struct xfs_mount *mp,
200 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000203 struct xfs_efi_log_item *efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 uint size;
205
206 ASSERT(nextents > 0);
207 if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
208 size = (uint)(sizeof(xfs_efi_log_item_t) +
209 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000210 efip = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000212 efip = kmem_zone_zalloc(xfs_efi_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
Dave Chinner43f5efc2010-03-23 10:10:00 +1100215 xfs_log_item_init(mp, &efip->efi_item, XFS_LI_EFI, &xfs_efi_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 efip->efi_format.efi_nextents = nextents;
Christoph Hellwigdb9d67d2015-06-22 09:43:32 +1000217 efip->efi_format.efi_id = (uintptr_t)(void *)efip;
Dave Chinnerb199c8a2010-12-20 11:59:49 +1100218 atomic_set(&efip->efi_next_extent, 0);
Dave Chinner666d6442013-04-03 14:09:21 +1100219 atomic_set(&efip->efi_refcount, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000221 return efip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/*
Tim Shimmin6d192a92006-06-09 14:55:38 +1000225 * Copy an EFI format buffer from the given buf, and into the destination
226 * EFI format structure.
227 * The given buffer can be in 32 bit or 64 bit form (which has different padding),
228 * one of which will be the native format for this kernel.
229 * It will handle the conversion of formats if necessary.
230 */
231int
232xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
233{
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000234 xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000235 uint i;
236 uint len = sizeof(xfs_efi_log_format_t) +
237 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
238 uint len32 = sizeof(xfs_efi_log_format_32_t) +
239 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
240 uint len64 = sizeof(xfs_efi_log_format_64_t) +
241 (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
242
243 if (buf->i_len == len) {
244 memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
245 return 0;
246 } else if (buf->i_len == len32) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000247 xfs_efi_log_format_32_t *src_efi_fmt_32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000248
249 dst_efi_fmt->efi_type = src_efi_fmt_32->efi_type;
250 dst_efi_fmt->efi_size = src_efi_fmt_32->efi_size;
251 dst_efi_fmt->efi_nextents = src_efi_fmt_32->efi_nextents;
252 dst_efi_fmt->efi_id = src_efi_fmt_32->efi_id;
253 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
254 dst_efi_fmt->efi_extents[i].ext_start =
255 src_efi_fmt_32->efi_extents[i].ext_start;
256 dst_efi_fmt->efi_extents[i].ext_len =
257 src_efi_fmt_32->efi_extents[i].ext_len;
258 }
259 return 0;
260 } else if (buf->i_len == len64) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000261 xfs_efi_log_format_64_t *src_efi_fmt_64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000262
263 dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type;
264 dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;
265 dst_efi_fmt->efi_nextents = src_efi_fmt_64->efi_nextents;
266 dst_efi_fmt->efi_id = src_efi_fmt_64->efi_id;
267 for (i = 0; i < dst_efi_fmt->efi_nextents; i++) {
268 dst_efi_fmt->efi_extents[i].ext_start =
269 src_efi_fmt_64->efi_extents[i].ext_start;
270 dst_efi_fmt->efi_extents[i].ext_len =
271 src_efi_fmt_64->efi_extents[i].ext_len;
272 }
273 return 0;
274 }
Dave Chinner24513372014-06-25 14:58:08 +1000275 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000276}
277
278/*
Brian Fostere32a1d12015-08-19 09:52:21 +1000279 * Freeing the efi requires that we remove it from the AIL if it has already
280 * been placed there. However, the EFI may not yet have been placed in the AIL
281 * when called by xfs_efi_release() from EFD processing due to the ordering of
282 * committed vs unpin operations in bulk insert operations. Hence the reference
283 * count to ensure only the last caller frees the EFI.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
285void
Brian Foster5e4b5382015-08-19 09:50:12 +1000286xfs_efi_release(
287 struct xfs_efi_log_item *efip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Brian Fostere32a1d12015-08-19 09:52:21 +1000289 if (atomic_dec_and_test(&efip->efi_refcount)) {
Brian Foster146e54b2015-08-19 10:01:08 +1000290 xfs_trans_ail_remove(&efip->efi_item, SHUTDOWN_LOG_IO_ERROR);
Brian Fostere32a1d12015-08-19 09:52:21 +1000291 xfs_efi_item_free(efip);
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000295static inline struct xfs_efd_log_item *EFD_ITEM(struct xfs_log_item *lip)
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000296{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000297 return container_of(lip, struct xfs_efd_log_item, efd_item);
298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000300STATIC void
301xfs_efd_item_free(struct xfs_efd_log_item *efdp)
302{
303 if (efdp->efd_format.efd_nextents > XFS_EFD_MAX_FAST_EXTENTS)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000304 kmem_free(efdp);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000305 else
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000306 kmem_zone_free(xfs_efd_zone, efdp);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000307}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309/*
310 * This returns the number of iovecs needed to log the given efd item.
311 * We only need 1 iovec for an efd item. It just logs the efd_log_format
312 * structure.
313 */
Dave Chinner166d1362013-08-12 20:50:04 +1000314static inline int
315xfs_efd_item_sizeof(
316 struct xfs_efd_log_item *efdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Dave Chinner166d1362013-08-12 20:50:04 +1000318 return sizeof(xfs_efd_log_format_t) +
319 (efdp->efd_format.efd_nextents - 1) * sizeof(xfs_extent_t);
320}
321
322STATIC void
323xfs_efd_item_size(
324 struct xfs_log_item *lip,
325 int *nvecs,
326 int *nbytes)
327{
328 *nvecs += 1;
329 *nbytes += xfs_efd_item_sizeof(EFD_ITEM(lip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*
333 * This is called to fill in the vector of log iovecs for the
334 * given efd log item. We use only 1 iovec, and we point that
335 * at the efd_log_format structure embedded in the efd item.
336 * It is at this point that we assert that all of the extent
337 * slots in the efd item have been filled.
338 */
339STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000340xfs_efd_item_format(
341 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100342 struct xfs_log_vec *lv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000344 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100345 struct xfs_log_iovec *vecp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 ASSERT(efdp->efd_next_extent == efdp->efd_format.efd_nextents);
348
349 efdp->efd_format.efd_type = XFS_LI_EFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 efdp->efd_format.efd_size = 1;
351
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100352 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_EFD_FORMAT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100353 &efdp->efd_format,
354 xfs_efd_item_sizeof(efdp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/*
358 * Pinning has no meaning for an efd item, so just return.
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000361xfs_efd_item_pin(
362 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/*
367 * Since pinning has no meaning for an efd item, unpinning does
368 * not either.
369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000371xfs_efd_item_unpin(
372 struct xfs_log_item *lip,
373 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000378 * There isn't much you can do to push on an efd item. It is simply stuck
379 * waiting for the log to be flushed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000382xfs_efd_item_push(
383 struct xfs_log_item *lip,
384 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000386 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Brian Foster8d99fe92015-08-19 09:51:16 +1000389/*
390 * The EFD is either committed or aborted if the transaction is cancelled. If
391 * the transaction is cancelled, drop our reference to the EFI and free the EFD.
392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000394xfs_efd_item_unlock(
395 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Brian Foster8d99fe92015-08-19 09:51:16 +1000397 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
398
399 if (lip->li_flags & XFS_LI_ABORTED) {
400 xfs_efi_release(efdp->efd_efip);
401 xfs_efd_item_free(efdp);
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
Brian Foster8d99fe92015-08-19 09:51:16 +1000406 * When the efd item is committed to disk, all we need to do is delete our
407 * reference to our partner efi item and then free ourselves. Since we're
408 * freeing ourselves we must return -1 to keep the transaction code from further
409 * referencing this item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411STATIC xfs_lsn_t
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000412xfs_efd_item_committed(
413 struct xfs_log_item *lip,
414 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000416 struct xfs_efd_log_item *efdp = EFD_ITEM(lip);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /*
Brian Foster8d99fe92015-08-19 09:51:16 +1000419 * Drop the EFI reference regardless of whether the EFD has been
420 * aborted. Once the EFD transaction is constructed, it is the sole
421 * responsibility of the EFD to release the EFI (even if the EFI is
422 * aborted due to log I/O error).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 */
Brian Foster8d99fe92015-08-19 09:51:16 +1000424 xfs_efi_release(efdp->efd_efip);
Christoph Hellwig7d795ca2005-06-21 15:41:19 +1000425 xfs_efd_item_free(efdp);
Brian Foster8d99fe92015-08-19 09:51:16 +1000426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return (xfs_lsn_t)-1;
428}
429
430/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * The EFD dependency tracking op doesn't do squat. It can't because
432 * it doesn't know where the free extent is coming from. The dependency
433 * tracking has to be handled by the "enclosing" metadata object. For
434 * example, for inodes, the inode is locked throughout the extent freeing
435 * so the dependency should be recorded there.
436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437STATIC void
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000438xfs_efd_item_committing(
439 struct xfs_log_item *lip,
440 xfs_lsn_t lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/*
445 * This is the ops vector shared by all efd log items.
446 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000447static const struct xfs_item_ops xfs_efd_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000448 .iop_size = xfs_efd_item_size,
449 .iop_format = xfs_efd_item_format,
450 .iop_pin = xfs_efd_item_pin,
451 .iop_unpin = xfs_efd_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000452 .iop_unlock = xfs_efd_item_unlock,
453 .iop_committed = xfs_efd_item_committed,
454 .iop_push = xfs_efd_item_push,
455 .iop_committing = xfs_efd_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456};
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
459 * Allocate and initialize an efd item with the given number of extents.
460 */
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000461struct xfs_efd_log_item *
462xfs_efd_init(
463 struct xfs_mount *mp,
464 struct xfs_efi_log_item *efip,
465 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000468 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 uint size;
470
471 ASSERT(nextents > 0);
472 if (nextents > XFS_EFD_MAX_FAST_EXTENTS) {
473 size = (uint)(sizeof(xfs_efd_log_item_t) +
474 ((nextents - 1) * sizeof(xfs_extent_t)));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000475 efdp = kmem_zalloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 } else {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000477 efdp = kmem_zone_zalloc(xfs_efd_zone, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479
Dave Chinner43f5efc2010-03-23 10:10:00 +1100480 xfs_log_item_init(mp, &efdp->efd_item, XFS_LI_EFD, &xfs_efd_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 efdp->efd_efip = efip;
482 efdp->efd_format.efd_nextents = nextents;
483 efdp->efd_format.efd_efi_id = efip->efi_format.efi_id;
484
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000485 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}