libxfs: Optimize the loop for xfs_bitmap_empty
[deliverable/linux.git] / fs / xfs / libxfs / xfs_attr_remote.c
CommitLineData
95920cd6
DC
1/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
d2e448d5 3 * Copyright (c) 2013 Red Hat, Inc.
95920cd6
DC
4 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
632b89e8 21#include "xfs_shared.h"
a4fbe6ab 22#include "xfs_format.h"
239880ef
DC
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
95920cd6 25#include "xfs_bit.h"
95920cd6 26#include "xfs_mount.h"
57062787 27#include "xfs_da_format.h"
95920cd6 28#include "xfs_da_btree.h"
95920cd6
DC
29#include "xfs_inode.h"
30#include "xfs_alloc.h"
239880ef 31#include "xfs_trans.h"
95920cd6
DC
32#include "xfs_inode_item.h"
33#include "xfs_bmap.h"
68988114 34#include "xfs_bmap_util.h"
95920cd6
DC
35#include "xfs_attr.h"
36#include "xfs_attr_leaf.h"
37#include "xfs_attr_remote.h"
38#include "xfs_trans_space.h"
39#include "xfs_trace.h"
d2e448d5
DC
40#include "xfs_cksum.h"
41#include "xfs_buf_item.h"
a4fbe6ab 42#include "xfs_error.h"
95920cd6
DC
43
44#define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
45
d2e448d5
DC
46/*
47 * Each contiguous block has a header, so it is not just a simple attribute
48 * length to FSB conversion.
49 */
7bc0dc27 50int
d2e448d5
DC
51xfs_attr3_rmt_blocks(
52 struct xfs_mount *mp,
53 int attrlen)
54{
551b382f
DC
55 if (xfs_sb_version_hascrc(&mp->m_sb)) {
56 int buflen = XFS_ATTR3_RMT_BUF_SPACE(mp, mp->m_sb.sb_blocksize);
57 return (attrlen + buflen - 1) / buflen;
58 }
59 return XFS_B_TO_FSB(mp, attrlen);
d2e448d5
DC
60}
61
7bc0dc27
DC
62/*
63 * Checking of the remote attribute header is split into two parts. The verifier
64 * does CRC, location and bounds checking, the unpacking function checks the
65 * attribute parameters and owner.
66 */
67static bool
68xfs_attr3_rmt_hdr_ok(
7bc0dc27
DC
69 void *ptr,
70 xfs_ino_t ino,
71 uint32_t offset,
72 uint32_t size,
73 xfs_daddr_t bno)
74{
75 struct xfs_attr3_rmt_hdr *rmt = ptr;
76
77 if (bno != be64_to_cpu(rmt->rm_blkno))
78 return false;
79 if (offset != be32_to_cpu(rmt->rm_offset))
80 return false;
81 if (size != be32_to_cpu(rmt->rm_bytes))
82 return false;
83 if (ino != be64_to_cpu(rmt->rm_owner))
84 return false;
85
86 /* ok */
87 return true;
88}
89
d2e448d5
DC
90static bool
91xfs_attr3_rmt_verify(
7bc0dc27
DC
92 struct xfs_mount *mp,
93 void *ptr,
94 int fsbsize,
95 xfs_daddr_t bno)
d2e448d5 96{
7bc0dc27 97 struct xfs_attr3_rmt_hdr *rmt = ptr;
d2e448d5
DC
98
99 if (!xfs_sb_version_hascrc(&mp->m_sb))
100 return false;
101 if (rmt->rm_magic != cpu_to_be32(XFS_ATTR3_RMT_MAGIC))
102 return false;
ce748eaa 103 if (!uuid_equal(&rmt->rm_uuid, &mp->m_sb.sb_meta_uuid))
d2e448d5 104 return false;
7bc0dc27
DC
105 if (be64_to_cpu(rmt->rm_blkno) != bno)
106 return false;
107 if (be32_to_cpu(rmt->rm_bytes) > fsbsize - sizeof(*rmt))
d2e448d5
DC
108 return false;
109 if (be32_to_cpu(rmt->rm_offset) +
51fcbfe7 110 be32_to_cpu(rmt->rm_bytes) > XFS_XATTR_SIZE_MAX)
d2e448d5
DC
111 return false;
112 if (rmt->rm_owner == 0)
113 return false;
114
115 return true;
116}
117
118static void
119xfs_attr3_rmt_read_verify(
120 struct xfs_buf *bp)
121{
122 struct xfs_mount *mp = bp->b_target->bt_mount;
7bc0dc27
DC
123 char *ptr;
124 int len;
7bc0dc27 125 xfs_daddr_t bno;
c2c4c477 126 int blksize = mp->m_attr_geo->blksize;
d2e448d5
DC
127
128 /* no verification of non-crc buffers */
129 if (!xfs_sb_version_hascrc(&mp->m_sb))
130 return;
131
7bc0dc27
DC
132 ptr = bp->b_addr;
133 bno = bp->b_bn;
134 len = BBTOB(bp->b_length);
c2c4c477 135 ASSERT(len >= blksize);
7bc0dc27
DC
136
137 while (len > 0) {
c2c4c477 138 if (!xfs_verify_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF)) {
2451337d 139 xfs_buf_ioerror(bp, -EFSBADCRC);
7bc0dc27
DC
140 break;
141 }
c2c4c477 142 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
2451337d 143 xfs_buf_ioerror(bp, -EFSCORRUPTED);
7bc0dc27
DC
144 break;
145 }
c2c4c477
DC
146 len -= blksize;
147 ptr += blksize;
148 bno += BTOBB(blksize);
7bc0dc27
DC
149 }
150
ce5028cf
ES
151 if (bp->b_error)
152 xfs_verifier_error(bp);
153 else
7bc0dc27 154 ASSERT(len == 0);
d2e448d5
DC
155}
156
157static void
158xfs_attr3_rmt_write_verify(
159 struct xfs_buf *bp)
160{
161 struct xfs_mount *mp = bp->b_target->bt_mount;
e3c32ee9 162 int blksize = mp->m_attr_geo->blksize;
7bc0dc27
DC
163 char *ptr;
164 int len;
165 xfs_daddr_t bno;
d2e448d5
DC
166
167 /* no verification of non-crc buffers */
168 if (!xfs_sb_version_hascrc(&mp->m_sb))
169 return;
170
7bc0dc27
DC
171 ptr = bp->b_addr;
172 bno = bp->b_bn;
173 len = BBTOB(bp->b_length);
c2c4c477 174 ASSERT(len >= blksize);
7bc0dc27
DC
175
176 while (len > 0) {
e3c32ee9
DC
177 struct xfs_attr3_rmt_hdr *rmt = (struct xfs_attr3_rmt_hdr *)ptr;
178
c2c4c477 179 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
2451337d 180 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 181 xfs_verifier_error(bp);
7bc0dc27
DC
182 return;
183 }
d2e448d5 184
e3c32ee9
DC
185 /*
186 * Ensure we aren't writing bogus LSNs to disk. See
187 * xfs_attr3_rmt_hdr_set() for the explanation.
188 */
189 if (rmt->rm_lsn != cpu_to_be64(NULLCOMMITLSN)) {
190 xfs_buf_ioerror(bp, -EFSCORRUPTED);
191 xfs_verifier_error(bp);
192 return;
7bc0dc27 193 }
c2c4c477 194 xfs_update_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF);
7bc0dc27 195
c2c4c477
DC
196 len -= blksize;
197 ptr += blksize;
198 bno += BTOBB(blksize);
d2e448d5 199 }
7bc0dc27 200 ASSERT(len == 0);
d2e448d5
DC
201}
202
203const struct xfs_buf_ops xfs_attr3_rmt_buf_ops = {
204 .verify_read = xfs_attr3_rmt_read_verify,
205 .verify_write = xfs_attr3_rmt_write_verify,
206};
207
7bc0dc27 208STATIC int
d2e448d5
DC
209xfs_attr3_rmt_hdr_set(
210 struct xfs_mount *mp,
7bc0dc27 211 void *ptr,
d2e448d5
DC
212 xfs_ino_t ino,
213 uint32_t offset,
214 uint32_t size,
7bc0dc27 215 xfs_daddr_t bno)
d2e448d5 216{
7bc0dc27 217 struct xfs_attr3_rmt_hdr *rmt = ptr;
d2e448d5
DC
218
219 if (!xfs_sb_version_hascrc(&mp->m_sb))
220 return 0;
221
222 rmt->rm_magic = cpu_to_be32(XFS_ATTR3_RMT_MAGIC);
223 rmt->rm_offset = cpu_to_be32(offset);
224 rmt->rm_bytes = cpu_to_be32(size);
ce748eaa 225 uuid_copy(&rmt->rm_uuid, &mp->m_sb.sb_meta_uuid);
d2e448d5 226 rmt->rm_owner = cpu_to_be64(ino);
7bc0dc27 227 rmt->rm_blkno = cpu_to_be64(bno);
d2e448d5 228
e3c32ee9
DC
229 /*
230 * Remote attribute blocks are written synchronously, so we don't
231 * have an LSN that we can stamp in them that makes any sense to log
232 * recovery. To ensure that log recovery handles overwrites of these
233 * blocks sanely (i.e. once they've been freed and reallocated as some
234 * other type of metadata) we need to ensure that the LSN has a value
235 * that tells log recovery to ignore the LSN and overwrite the buffer
236 * with whatever is in it's log. To do this, we use the magic
237 * NULLCOMMITLSN to indicate that the LSN is invalid.
238 */
239 rmt->rm_lsn = cpu_to_be64(NULLCOMMITLSN);
240
d2e448d5
DC
241 return sizeof(struct xfs_attr3_rmt_hdr);
242}
243
244/*
7bc0dc27 245 * Helper functions to copy attribute data in and out of the one disk extents
d2e448d5 246 */
7bc0dc27
DC
247STATIC int
248xfs_attr_rmtval_copyout(
249 struct xfs_mount *mp,
250 struct xfs_buf *bp,
251 xfs_ino_t ino,
252 int *offset,
253 int *valuelen,
836a94ad 254 __uint8_t **dst)
d2e448d5 255{
7bc0dc27
DC
256 char *src = bp->b_addr;
257 xfs_daddr_t bno = bp->b_bn;
258 int len = BBTOB(bp->b_length);
c2c4c477 259 int blksize = mp->m_attr_geo->blksize;
d2e448d5 260
c2c4c477 261 ASSERT(len >= blksize);
d2e448d5 262
7bc0dc27
DC
263 while (len > 0 && *valuelen > 0) {
264 int hdr_size = 0;
c2c4c477 265 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
7bc0dc27 266
c5c249b4 267 byte_cnt = min(*valuelen, byte_cnt);
7bc0dc27
DC
268
269 if (xfs_sb_version_hascrc(&mp->m_sb)) {
6d0081a3 270 if (!xfs_attr3_rmt_hdr_ok(src, ino, *offset,
7bc0dc27
DC
271 byte_cnt, bno)) {
272 xfs_alert(mp,
273"remote attribute header mismatch bno/off/len/owner (0x%llx/0x%x/Ox%x/0x%llx)",
274 bno, *offset, byte_cnt, ino);
2451337d 275 return -EFSCORRUPTED;
7bc0dc27
DC
276 }
277 hdr_size = sizeof(struct xfs_attr3_rmt_hdr);
278 }
279
280 memcpy(*dst, src + hdr_size, byte_cnt);
281
282 /* roll buffer forwards */
c2c4c477
DC
283 len -= blksize;
284 src += blksize;
285 bno += BTOBB(blksize);
7bc0dc27
DC
286
287 /* roll attribute data forwards */
288 *valuelen -= byte_cnt;
289 *dst += byte_cnt;
290 *offset += byte_cnt;
291 }
292 return 0;
293}
294
295STATIC void
296xfs_attr_rmtval_copyin(
297 struct xfs_mount *mp,
298 struct xfs_buf *bp,
299 xfs_ino_t ino,
300 int *offset,
301 int *valuelen,
836a94ad 302 __uint8_t **src)
7bc0dc27
DC
303{
304 char *dst = bp->b_addr;
305 xfs_daddr_t bno = bp->b_bn;
306 int len = BBTOB(bp->b_length);
c2c4c477 307 int blksize = mp->m_attr_geo->blksize;
7bc0dc27 308
c2c4c477 309 ASSERT(len >= blksize);
7bc0dc27
DC
310
311 while (len > 0 && *valuelen > 0) {
312 int hdr_size;
c2c4c477 313 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
7bc0dc27
DC
314
315 byte_cnt = min(*valuelen, byte_cnt);
316 hdr_size = xfs_attr3_rmt_hdr_set(mp, dst, ino, *offset,
317 byte_cnt, bno);
318
319 memcpy(dst + hdr_size, *src, byte_cnt);
320
321 /*
322 * If this is the last block, zero the remainder of it.
323 * Check that we are actually the last block, too.
324 */
c2c4c477 325 if (byte_cnt + hdr_size < blksize) {
7bc0dc27 326 ASSERT(*valuelen - byte_cnt == 0);
c2c4c477 327 ASSERT(len == blksize);
7bc0dc27 328 memset(dst + hdr_size + byte_cnt, 0,
c2c4c477 329 blksize - hdr_size - byte_cnt);
7bc0dc27
DC
330 }
331
332 /* roll buffer forwards */
c2c4c477
DC
333 len -= blksize;
334 dst += blksize;
335 bno += BTOBB(blksize);
7bc0dc27
DC
336
337 /* roll attribute data forwards */
338 *valuelen -= byte_cnt;
339 *src += byte_cnt;
340 *offset += byte_cnt;
341 }
d2e448d5
DC
342}
343
95920cd6
DC
344/*
345 * Read the value associated with an attribute from the out-of-line buffer
346 * that we stored it in.
347 */
348int
d2e448d5
DC
349xfs_attr_rmtval_get(
350 struct xfs_da_args *args)
95920cd6 351{
d2e448d5
DC
352 struct xfs_bmbt_irec map[ATTR_RMTVALUE_MAPSIZE];
353 struct xfs_mount *mp = args->dp->i_mount;
354 struct xfs_buf *bp;
d2e448d5 355 xfs_dablk_t lblkno = args->rmtblkno;
836a94ad 356 __uint8_t *dst = args->value;
8275cdd0 357 int valuelen;
d2e448d5
DC
358 int nmap;
359 int error;
7bc0dc27 360 int blkcnt = args->rmtblkcnt;
d2e448d5
DC
361 int i;
362 int offset = 0;
95920cd6
DC
363
364 trace_xfs_attr_rmtval_get(args);
365
366 ASSERT(!(args->flags & ATTR_KERNOVAL));
8275cdd0 367 ASSERT(args->rmtvaluelen == args->valuelen);
95920cd6 368
8275cdd0 369 valuelen = args->rmtvaluelen;
95920cd6
DC
370 while (valuelen > 0) {
371 nmap = ATTR_RMTVALUE_MAPSIZE;
372 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
551b382f 373 blkcnt, map, &nmap,
95920cd6
DC
374 XFS_BMAPI_ATTRFORK);
375 if (error)
d2e448d5 376 return error;
95920cd6
DC
377 ASSERT(nmap >= 1);
378
379 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
7bc0dc27
DC
380 xfs_daddr_t dblkno;
381 int dblkcnt;
d2e448d5 382
95920cd6
DC
383 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
384 (map[i].br_startblock != HOLESTARTBLOCK));
385 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
7bc0dc27 386 dblkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
95920cd6 387 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
7bc0dc27 388 dblkno, dblkcnt, 0, &bp,
d2e448d5 389 &xfs_attr3_rmt_buf_ops);
95920cd6 390 if (error)
d2e448d5
DC
391 return error;
392
7bc0dc27
DC
393 error = xfs_attr_rmtval_copyout(mp, bp, args->dp->i_ino,
394 &offset, &valuelen,
395 &dst);
95920cd6 396 xfs_buf_relse(bp);
7bc0dc27
DC
397 if (error)
398 return error;
d2e448d5 399
7bc0dc27 400 /* roll attribute extent map forwards */
95920cd6 401 lblkno += map[i].br_blockcount;
7bc0dc27 402 blkcnt -= map[i].br_blockcount;
95920cd6
DC
403 }
404 }
405 ASSERT(valuelen == 0);
d2e448d5 406 return 0;
95920cd6
DC
407}
408
409/*
410 * Write the value associated with an attribute into the out-of-line buffer
411 * that we have defined for it.
412 */
413int
d2e448d5
DC
414xfs_attr_rmtval_set(
415 struct xfs_da_args *args)
95920cd6 416{
d2e448d5
DC
417 struct xfs_inode *dp = args->dp;
418 struct xfs_mount *mp = dp->i_mount;
419 struct xfs_bmbt_irec map;
d2e448d5
DC
420 xfs_dablk_t lblkno;
421 xfs_fileoff_t lfileoff = 0;
836a94ad 422 __uint8_t *src = args->value;
d2e448d5
DC
423 int blkcnt;
424 int valuelen;
425 int nmap;
426 int error;
d2e448d5 427 int offset = 0;
95920cd6
DC
428
429 trace_xfs_attr_rmtval_set(args);
430
95920cd6
DC
431 /*
432 * Find a "hole" in the attribute address space large enough for
d2e448d5
DC
433 * us to drop the new attribute's value into. Because CRC enable
434 * attributes have headers, we can't just do a straight byte to FSB
7bc0dc27 435 * conversion and have to take the header space into account.
95920cd6 436 */
8275cdd0 437 blkcnt = xfs_attr3_rmt_blocks(mp, args->rmtvaluelen);
95920cd6
DC
438 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
439 XFS_ATTR_FORK);
d2e448d5
DC
440 if (error)
441 return error;
442
95920cd6
DC
443 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
444 args->rmtblkcnt = blkcnt;
445
446 /*
447 * Roll through the "value", allocating blocks on disk as required.
448 */
449 while (blkcnt > 0) {
d2e448d5
DC
450 int committed;
451
95920cd6
DC
452 /*
453 * Allocate a single extent, up to the size of the value.
df150ed1
DC
454 *
455 * Note that we have to consider this a data allocation as we
456 * write the remote attribute without logging the contents.
457 * Hence we must ensure that we aren't using blocks that are on
458 * the busy list so that we don't overwrite blocks which have
459 * recently been freed but their transactions are not yet
460 * committed to disk. If we overwrite the contents of a busy
461 * extent and then crash then the block may not contain the
462 * correct metadata after log recovery occurs.
95920cd6
DC
463 */
464 xfs_bmap_init(args->flist, args->firstblock);
465 nmap = 1;
466 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
df150ed1
DC
467 blkcnt, XFS_BMAPI_ATTRFORK, args->firstblock,
468 args->total, &map, &nmap, args->flist);
95920cd6
DC
469 if (!error) {
470 error = xfs_bmap_finish(&args->trans, args->flist,
471 &committed);
472 }
473 if (error) {
474 ASSERT(committed);
475 args->trans = NULL;
476 xfs_bmap_cancel(args->flist);
d99831ff 477 return error;
95920cd6
DC
478 }
479
480 /*
481 * bmap_finish() may have committed the last trans and started
482 * a new one. We need the inode to be in all transactions.
483 */
484 if (committed)
485 xfs_trans_ijoin(args->trans, dp, 0);
486
487 ASSERT(nmap == 1);
488 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
489 (map.br_startblock != HOLESTARTBLOCK));
490 lblkno += map.br_blockcount;
491 blkcnt -= map.br_blockcount;
492
493 /*
494 * Start the next trans in the chain.
495 */
496 error = xfs_trans_roll(&args->trans, dp);
497 if (error)
d99831ff 498 return error;
95920cd6
DC
499 }
500
501 /*
502 * Roll through the "value", copying the attribute value to the
503 * already-allocated blocks. Blocks are written synchronously
504 * so that we can know they are all on disk before we turn off
505 * the INCOMPLETE flag.
506 */
507 lblkno = args->rmtblkno;
26f71445 508 blkcnt = args->rmtblkcnt;
8275cdd0 509 valuelen = args->rmtvaluelen;
95920cd6 510 while (valuelen > 0) {
7bc0dc27
DC
511 struct xfs_buf *bp;
512 xfs_daddr_t dblkno;
513 int dblkcnt;
514
515 ASSERT(blkcnt > 0);
95920cd6 516
95920cd6
DC
517 xfs_bmap_init(args->flist, args->firstblock);
518 nmap = 1;
519 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
26f71445 520 blkcnt, &map, &nmap,
95920cd6
DC
521 XFS_BMAPI_ATTRFORK);
522 if (error)
d99831ff 523 return error;
95920cd6
DC
524 ASSERT(nmap == 1);
525 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
526 (map.br_startblock != HOLESTARTBLOCK));
527
528 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
26f71445 529 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
95920cd6 530
26f71445 531 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, dblkcnt, 0);
95920cd6 532 if (!bp)
2451337d 533 return -ENOMEM;
d2e448d5 534 bp->b_ops = &xfs_attr3_rmt_buf_ops;
26f71445 535
7bc0dc27
DC
536 xfs_attr_rmtval_copyin(mp, bp, args->dp->i_ino, &offset,
537 &valuelen, &src);
95920cd6
DC
538
539 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
540 xfs_buf_relse(bp);
541 if (error)
542 return error;
d2e448d5 543
95920cd6 544
7bc0dc27 545 /* roll attribute extent map forwards */
95920cd6 546 lblkno += map.br_blockcount;
26f71445 547 blkcnt -= map.br_blockcount;
95920cd6
DC
548 }
549 ASSERT(valuelen == 0);
d2e448d5 550 return 0;
95920cd6
DC
551}
552
553/*
554 * Remove the value associated with an attribute by deleting the
555 * out-of-line buffer that it is stored on.
556 */
557int
7bc0dc27
DC
558xfs_attr_rmtval_remove(
559 struct xfs_da_args *args)
95920cd6 560{
7bc0dc27
DC
561 struct xfs_mount *mp = args->dp->i_mount;
562 xfs_dablk_t lblkno;
563 int blkcnt;
564 int error;
565 int done;
95920cd6
DC
566
567 trace_xfs_attr_rmtval_remove(args);
568
95920cd6 569 /*
58a72281 570 * Roll through the "value", invalidating the attribute value's blocks.
95920cd6
DC
571 */
572 lblkno = args->rmtblkno;
7bc0dc27
DC
573 blkcnt = args->rmtblkcnt;
574 while (blkcnt > 0) {
575 struct xfs_bmbt_irec map;
576 struct xfs_buf *bp;
577 xfs_daddr_t dblkno;
578 int dblkcnt;
579 int nmap;
58a72281 580
95920cd6
DC
581 /*
582 * Try to remember where we decided to put the value.
583 */
584 nmap = 1;
585 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
58a72281 586 blkcnt, &map, &nmap, XFS_BMAPI_ATTRFORK);
95920cd6 587 if (error)
d99831ff 588 return error;
95920cd6
DC
589 ASSERT(nmap == 1);
590 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
591 (map.br_startblock != HOLESTARTBLOCK));
592
593 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
58a72281 594 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
95920cd6
DC
595
596 /*
597 * If the "remote" value is in the cache, remove it.
598 */
58a72281 599 bp = xfs_incore(mp->m_ddev_targp, dblkno, dblkcnt, XBF_TRYLOCK);
95920cd6
DC
600 if (bp) {
601 xfs_buf_stale(bp);
602 xfs_buf_relse(bp);
603 bp = NULL;
604 }
605
95920cd6 606 lblkno += map.br_blockcount;
58a72281 607 blkcnt -= map.br_blockcount;
95920cd6
DC
608 }
609
610 /*
611 * Keep de-allocating extents until the remote-value region is gone.
612 */
613 lblkno = args->rmtblkno;
7bc0dc27 614 blkcnt = args->rmtblkcnt;
95920cd6
DC
615 done = 0;
616 while (!done) {
7bc0dc27
DC
617 int committed;
618
95920cd6
DC
619 xfs_bmap_init(args->flist, args->firstblock);
620 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
ab7bb610
DC
621 XFS_BMAPI_ATTRFORK, 1, args->firstblock,
622 args->flist, &done);
95920cd6
DC
623 if (!error) {
624 error = xfs_bmap_finish(&args->trans, args->flist,
625 &committed);
626 }
627 if (error) {
628 ASSERT(committed);
629 args->trans = NULL;
630 xfs_bmap_cancel(args->flist);
d2e448d5 631 return error;
95920cd6
DC
632 }
633
634 /*
635 * bmap_finish() may have committed the last trans and started
636 * a new one. We need the inode to be in all transactions.
637 */
638 if (committed)
639 xfs_trans_ijoin(args->trans, args->dp, 0);
640
641 /*
642 * Close out trans and start the next one in the chain.
643 */
644 error = xfs_trans_roll(&args->trans, args->dp);
645 if (error)
d99831ff 646 return error;
95920cd6 647 }
d99831ff 648 return 0;
95920cd6 649}
This page took 0.205355 seconds and 5 git commands to generate.