blob: 459ddec137a48a2aec19d57a739e0cdbef44ae70 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000,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"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Christoph Hellwig4fb6e8a2014-11-28 14:25:04 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Darrick J. Wong3481b682016-08-03 12:31:07 +100024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Darrick J. Wong9749fee2016-08-03 11:14:35 +100026#include "xfs_defer.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_trans_priv.h"
29#include "xfs_extfree_item.h"
Brian Foster6bc43af2015-08-19 09:51:43 +100030#include "xfs_alloc.h"
Darrick J. Wong9749fee2016-08-03 11:14:35 +100031#include "xfs_bmap.h"
Darrick J. Wong3481b682016-08-03 12:31:07 +100032#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * This routine is called to allocate an "extent free done"
36 * log item that will hold nextents worth of extents. The
37 * caller must use all nextents extents, because we are not
38 * flexible about this at all.
39 */
Darrick J. Wongbba61cb2016-08-03 11:13:47 +100040struct xfs_efd_log_item *
41xfs_trans_get_efd(struct xfs_trans *tp,
42 struct xfs_efi_log_item *efip,
43 uint nextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Darrick J. Wongbba61cb2016-08-03 11:13:47 +100045 struct xfs_efd_log_item *efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 ASSERT(tp != NULL);
48 ASSERT(nextents > 0);
49
50 efdp = xfs_efd_init(tp->t_mountp, efip, nextents);
51 ASSERT(efdp != NULL);
52
53 /*
54 * Get a log_item_desc to point at the new item.
55 */
Christoph Hellwige98c4142010-06-23 18:11:15 +100056 xfs_trans_add_item(tp, &efdp->efd_item);
57 return efdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60/*
Brian Foster6bc43af2015-08-19 09:51:43 +100061 * Free an extent and log it to the EFD. Note that the transaction is marked
62 * dirty regardless of whether the extent free succeeds or fails to support the
63 * EFI/EFD lifecycle rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
Brian Foster6bc43af2015-08-19 09:51:43 +100065int
66xfs_trans_free_extent(
67 struct xfs_trans *tp,
68 struct xfs_efd_log_item *efdp,
69 xfs_fsblock_t start_block,
Darrick J. Wong340785c2016-08-03 11:33:42 +100070 xfs_extlen_t ext_len,
71 struct xfs_owner_info *oinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Darrick J. Wong3481b682016-08-03 12:31:07 +100073 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 uint next_extent;
Darrick J. Wong3481b682016-08-03 12:31:07 +100075 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, start_block);
76 xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp, start_block);
Brian Foster6bc43af2015-08-19 09:51:43 +100077 struct xfs_extent *extp;
78 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Darrick J. Wong3481b682016-08-03 12:31:07 +100080 trace_xfs_bmap_free_deferred(tp->t_mountp, agno, 0, agbno, ext_len);
81
Darrick J. Wong340785c2016-08-03 11:33:42 +100082 error = xfs_free_extent(tp, start_block, ext_len, oinfo);
Brian Foster6bc43af2015-08-19 09:51:43 +100083
84 /*
85 * Mark the transaction dirty, even on error. This ensures the
86 * transaction is aborted, which:
87 *
88 * 1.) releases the EFI and frees the EFD
89 * 2.) shuts down the filesystem
90 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 tp->t_flags |= XFS_TRANS_DIRTY;
Christoph Hellwige98c4142010-06-23 18:11:15 +100092 efdp->efd_item.li_desc->lid_flags |= XFS_LID_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 next_extent = efdp->efd_next_extent;
95 ASSERT(next_extent < efdp->efd_format.efd_nextents);
96 extp = &(efdp->efd_format.efd_extents[next_extent]);
97 extp->ext_start = start_block;
98 extp->ext_len = ext_len;
99 efdp->efd_next_extent++;
Brian Foster6bc43af2015-08-19 09:51:43 +1000100
101 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000103
104/* Sort bmap items by AG. */
105static int
106xfs_extent_free_diff_items(
107 void *priv,
108 struct list_head *a,
109 struct list_head *b)
110{
111 struct xfs_mount *mp = priv;
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000112 struct xfs_extent_free_item *ra;
113 struct xfs_extent_free_item *rb;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000114
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000115 ra = container_of(a, struct xfs_extent_free_item, xefi_list);
116 rb = container_of(b, struct xfs_extent_free_item, xefi_list);
117 return XFS_FSB_TO_AGNO(mp, ra->xefi_startblock) -
118 XFS_FSB_TO_AGNO(mp, rb->xefi_startblock);
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000119}
120
121/* Get an EFI. */
122STATIC void *
123xfs_extent_free_create_intent(
124 struct xfs_trans *tp,
125 unsigned int count)
126{
Darrick J. Wong51ce9d02016-08-03 12:30:31 +1000127 struct xfs_efi_log_item *efip;
128
129 ASSERT(tp != NULL);
130 ASSERT(count > 0);
131
132 efip = xfs_efi_init(tp->t_mountp, count);
133 ASSERT(efip != NULL);
134
135 /*
136 * Get a log_item_desc to point at the new item.
137 */
138 xfs_trans_add_item(tp, &efip->efi_item);
139 return efip;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000140}
141
142/* Log a free extent to the intent item. */
143STATIC void
144xfs_extent_free_log_item(
145 struct xfs_trans *tp,
146 void *intent,
147 struct list_head *item)
148{
Darrick J. Wong51ce9d02016-08-03 12:30:31 +1000149 struct xfs_efi_log_item *efip = intent;
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000150 struct xfs_extent_free_item *free;
Darrick J. Wong51ce9d02016-08-03 12:30:31 +1000151 uint next_extent;
152 struct xfs_extent *extp;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000153
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000154 free = container_of(item, struct xfs_extent_free_item, xefi_list);
Darrick J. Wong51ce9d02016-08-03 12:30:31 +1000155
156 tp->t_flags |= XFS_TRANS_DIRTY;
157 efip->efi_item.li_desc->lid_flags |= XFS_LID_DIRTY;
158
159 /*
160 * atomic_inc_return gives us the value after the increment;
161 * we want to use it as an array index so we need to subtract 1 from
162 * it.
163 */
164 next_extent = atomic_inc_return(&efip->efi_next_extent) - 1;
165 ASSERT(next_extent < efip->efi_format.efi_nextents);
166 extp = &efip->efi_format.efi_extents[next_extent];
167 extp->ext_start = free->xefi_startblock;
168 extp->ext_len = free->xefi_blockcount;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000169}
170
171/* Get an EFD so we can process all the free extents. */
172STATIC void *
173xfs_extent_free_create_done(
174 struct xfs_trans *tp,
175 void *intent,
176 unsigned int count)
177{
178 return xfs_trans_get_efd(tp, intent, count);
179}
180
181/* Process a free extent. */
182STATIC int
183xfs_extent_free_finish_item(
184 struct xfs_trans *tp,
185 struct xfs_defer_ops *dop,
186 struct list_head *item,
187 void *done_item,
188 void **state)
189{
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000190 struct xfs_extent_free_item *free;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000191 int error;
192
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000193 free = container_of(item, struct xfs_extent_free_item, xefi_list);
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000194 error = xfs_trans_free_extent(tp, done_item,
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000195 free->xefi_startblock,
Darrick J. Wong340785c2016-08-03 11:33:42 +1000196 free->xefi_blockcount,
197 &free->xefi_oinfo);
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000198 kmem_free(free);
199 return error;
200}
201
202/* Abort all pending EFIs. */
203STATIC void
204xfs_extent_free_abort_intent(
205 void *intent)
206{
207 xfs_efi_release(intent);
208}
209
210/* Cancel a free extent. */
211STATIC void
212xfs_extent_free_cancel_item(
213 struct list_head *item)
214{
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000215 struct xfs_extent_free_item *free;
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000216
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000217 free = container_of(item, struct xfs_extent_free_item, xefi_list);
Darrick J. Wong9749fee2016-08-03 11:14:35 +1000218 kmem_free(free);
219}
220
221static const struct xfs_defer_op_type xfs_extent_free_defer_type = {
222 .type = XFS_DEFER_OPS_TYPE_FREE,
223 .max_items = XFS_EFI_MAX_FAST_EXTENTS,
224 .diff_items = xfs_extent_free_diff_items,
225 .create_intent = xfs_extent_free_create_intent,
226 .abort_intent = xfs_extent_free_abort_intent,
227 .log_item = xfs_extent_free_log_item,
228 .create_done = xfs_extent_free_create_done,
229 .finish_item = xfs_extent_free_finish_item,
230 .cancel_item = xfs_extent_free_cancel_item,
231};
232
233/* Register the deferred op type. */
234void
235xfs_extent_free_init_defer_op(void)
236{
237 xfs_defer_init_op_type(&xfs_extent_free_defer_type);
238}