xfs: rework xfs_bmap_free callers to use xfs_defer_ops
[deliverable/linux.git] / fs / xfs / xfs_trans_extfree.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
70a9883c 20#include "xfs_shared.h"
4fb6e8ad 21#include "xfs_format.h"
239880ef
DC
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
1da177e4 24#include "xfs_mount.h"
9749fee8 25#include "xfs_defer.h"
239880ef 26#include "xfs_trans.h"
1da177e4
LT
27#include "xfs_trans_priv.h"
28#include "xfs_extfree_item.h"
6bc43af3 29#include "xfs_alloc.h"
9749fee8 30#include "xfs_bmap.h"
1da177e4
LT
31
32/*
33 * This routine is called to allocate an "extent free intention"
34 * log item that will hold nextents worth of extents. The
35 * caller must use all nextents extents, because we are not
36 * flexible about this at all.
37 */
bba61cbf
DW
38struct xfs_efi_log_item *
39xfs_trans_get_efi(struct xfs_trans *tp,
40 uint nextents)
1da177e4 41{
bba61cbf 42 struct xfs_efi_log_item *efip;
1da177e4
LT
43
44 ASSERT(tp != NULL);
45 ASSERT(nextents > 0);
46
47 efip = xfs_efi_init(tp->t_mountp, nextents);
48 ASSERT(efip != NULL);
49
50 /*
51 * Get a log_item_desc to point at the new item.
52 */
e98c414f
CH
53 xfs_trans_add_item(tp, &efip->efi_item);
54 return efip;
1da177e4
LT
55}
56
57/*
58 * This routine is called to indicate that the described
59 * extent is to be logged as needing to be freed. It should
60 * be called once for each extent to be freed.
61 */
62void
bba61cbf
DW
63xfs_trans_log_efi_extent(struct xfs_trans *tp,
64 struct xfs_efi_log_item *efip,
65 xfs_fsblock_t start_block,
66 xfs_extlen_t ext_len)
1da177e4 67{
bba61cbf
DW
68 uint next_extent;
69 struct xfs_extent *extp;
1da177e4 70
1da177e4 71 tp->t_flags |= XFS_TRANS_DIRTY;
e98c414f 72 efip->efi_item.li_desc->lid_flags |= XFS_LID_DIRTY;
1da177e4 73
b199c8a4
DC
74 /*
75 * atomic_inc_return gives us the value after the increment;
76 * we want to use it as an array index so we need to subtract 1 from
77 * it.
78 */
79 next_extent = atomic_inc_return(&efip->efi_next_extent) - 1;
1da177e4
LT
80 ASSERT(next_extent < efip->efi_format.efi_nextents);
81 extp = &(efip->efi_format.efi_extents[next_extent]);
82 extp->ext_start = start_block;
83 extp->ext_len = ext_len;
1da177e4
LT
84}
85
86
87/*
88 * This routine is called to allocate an "extent free done"
89 * log item that will hold nextents worth of extents. The
90 * caller must use all nextents extents, because we are not
91 * flexible about this at all.
92 */
bba61cbf
DW
93struct xfs_efd_log_item *
94xfs_trans_get_efd(struct xfs_trans *tp,
95 struct xfs_efi_log_item *efip,
96 uint nextents)
1da177e4 97{
bba61cbf 98 struct xfs_efd_log_item *efdp;
1da177e4
LT
99
100 ASSERT(tp != NULL);
101 ASSERT(nextents > 0);
102
103 efdp = xfs_efd_init(tp->t_mountp, efip, nextents);
104 ASSERT(efdp != NULL);
105
106 /*
107 * Get a log_item_desc to point at the new item.
108 */
e98c414f
CH
109 xfs_trans_add_item(tp, &efdp->efd_item);
110 return efdp;
1da177e4
LT
111}
112
113/*
6bc43af3
BF
114 * Free an extent and log it to the EFD. Note that the transaction is marked
115 * dirty regardless of whether the extent free succeeds or fails to support the
116 * EFI/EFD lifecycle rules.
1da177e4 117 */
6bc43af3
BF
118int
119xfs_trans_free_extent(
120 struct xfs_trans *tp,
121 struct xfs_efd_log_item *efdp,
122 xfs_fsblock_t start_block,
123 xfs_extlen_t ext_len)
1da177e4 124{
1da177e4 125 uint next_extent;
6bc43af3
BF
126 struct xfs_extent *extp;
127 int error;
1da177e4 128
6bc43af3
BF
129 error = xfs_free_extent(tp, start_block, ext_len);
130
131 /*
132 * Mark the transaction dirty, even on error. This ensures the
133 * transaction is aborted, which:
134 *
135 * 1.) releases the EFI and frees the EFD
136 * 2.) shuts down the filesystem
137 */
1da177e4 138 tp->t_flags |= XFS_TRANS_DIRTY;
e98c414f 139 efdp->efd_item.li_desc->lid_flags |= XFS_LID_DIRTY;
1da177e4
LT
140
141 next_extent = efdp->efd_next_extent;
142 ASSERT(next_extent < efdp->efd_format.efd_nextents);
143 extp = &(efdp->efd_format.efd_extents[next_extent]);
144 extp->ext_start = start_block;
145 extp->ext_len = ext_len;
146 efdp->efd_next_extent++;
6bc43af3
BF
147
148 return error;
1da177e4 149}
9749fee8
DW
150
151/* Sort bmap items by AG. */
152static int
153xfs_extent_free_diff_items(
154 void *priv,
155 struct list_head *a,
156 struct list_head *b)
157{
158 struct xfs_mount *mp = priv;
159 struct xfs_bmap_free_item *ra;
160 struct xfs_bmap_free_item *rb;
161
162 ra = container_of(a, struct xfs_bmap_free_item, xbfi_list);
163 rb = container_of(b, struct xfs_bmap_free_item, xbfi_list);
164 return XFS_FSB_TO_AGNO(mp, ra->xbfi_startblock) -
165 XFS_FSB_TO_AGNO(mp, rb->xbfi_startblock);
166}
167
168/* Get an EFI. */
169STATIC void *
170xfs_extent_free_create_intent(
171 struct xfs_trans *tp,
172 unsigned int count)
173{
174 return xfs_trans_get_efi(tp, count);
175}
176
177/* Log a free extent to the intent item. */
178STATIC void
179xfs_extent_free_log_item(
180 struct xfs_trans *tp,
181 void *intent,
182 struct list_head *item)
183{
184 struct xfs_bmap_free_item *free;
185
186 free = container_of(item, struct xfs_bmap_free_item, xbfi_list);
187 xfs_trans_log_efi_extent(tp, intent, free->xbfi_startblock,
188 free->xbfi_blockcount);
189}
190
191/* Get an EFD so we can process all the free extents. */
192STATIC void *
193xfs_extent_free_create_done(
194 struct xfs_trans *tp,
195 void *intent,
196 unsigned int count)
197{
198 return xfs_trans_get_efd(tp, intent, count);
199}
200
201/* Process a free extent. */
202STATIC int
203xfs_extent_free_finish_item(
204 struct xfs_trans *tp,
205 struct xfs_defer_ops *dop,
206 struct list_head *item,
207 void *done_item,
208 void **state)
209{
210 struct xfs_bmap_free_item *free;
211 int error;
212
213 free = container_of(item, struct xfs_bmap_free_item, xbfi_list);
214 error = xfs_trans_free_extent(tp, done_item,
215 free->xbfi_startblock,
216 free->xbfi_blockcount);
217 kmem_free(free);
218 return error;
219}
220
221/* Abort all pending EFIs. */
222STATIC void
223xfs_extent_free_abort_intent(
224 void *intent)
225{
226 xfs_efi_release(intent);
227}
228
229/* Cancel a free extent. */
230STATIC void
231xfs_extent_free_cancel_item(
232 struct list_head *item)
233{
234 struct xfs_bmap_free_item *free;
235
236 free = container_of(item, struct xfs_bmap_free_item, xbfi_list);
237 kmem_free(free);
238}
239
240static const struct xfs_defer_op_type xfs_extent_free_defer_type = {
241 .type = XFS_DEFER_OPS_TYPE_FREE,
242 .max_items = XFS_EFI_MAX_FAST_EXTENTS,
243 .diff_items = xfs_extent_free_diff_items,
244 .create_intent = xfs_extent_free_create_intent,
245 .abort_intent = xfs_extent_free_abort_intent,
246 .log_item = xfs_extent_free_log_item,
247 .create_done = xfs_extent_free_create_done,
248 .finish_item = xfs_extent_free_finish_item,
249 .cancel_item = xfs_extent_free_cancel_item,
250};
251
252/* Register the deferred op type. */
253void
254xfs_extent_free_init_defer_op(void)
255{
256 xfs_defer_init_op_type(&xfs_extent_free_defer_type);
257}
This page took 0.774421 seconds and 5 git commands to generate.