xfs_dir2_node.c 57.5 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1
/*
2 3
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
Linus Torvalds's avatar
Linus Torvalds committed
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
Linus Torvalds's avatar
Linus Torvalds committed
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
Linus Torvalds's avatar
Linus Torvalds committed
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Linus Torvalds's avatar
Linus Torvalds committed
17 18
 */
#include "xfs.h"
19
#include "xfs_fs.h"
Linus Torvalds's avatar
Linus Torvalds committed
20 21 22 23
#include "xfs_types.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
24
#include "xfs_ag.h"
Linus Torvalds's avatar
Linus Torvalds committed
25
#include "xfs_mount.h"
26
#include "xfs_da_btree.h"
Linus Torvalds's avatar
Linus Torvalds committed
27 28 29 30
#include "xfs_bmap_btree.h"
#include "xfs_dinode.h"
#include "xfs_inode.h"
#include "xfs_bmap.h"
31 32
#include "xfs_dir2_format.h"
#include "xfs_dir2_priv.h"
Linus Torvalds's avatar
Linus Torvalds committed
33
#include "xfs_error.h"
34
#include "xfs_trace.h"
Linus Torvalds's avatar
Linus Torvalds committed
35 36 37 38

/*
 * Function declarations.
 */
39 40
static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
			      int index);
Linus Torvalds's avatar
Linus Torvalds committed
41
#ifdef DEBUG
42
static void xfs_dir2_leafn_check(struct xfs_inode *dp, struct xfs_buf *bp);
Linus Torvalds's avatar
Linus Torvalds committed
43 44 45
#else
#define	xfs_dir2_leafn_check(dp, bp)
#endif
46 47 48
static void xfs_dir2_leafn_moveents(xfs_da_args_t *args, struct xfs_buf *bp_s,
				    int start_s, struct xfs_buf *bp_d,
				    int start_d, int count);
Linus Torvalds's avatar
Linus Torvalds committed
49 50 51
static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
				     xfs_da_state_blk_t *blk1,
				     xfs_da_state_blk_t *blk2);
52
static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds's avatar
Linus Torvalds committed
53 54 55 56 57
				 int index, xfs_da_state_blk_t *dblk,
				 int *rval);
static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
				     xfs_da_state_blk_t *fblk);

58 59 60 61 62 63 64 65 66 67 68 69 70 71
static void
xfs_dir2_free_verify(
	struct xfs_buf		*bp)
{
	struct xfs_mount	*mp = bp->b_target->bt_mount;
	struct xfs_dir2_free_hdr *hdr = bp->b_addr;
	int			block_ok = 0;

	block_ok = hdr->magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC);
	if (!block_ok) {
		XFS_CORRUPTION_ERROR("xfs_dir2_free_verify magic",
				     XFS_ERRLEVEL_LOW, mp, hdr);
		xfs_buf_ioerror(bp, EFSCORRUPTED);
	}
72
}
73

74 75 76 77 78 79 80 81 82 83 84 85 86
static void
xfs_dir2_free_write_verify(
	struct xfs_buf	*bp)
{
	xfs_dir2_free_verify(bp);
}

void
xfs_dir2_free_read_verify(
	struct xfs_buf	*bp)
{
	xfs_dir2_free_verify(bp);
	bp->b_pre_io = xfs_dir2_free_write_verify;
87 88 89 90
	bp->b_iodone = NULL;
	xfs_buf_ioend(bp, 0);
}

91

92 93 94 95 96 97 98 99 100
static int
__xfs_dir2_free_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	xfs_daddr_t		mappedbno,
	struct xfs_buf		**bpp)
{
	return xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
101
				XFS_DATA_FORK, xfs_dir2_free_read_verify);
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
}

int
xfs_dir2_free_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
	return __xfs_dir2_free_read(tp, dp, fbno, -1, bpp);
}

static int
xfs_dir2_free_try_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
	return __xfs_dir2_free_read(tp, dp, fbno, -2, bpp);
}

Linus Torvalds's avatar
Linus Torvalds committed
124 125 126
/*
 * Log entries from a freespace block.
 */
127
STATIC void
Linus Torvalds's avatar
Linus Torvalds committed
128
xfs_dir2_free_log_bests(
129 130
	struct xfs_trans	*tp,
	struct xfs_buf		*bp,
Linus Torvalds's avatar
Linus Torvalds committed
131 132 133 134 135
	int			first,		/* first entry to log */
	int			last)		/* last entry to log */
{
	xfs_dir2_free_t		*free;		/* freespace structure */

136
	free = bp->b_addr;
137
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
138
	xfs_trans_log_buf(tp, bp,
Linus Torvalds's avatar
Linus Torvalds committed
139 140 141 142 143 144 145 146 147 148
		(uint)((char *)&free->bests[first] - (char *)free),
		(uint)((char *)&free->bests[last] - (char *)free +
		       sizeof(free->bests[0]) - 1));
}

/*
 * Log header from a freespace block.
 */
static void
xfs_dir2_free_log_header(
149 150
	struct xfs_trans	*tp,
	struct xfs_buf		*bp)
Linus Torvalds's avatar
Linus Torvalds committed
151 152 153
{
	xfs_dir2_free_t		*free;		/* freespace structure */

154
	free = bp->b_addr;
155
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
156
	xfs_trans_log_buf(tp, bp, (uint)((char *)&free->hdr - (char *)free),
Linus Torvalds's avatar
Linus Torvalds committed
157 158 159 160 161 162 163 164 165 166 167
		(uint)(sizeof(xfs_dir2_free_hdr_t) - 1));
}

/*
 * Convert a leaf-format directory to a node-format directory.
 * We need to change the magic number of the leaf block, and copy
 * the freespace table out of the leaf block into its own block.
 */
int						/* error */
xfs_dir2_leaf_to_node(
	xfs_da_args_t		*args,		/* operation arguments */
168
	struct xfs_buf		*lbp)		/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
169 170 171
{
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
172
	struct xfs_buf		*fbp;		/* freespace buffer */
Linus Torvalds's avatar
Linus Torvalds committed
173 174
	xfs_dir2_db_t		fdb;		/* freespace block number */
	xfs_dir2_free_t		*free;		/* freespace structure */
175
	__be16			*from;		/* pointer to freespace entry */
Linus Torvalds's avatar
Linus Torvalds committed
176 177 178 179 180 181
	int			i;		/* leaf freespace index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_tail_t	*ltp;		/* leaf tail structure */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			n;		/* count of live freespc ents */
	xfs_dir2_data_off_t	off;		/* freespace entry value */
182
	__be16			*to;		/* pointer to freespace entry */
Linus Torvalds's avatar
Linus Torvalds committed
183 184
	xfs_trans_t		*tp;		/* transaction pointer */

185 186
	trace_xfs_dir2_leaf_to_node(args);

Linus Torvalds's avatar
Linus Torvalds committed
187 188 189 190 191 192 193 194 195 196 197 198 199
	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
	/*
	 * Add a freespace block to the directory.
	 */
	if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
		return error;
	}
	ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
	/*
	 * Get the buffer for the new freespace block.
	 */
200 201 202
	error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fdb), -1, &fbp,
				XFS_DATA_FORK);
	if (error)
Linus Torvalds's avatar
Linus Torvalds committed
203
		return error;
204 205
	fbp->b_pre_io = xfs_dir2_free_write_verify;

206 207
	free = fbp->b_addr;
	leaf = lbp->b_addr;
208
	ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Linus Torvalds's avatar
Linus Torvalds committed
209 210 211
	/*
	 * Initialize the freespace block header.
	 */
212
	free->hdr.magic = cpu_to_be32(XFS_DIR2_FREE_MAGIC);
Linus Torvalds's avatar
Linus Torvalds committed
213
	free->hdr.firstdb = 0;
214
	ASSERT(be32_to_cpu(ltp->bestcount) <= (uint)dp->i_d.di_size / mp->m_dirblksize);
215
	free->hdr.nvalid = ltp->bestcount;
Linus Torvalds's avatar
Linus Torvalds committed
216 217 218 219
	/*
	 * Copy freespace entries from the leaf block to the new block.
	 * Count active entries.
	 */
220
	for (i = n = 0, from = xfs_dir2_leaf_bests_p(ltp), to = free->bests;
221
	     i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
222
		if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds's avatar
Linus Torvalds committed
223
			n++;
224
		*to = cpu_to_be16(off);
Linus Torvalds's avatar
Linus Torvalds committed
225
	}
226
	free->hdr.nused = cpu_to_be32(n);
227 228

	lbp->b_pre_io = xfs_dir2_leafn_write_verify;
229
	leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
230

Linus Torvalds's avatar
Linus Torvalds committed
231 232 233 234 235
	/*
	 * Log everything.
	 */
	xfs_dir2_leaf_log_header(tp, lbp);
	xfs_dir2_free_log_header(tp, fbp);
236
	xfs_dir2_free_log_bests(tp, fbp, 0, be32_to_cpu(free->hdr.nvalid) - 1);
Linus Torvalds's avatar
Linus Torvalds committed
237 238 239 240 241 242 243 244 245 246
	xfs_dir2_leafn_check(dp, lbp);
	return 0;
}

/*
 * Add a leaf entry to a leaf block in a node-form directory.
 * The other work necessary is done from the caller.
 */
static int					/* error */
xfs_dir2_leafn_add(
247
	struct xfs_buf		*bp,		/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
248 249 250 251 252 253 254 255 256 257 258 259 260 261
	xfs_da_args_t		*args,		/* operation arguments */
	int			index)		/* insertion pt for new entry */
{
	int			compact;	/* compacting stale leaves */
	xfs_inode_t		*dp;		/* incore directory inode */
	int			highstale;	/* next stale entry */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	int			lfloghigh;	/* high leaf entry logging */
	int			lfloglow;	/* low leaf entry logging */
	int			lowstale;	/* previous stale entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_trans_t		*tp;		/* transaction pointer */

262 263
	trace_xfs_dir2_leafn_add(args, index);

Linus Torvalds's avatar
Linus Torvalds committed
264 265 266
	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
267
	leaf = bp->b_addr;
Linus Torvalds's avatar
Linus Torvalds committed
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282

	/*
	 * Quick check just to make sure we are not going to index
	 * into other peoples memory
	 */
	if (index < 0)
		return XFS_ERROR(EFSCORRUPTED);

	/*
	 * If there are already the maximum number of leaf entries in
	 * the block, if there are no stale entries it won't fit.
	 * Caller will do a split.  If there are stale entries we'll do
	 * a compact.
	 */

283
	if (be16_to_cpu(leaf->hdr.count) == xfs_dir2_max_leaf_ents(mp)) {
Linus Torvalds's avatar
Linus Torvalds committed
284 285
		if (!leaf->hdr.stale)
			return XFS_ERROR(ENOSPC);
286
		compact = be16_to_cpu(leaf->hdr.stale) > 1;
Linus Torvalds's avatar
Linus Torvalds committed
287 288
	} else
		compact = 0;
289
	ASSERT(index == 0 || be32_to_cpu(leaf->ents[index - 1].hashval) <= args->hashval);
290
	ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
291
	       be32_to_cpu(leaf->ents[index].hashval) >= args->hashval);
Linus Torvalds's avatar
Linus Torvalds committed
292

293
	if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds's avatar
Linus Torvalds committed
294 295 296 297 298 299 300 301 302 303 304 305 306 307
		return 0;

	/*
	 * Compact out all but one stale leaf entry.  Leaves behind
	 * the entry closest to index.
	 */
	if (compact) {
		xfs_dir2_leaf_compact_x1(bp, &index, &lowstale, &highstale,
			&lfloglow, &lfloghigh);
	}
	/*
	 * Set impossible logging indices for this case.
	 */
	else if (leaf->hdr.stale) {
308
		lfloglow = be16_to_cpu(leaf->hdr.count);
Linus Torvalds's avatar
Linus Torvalds committed
309 310
		lfloghigh = -1;
	}
311

Linus Torvalds's avatar
Linus Torvalds committed
312 313 314
	/*
	 * Insert the new entry, log everything.
	 */
315 316 317
	lep = xfs_dir2_leaf_find_entry(leaf, index, compact, lowstale,
				       highstale, &lfloglow, &lfloghigh);

318
	lep->hashval = cpu_to_be32(args->hashval);
319
	lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
320
				args->blkno, args->index));
Linus Torvalds's avatar
Linus Torvalds committed
321 322 323 324 325 326 327 328 329 330 331 332
	xfs_dir2_leaf_log_header(tp, bp);
	xfs_dir2_leaf_log_ents(tp, bp, lfloglow, lfloghigh);
	xfs_dir2_leafn_check(dp, bp);
	return 0;
}

#ifdef DEBUG
/*
 * Check internal consistency of a leafn block.
 */
void
xfs_dir2_leafn_check(
333 334
	struct xfs_inode *dp,
	struct xfs_buf	*bp)
Linus Torvalds's avatar
Linus Torvalds committed
335 336 337 338 339 340
{
	int		i;			/* leaf index */
	xfs_dir2_leaf_t	*leaf;			/* leaf structure */
	xfs_mount_t	*mp;			/* filesystem mount point */
	int		stale;			/* count of stale leaves */

341
	leaf = bp->b_addr;
Linus Torvalds's avatar
Linus Torvalds committed
342
	mp = dp->i_mount;
343
	ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
344
	ASSERT(be16_to_cpu(leaf->hdr.count) <= xfs_dir2_max_leaf_ents(mp));
345 346
	for (i = stale = 0; i < be16_to_cpu(leaf->hdr.count); i++) {
		if (i + 1 < be16_to_cpu(leaf->hdr.count)) {
347 348
			ASSERT(be32_to_cpu(leaf->ents[i].hashval) <=
			       be32_to_cpu(leaf->ents[i + 1].hashval));
Linus Torvalds's avatar
Linus Torvalds committed
349
		}
350
		if (leaf->ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds's avatar
Linus Torvalds committed
351 352
			stale++;
	}
353
	ASSERT(be16_to_cpu(leaf->hdr.stale) == stale);
Linus Torvalds's avatar
Linus Torvalds committed
354 355 356 357 358 359 360 361 362
}
#endif	/* DEBUG */

/*
 * Return the last hash value in the leaf.
 * Stale entries are ok.
 */
xfs_dahash_t					/* hash value */
xfs_dir2_leafn_lasthash(
363
	struct xfs_buf	*bp,			/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
364 365 366 367
	int		*count)			/* count of entries in leaf */
{
	xfs_dir2_leaf_t	*leaf;			/* leaf structure */

368
	leaf = bp->b_addr;
369
	ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
370
	if (count)
371
		*count = be16_to_cpu(leaf->hdr.count);
Linus Torvalds's avatar
Linus Torvalds committed
372 373
	if (!leaf->hdr.count)
		return 0;
374
	return be32_to_cpu(leaf->ents[be16_to_cpu(leaf->hdr.count) - 1].hashval);
Linus Torvalds's avatar
Linus Torvalds committed
375 376 377
}

/*
378 379
 * Look up a leaf entry for space to add a name in a node-format leaf block.
 * The extrablk in state is a freespace block.
Linus Torvalds's avatar
Linus Torvalds committed
380
 */
381 382
STATIC int
xfs_dir2_leafn_lookup_for_addname(
383
	struct xfs_buf		*bp,		/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
384 385 386 387
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
388
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
389 390
	xfs_dir2_db_t		curdb = -1;	/* current data block number */
	xfs_dir2_db_t		curfdb = -1;	/* current free block number */
Linus Torvalds's avatar
Linus Torvalds committed
391 392 393
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
	int			fi;		/* free entry index */
394
	xfs_dir2_free_t		*free = NULL;	/* free block structure */
Linus Torvalds's avatar
Linus Torvalds committed
395 396
	int			index;		/* leaf entry index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
397
	int			length;		/* length of new data entry */
Linus Torvalds's avatar
Linus Torvalds committed
398 399 400 401 402 403 404 405 406
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_dir2_db_t		newdb;		/* new data block number */
	xfs_dir2_db_t		newfdb;		/* new free block number */
	xfs_trans_t		*tp;		/* transaction pointer */

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
407
	leaf = bp->b_addr;
408
	ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
409
#ifdef __KERNEL__
410
	ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
Linus Torvalds's avatar
Linus Torvalds committed
411 412 413 414 415 416 417 418 419
#endif
	xfs_dir2_leafn_check(dp, bp);
	/*
	 * Look up the hash value in the leaf entries.
	 */
	index = xfs_dir2_leaf_search_hash(args, bp);
	/*
	 * Do we have a buffer coming in?
	 */
420 421
	if (state->extravalid) {
		/* If so, it's a free block buffer, get the block number. */
Linus Torvalds's avatar
Linus Torvalds committed
422
		curbp = state->extrablk.bp;
423
		curfdb = state->extrablk.blkno;
424
		free = curbp->b_addr;
425
		ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
426
	}
427
	length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds's avatar
Linus Torvalds committed
428 429 430
	/*
	 * Loop over leaf entries with the right hash value.
	 */
431 432 433
	for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
				be32_to_cpu(lep->hashval) == args->hashval;
				lep++, index++) {
Linus Torvalds's avatar
Linus Torvalds committed
434 435 436
		/*
		 * Skip stale leaf entries.
		 */
437
		if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds's avatar
Linus Torvalds committed
438 439 440 441
			continue;
		/*
		 * Pull the data block number from the entry.
		 */
442
		newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds's avatar
Linus Torvalds committed
443 444 445 446
		/*
		 * For addname, we're looking for a place to put the new entry.
		 * We want to use a data block with an entry of equal
		 * hash value to ours if there is one with room.
447 448 449
		 *
		 * If this block isn't the data block we already have
		 * in hand, take a look at it.
Linus Torvalds's avatar
Linus Torvalds committed
450
		 */
451 452
		if (newdb != curdb) {
			curdb = newdb;
Linus Torvalds's avatar
Linus Torvalds committed
453
			/*
454 455
			 * Convert the data block to the free block
			 * holding its freespace information.
Linus Torvalds's avatar
Linus Torvalds committed
456
			 */
457
			newfdb = xfs_dir2_db_to_fdb(mp, newdb);
Linus Torvalds's avatar
Linus Torvalds committed
458
			/*
459
			 * If it's not the one we have in hand, read it in.
Linus Torvalds's avatar
Linus Torvalds committed
460
			 */
461
			if (newfdb != curfdb) {
Linus Torvalds's avatar
Linus Torvalds committed
462
				/*
463
				 * If we had one before, drop it.
Linus Torvalds's avatar
Linus Torvalds committed
464 465
				 */
				if (curbp)
466
					xfs_trans_brelse(tp, curbp);
467 468

				error = xfs_dir2_free_read(tp, dp,
469
						xfs_dir2_db_to_da(mp, newfdb),
470
						&curbp);
471
				if (error)
Linus Torvalds's avatar
Linus Torvalds committed
472
					return error;
473
				free = curbp->b_addr;
474 475 476
				ASSERT(be32_to_cpu(free->hdr.magic) ==
					XFS_DIR2_FREE_MAGIC);
				ASSERT((be32_to_cpu(free->hdr.firstdb) %
477
					xfs_dir2_free_max_bests(mp)) == 0);
478 479 480
				ASSERT(be32_to_cpu(free->hdr.firstdb) <= curdb);
				ASSERT(curdb < be32_to_cpu(free->hdr.firstdb) +
					be32_to_cpu(free->hdr.nvalid));
Linus Torvalds's avatar
Linus Torvalds committed
481 482
			}
			/*
483
			 * Get the index for our entry.
Linus Torvalds's avatar
Linus Torvalds committed
484
			 */
485
			fi = xfs_dir2_db_to_fdindex(mp, curdb);
Linus Torvalds's avatar
Linus Torvalds committed
486
			/*
487
			 * If it has room, return it.
Linus Torvalds's avatar
Linus Torvalds committed
488
			 */
489 490
			if (unlikely(free->bests[fi] ==
			    cpu_to_be16(NULLDATAOFF))) {
491 492 493
				XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
							XFS_ERRLEVEL_LOW, mp);
				if (curfdb != newfdb)
494
					xfs_trans_brelse(tp, curbp);
495
				return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds's avatar
Linus Torvalds committed
496
			}
497 498 499
			curfdb = newfdb;
			if (be16_to_cpu(free->bests[fi]) >= length)
				goto out;
Linus Torvalds's avatar
Linus Torvalds committed
500 501
		}
	}
502 503 504
	/* Didn't find any space */
	fi = -1;
out:
505
	ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
506 507 508 509 510 511 512 513 514 515
	if (curbp) {
		/* Giving back a free block. */
		state->extravalid = 1;
		state->extrablk.bp = curbp;
		state->extrablk.index = fi;
		state->extrablk.blkno = curfdb;
		state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
	} else {
		state->extravalid = 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
516
	/*
517
	 * Return the index, that will be the insertion point.
Linus Torvalds's avatar
Linus Torvalds committed
518
	 */
519 520 521 522 523 524 525 526 527 528
	*indexp = index;
	return XFS_ERROR(ENOENT);
}

/*
 * Look up a leaf entry in a node-format leaf block.
 * The extrablk in state a data block.
 */
STATIC int
xfs_dir2_leafn_lookup_for_entry(
529
	struct xfs_buf		*bp,		/* leaf buffer */
530 531 532 533
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
534
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
535 536 537 538 539 540 541 542 543 544
	xfs_dir2_db_t		curdb = -1;	/* current data block number */
	xfs_dir2_data_entry_t	*dep;		/* data block entry */
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
	int			index;		/* leaf entry index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_dir2_db_t		newdb;		/* new data block number */
	xfs_trans_t		*tp;		/* transaction pointer */
545
	enum xfs_dacmp		cmp;		/* comparison result */
546 547 548 549

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
550
	leaf = bp->b_addr;
551
	ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
#ifdef __KERNEL__
	ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
#endif
	xfs_dir2_leafn_check(dp, bp);
	/*
	 * Look up the hash value in the leaf entries.
	 */
	index = xfs_dir2_leaf_search_hash(args, bp);
	/*
	 * Do we have a buffer coming in?
	 */
	if (state->extravalid) {
		curbp = state->extrablk.bp;
		curdb = state->extrablk.blkno;
	}
	/*
	 * Loop over leaf entries with the right hash value.
	 */
	for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
				be32_to_cpu(lep->hashval) == args->hashval;
				lep++, index++) {
		/*
		 * Skip stale leaf entries.
		 */
		if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
			continue;
Linus Torvalds's avatar
Linus Torvalds committed
578
		/*
579 580 581 582 583 584 585 586
		 * Pull the data block number from the entry.
		 */
		newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
		/*
		 * Not adding a new entry, so we really want to find
		 * the name given to us.
		 *
		 * If it's a different data block, go get it.
Linus Torvalds's avatar
Linus Torvalds committed
587
		 */
588 589
		if (newdb != curdb) {
			/*
590 591
			 * If we had a block before that we aren't saving
			 * for a CI name, drop it
592
			 */
593 594
			if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
						curdb != state->extrablk.blkno))
595
				xfs_trans_brelse(tp, curbp);
596
			/*
597 598
			 * If needing the block that is saved with a CI match,
			 * use it otherwise read in the new data block.
599
			 */
600 601 602 603 604
			if (args->cmpresult != XFS_CMP_DIFFERENT &&
					newdb == state->extrablk.blkno) {
				ASSERT(state->extravalid);
				curbp = state->extrablk.bp;
			} else {
605
				error = xfs_dir2_data_read(tp, dp,
606
						xfs_dir2_db_to_da(mp, newdb),
607
						-1, &curbp);
608 609 610
				if (error)
					return error;
			}
611 612
			xfs_dir2_data_check(dp, curbp);
			curdb = newdb;
Linus Torvalds's avatar
Linus Torvalds committed
613 614
		}
		/*
615
		 * Point to the data entry.
Linus Torvalds's avatar
Linus Torvalds committed
616
		 */
617
		dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
618 619
			xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
		/*
620 621
		 * Compare the entry and if it's an exact match, return
		 * EEXIST immediately. If it's the first case-insensitive
622
		 * match, store the block & inode number and continue looking.
623
		 */
624 625
		cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
		if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
626 627 628
			/* If there is a CI match block, drop it */
			if (args->cmpresult != XFS_CMP_DIFFERENT &&
						curdb != state->extrablk.blkno)
629
				xfs_trans_brelse(tp, state->extrablk.bp);
630
			args->cmpresult = cmp;
631
			args->inumber = be64_to_cpu(dep->inumber);
632 633 634 635 636
			*indexp = index;
			state->extravalid = 1;
			state->extrablk.bp = curbp;
			state->extrablk.blkno = curdb;
			state->extrablk.index = (int)((char *)dep -
637
							(char *)curbp->b_addr);
638
			state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
639
			curbp->b_pre_io = xfs_dir2_data_write_verify;
640
			if (cmp == XFS_CMP_EXACT)
641
				return XFS_ERROR(EEXIST);
Linus Torvalds's avatar
Linus Torvalds committed
642 643
		}
	}
644 645
	ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
					(args->op_flags & XFS_DA_OP_OKNOENT));
646
	if (curbp) {
647 648 649 650 651 652 653
		if (args->cmpresult == XFS_CMP_DIFFERENT) {
			/* Giving back last used data block. */
			state->extravalid = 1;
			state->extrablk.bp = curbp;
			state->extrablk.index = -1;
			state->extrablk.blkno = curdb;
			state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
654
			curbp->b_pre_io = xfs_dir2_data_write_verify;
655 656 657
		} else {
			/* If the curbp is not the CI match block, drop it */
			if (state->extrablk.bp != curbp)
658
				xfs_trans_brelse(tp, curbp);
659
		}
660 661 662
	} else {
		state->extravalid = 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
663
	*indexp = index;
664
	return XFS_ERROR(ENOENT);
665 666 667 668 669 670 671 672 673
}

/*
 * Look up a leaf entry in a node-format leaf block.
 * If this is an addname then the extrablk in state is a freespace block,
 * otherwise it's a data block.
 */
int
xfs_dir2_leafn_lookup_int(
674
	struct xfs_buf		*bp,		/* leaf buffer */
675 676 677 678
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
679
	if (args->op_flags & XFS_DA_OP_ADDNAME)
680 681 682
		return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
							state);
	return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
Linus Torvalds's avatar
Linus Torvalds committed
683 684 685 686 687 688 689 690 691
}

/*
 * Move count leaf entries from source to destination leaf.
 * Log entries and headers.  Stale entries are preserved.
 */
static void
xfs_dir2_leafn_moveents(
	xfs_da_args_t	*args,			/* operation arguments */
692
	struct xfs_buf	*bp_s,			/* source leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
693
	int		start_s,		/* source leaf index */
694
	struct xfs_buf	*bp_d,			/* destination leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
695 696 697 698 699 700 701 702
	int		start_d,		/* destination leaf index */
	int		count)			/* count of leaves to copy */
{
	xfs_dir2_leaf_t	*leaf_d;		/* destination leaf structure */
	xfs_dir2_leaf_t	*leaf_s;		/* source leaf structure */
	int		stale;			/* count stale leaves copied */
	xfs_trans_t	*tp;			/* transaction pointer */

703 704
	trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);

Linus Torvalds's avatar
Linus Torvalds committed
705 706 707 708 709 710 711
	/*
	 * Silently return if nothing to do.
	 */
	if (count == 0) {
		return;
	}
	tp = args->trans;
712 713
	leaf_s = bp_s->b_addr;
	leaf_d = bp_d->b_addr;
Linus Torvalds's avatar
Linus Torvalds committed
714 715 716 717 718
	/*
	 * If the destination index is not the end of the current
	 * destination leaf entries, open up a hole in the destination
	 * to hold the new entries.
	 */
719
	if (start_d < be16_to_cpu(leaf_d->hdr.count)) {
Linus Torvalds's avatar
Linus Torvalds committed
720
		memmove(&leaf_d->ents[start_d + count], &leaf_d->ents[start_d],
721
			(be16_to_cpu(leaf_d->hdr.count) - start_d) *
Linus Torvalds's avatar
Linus Torvalds committed
722 723
			sizeof(xfs_dir2_leaf_entry_t));
		xfs_dir2_leaf_log_ents(tp, bp_d, start_d + count,
724
			count + be16_to_cpu(leaf_d->hdr.count) - 1);
Linus Torvalds's avatar
Linus Torvalds committed
725 726 727 728 729 730 731 732 733
	}
	/*
	 * If the source has stale leaves, count the ones in the copy range
	 * so we can update the header correctly.
	 */
	if (leaf_s->hdr.stale) {
		int	i;			/* temp leaf index */

		for (i = start_s, stale = 0; i < start_s + count; i++) {
734 735
			if (leaf_s->ents[i].address ==
			    cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds's avatar
Linus Torvalds committed
736 737 738 739 740 741 742 743 744 745 746 747 748 749
				stale++;
		}
	} else
		stale = 0;
	/*
	 * Copy the leaf entries from source to destination.
	 */
	memcpy(&leaf_d->ents[start_d], &leaf_s->ents[start_s],
		count * sizeof(xfs_dir2_leaf_entry_t));
	xfs_dir2_leaf_log_ents(tp, bp_d, start_d, start_d + count - 1);
	/*
	 * If there are source entries after the ones we copied,
	 * delete the ones we copied by sliding the next ones down.
	 */
750
	if (start_s + count < be16_to_cpu(leaf_s->hdr.count)) {
Linus Torvalds's avatar
Linus Torvalds committed
751 752 753 754 755 756 757
		memmove(&leaf_s->ents[start_s], &leaf_s->ents[start_s + count],
			count * sizeof(xfs_dir2_leaf_entry_t));
		xfs_dir2_leaf_log_ents(tp, bp_s, start_s, start_s + count - 1);
	}
	/*
	 * Update the headers and log them.
	 */
758 759 760 761
	be16_add_cpu(&leaf_s->hdr.count, -(count));
	be16_add_cpu(&leaf_s->hdr.stale, -(stale));
	be16_add_cpu(&leaf_d->hdr.count, count);
	be16_add_cpu(&leaf_d->hdr.stale, stale);
Linus Torvalds's avatar
Linus Torvalds committed
762 763 764 765 766 767 768 769 770 771 772 773
	xfs_dir2_leaf_log_header(tp, bp_s);
	xfs_dir2_leaf_log_header(tp, bp_d);
	xfs_dir2_leafn_check(args->dp, bp_s);
	xfs_dir2_leafn_check(args->dp, bp_d);
}

/*
 * Determine the sort order of two leaf blocks.
 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
 */
int						/* sort order */
xfs_dir2_leafn_order(
774 775
	struct xfs_buf	*leaf1_bp,		/* leaf1 buffer */
	struct xfs_buf	*leaf2_bp)		/* leaf2 buffer */
Linus Torvalds's avatar
Linus Torvalds committed
776 777 778 779
{
	xfs_dir2_leaf_t	*leaf1;			/* leaf1 structure */
	xfs_dir2_leaf_t	*leaf2;			/* leaf2 structure */

780 781
	leaf1 = leaf1_bp->b_addr;
	leaf2 = leaf2_bp->b_addr;
782 783
	ASSERT(leaf1->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
	ASSERT(leaf2->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
784 785
	if (be16_to_cpu(leaf1->hdr.count) > 0 &&
	    be16_to_cpu(leaf2->hdr.count) > 0 &&
786 787 788
	    (be32_to_cpu(leaf2->ents[0].hashval) < be32_to_cpu(leaf1->ents[0].hashval) ||
	     be32_to_cpu(leaf2->ents[be16_to_cpu(leaf2->hdr.count) - 1].hashval) <
	     be32_to_cpu(leaf1->ents[be16_to_cpu(leaf1->hdr.count) - 1].hashval)))
Linus Torvalds's avatar
Linus Torvalds committed
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
		return 1;
	return 0;
}

/*
 * Rebalance leaf entries between two leaf blocks.
 * This is actually only called when the second block is new,
 * though the code deals with the general case.
 * A new entry will be inserted in one of the blocks, and that
 * entry is taken into account when balancing.
 */
static void
xfs_dir2_leafn_rebalance(
	xfs_da_state_t		*state,		/* btree cursor */
	xfs_da_state_blk_t	*blk1,		/* first btree block */
	xfs_da_state_blk_t	*blk2)		/* second btree block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	int			count;		/* count (& direction) leaves */
	int			isleft;		/* new goes in left leaf */
	xfs_dir2_leaf_t		*leaf1;		/* first leaf structure */
	xfs_dir2_leaf_t		*leaf2;		/* second leaf structure */
	int			mid;		/* midpoint leaf index */
#ifdef DEBUG
	int			oldstale;	/* old count of stale leaves */
#endif
	int			oldsum;		/* old total leaf count */
	int			swap;		/* swapped leaf blocks */

	args = state->args;
	/*
	 * If the block order is wrong, swap the arguments.
	 */
	if ((swap = xfs_dir2_leafn_order(blk1->bp, blk2->bp))) {
		xfs_da_state_blk_t	*tmp;	/* temp for block swap */

		tmp = blk1;
		blk1 = blk2;
		blk2 = tmp;
	}
829 830
	leaf1 = blk1->bp->b_addr;
	leaf2 = blk2->bp->b_addr;
831
	oldsum = be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count);
Linus Torvalds's avatar
Linus Torvalds committed
832
#ifdef DEBUG
833
	oldstale = be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale);
Linus Torvalds's avatar
Linus Torvalds committed
834 835 836 837 838 839 840 841 842
#endif
	mid = oldsum >> 1;
	/*
	 * If the old leaf count was odd then the new one will be even,
	 * so we need to divide the new count evenly.
	 */
	if (oldsum & 1) {
		xfs_dahash_t	midhash;	/* middle entry hash value */

843
		if (mid >= be16_to_cpu(leaf1->hdr.count))
844
			midhash = be32_to_cpu(leaf2->ents[mid - be16_to_cpu(leaf1->hdr.count)].hashval);
Linus Torvalds's avatar
Linus Torvalds committed
845
		else
846
			midhash = be32_to_cpu(leaf1->ents[mid].hashval);
Linus Torvalds's avatar
Linus Torvalds committed
847 848 849 850 851 852 853 854 855 856 857 858 859
		isleft = args->hashval <= midhash;
	}
	/*
	 * If the old count is even then the new count is odd, so there's
	 * no preferred side for the new entry.
	 * Pick the left one.
	 */
	else
		isleft = 1;
	/*
	 * Calculate moved entry count.  Positive means left-to-right,
	 * negative means right-to-left.  Then move the entries.
	 */
860
	count = be16_to_cpu(leaf1->hdr.count) - mid + (isleft == 0);
Linus Torvalds's avatar
Linus Torvalds committed
861 862
	if (count > 0)
		xfs_dir2_leafn_moveents(args, blk1->bp,
863
			be16_to_cpu(leaf1->hdr.count) - count, blk2->bp, 0, count);
Linus Torvalds's avatar
Linus Torvalds committed
864 865
	else if (count < 0)
		xfs_dir2_leafn_moveents(args, blk2->bp, 0, blk1->bp,
866 867 868
			be16_to_cpu(leaf1->hdr.count), count);
	ASSERT(be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count) == oldsum);
	ASSERT(be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale) == oldstale);
Linus Torvalds's avatar
Linus Torvalds committed
869 870 871
	/*
	 * Mark whether we're inserting into the old or new leaf.
	 */
872
	if (be16_to_cpu(leaf1->hdr.count) < be16_to_cpu(leaf2->hdr.count))
Linus Torvalds's avatar
Linus Torvalds committed
873
		state->inleaf = swap;
874
	else if (be16_to_cpu(leaf1->hdr.count) > be16_to_cpu(leaf2->hdr.count))
Linus Torvalds's avatar
Linus Torvalds committed
875 876 877
		state->inleaf = !swap;
	else
		state->inleaf =
878
			swap ^ (blk1->index <= be16_to_cpu(leaf1->hdr.count));
Linus Torvalds's avatar
Linus Torvalds committed
879 880 881 882
	/*
	 * Adjust the expected index for insertion.
	 */
	if (!state->inleaf)
883
		blk2->index = blk1->index - be16_to_cpu(leaf1->hdr.count);
884 885 886 887

	/*
	 * Finally sanity check just to make sure we are not returning a
	 * negative index
Linus Torvalds's avatar
Linus Torvalds committed
888 889 890 891
	 */
	if(blk2->index < 0) {
		state->inleaf = 1;
		blk2->index = 0;
892 893 894
		xfs_alert(args->dp->i_mount,
	"%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
			__func__, blk1->index);
Linus Torvalds's avatar
Linus Torvalds committed
895 896 897
	}
}

898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968
static int
xfs_dir2_data_block_free(
	xfs_da_args_t		*args,
	struct xfs_dir2_data_hdr *hdr,
	struct xfs_dir2_free	*free,
	xfs_dir2_db_t		fdb,
	int			findex,
	struct xfs_buf		*fbp,
	int			longest)
{
	struct xfs_trans	*tp = args->trans;
	int			logfree = 0;

	if (!hdr) {
		/* One less used entry in the free table.  */
		be32_add_cpu(&free->hdr.nused, -1);
		xfs_dir2_free_log_header(tp, fbp);

		/*
		 * If this was the last entry in the table, we can trim the
		 * table size back.  There might be other entries at the end
		 * referring to non-existent data blocks, get those too.
		 */
		if (findex == be32_to_cpu(free->hdr.nvalid) - 1) {
			int	i;		/* free entry index */

			for (i = findex - 1; i >= 0; i--) {
				if (free->bests[i] != cpu_to_be16(NULLDATAOFF))
					break;
			}
			free->hdr.nvalid = cpu_to_be32(i + 1);
			logfree = 0;
		} else {
			/* Not the last entry, just punch it out.  */
			free->bests[findex] = cpu_to_be16(NULLDATAOFF);
			logfree = 1;
		}
		/*
		 * If there are no useful entries left in the block,
		 * get rid of the block if we can.
		 */
		if (!free->hdr.nused) {
			int error;

			error = xfs_dir2_shrink_inode(args, fdb, fbp);
			if (error == 0) {
				fbp = NULL;
				logfree = 0;
			} else if (error != ENOSPC || args->total != 0)
				return error;
			/*
			 * It's possible to get ENOSPC if there is no
			 * space reservation.  In this case some one
			 * else will eventually get rid of this block.
			 */
		}
	} else {
		/*
		 * Data block is not empty, just set the free entry to the new
		 * value.
		 */
		free->bests[findex] = cpu_to_be16(longest);
		logfree = 1;
	}

	/* Log the free entry that changed, unless we got rid of it.  */
	if (logfree)
		xfs_dir2_free_log_bests(tp, fbp, findex, findex);
	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
969 970 971 972 973 974 975 976
/*
 * Remove an entry from a node directory.
 * This removes the leaf entry and the data entry,
 * and updates the free block if necessary.
 */
static int					/* error */
xfs_dir2_leafn_remove(
	xfs_da_args_t		*args,		/* operation arguments */
977
	struct xfs_buf		*bp,		/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
978 979 980 981
	int			index,		/* leaf entry index */
	xfs_da_state_blk_t	*dblk,		/* data block */
	int			*rval)		/* resulting block needs join */
{
982
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
Linus Torvalds's avatar
Linus Torvalds committed
983
	xfs_dir2_db_t		db;		/* data block number */
984
	struct xfs_buf		*dbp;		/* data block buffer */
Linus Torvalds's avatar
Linus Torvalds committed
985 986 987 988 989 990 991 992 993 994 995
	xfs_dir2_data_entry_t	*dep;		/* data block entry */
	xfs_inode_t		*dp;		/* incore directory inode */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	int			longest;	/* longest data free entry */
	int			off;		/* data block entry offset */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			needlog;	/* need to log data header */
	int			needscan;	/* need to rescan data frees */
	xfs_trans_t		*tp;		/* transaction pointer */

996 997
	trace_xfs_dir2_leafn_remove(args, index);

Linus Torvalds's avatar
Linus Torvalds committed
998 999 1000
	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
1001
	leaf = bp->b_addr;
1002
	ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1003 1004 1005 1006 1007 1008 1009
	/*
	 * Point to the entry we're removing.
	 */
	lep = &leaf->ents[index];
	/*
	 * Extract the data block and offset from the entry.
	 */
1010
	db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds's avatar
Linus Torvalds committed
1011
	ASSERT(dblk->blkno == db);
1012
	off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
Linus Torvalds's avatar
Linus Torvalds committed
1013 1014 1015 1016 1017
	ASSERT(dblk->index == off);
	/*
	 * Kill the leaf entry by marking it stale.
	 * Log the leaf block changes.
	 */
1018
	be16_add_cpu(&leaf->hdr.stale, 1);
Linus Torvalds's avatar
Linus Torvalds committed
1019
	xfs_dir2_leaf_log_header(tp, bp);
1020
	lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds's avatar
Linus Torvalds committed
1021 1022 1023 1024 1025 1026
	xfs_dir2_leaf_log_ents(tp, bp, index, index);
	/*
	 * Make the data entry free.  Keep track of the longest freespace
	 * in the data block in case it changes.
	 */
	dbp = dblk->bp;
1027
	hdr = dbp->b_addr;
1028 1029
	dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
	longest = be16_to_cpu(hdr->bestfree[0].length);
Linus Torvalds's avatar
Linus Torvalds committed
1030 1031
	needlog = needscan = 0;
	xfs_dir2_data_make_free(tp, dbp, off,
1032
		xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds's avatar
Linus Torvalds committed
1033 1034 1035 1036 1037
	/*
	 * Rescan the data block freespaces for bestfree.
	 * Log the data block header if needed.
	 */
	if (needscan)
1038
		xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds's avatar
Linus Torvalds committed
1039 1040 1041 1042 1043 1044 1045
	if (needlog)
		xfs_dir2_data_log_header(tp, dbp);
	xfs_dir2_data_check(dp, dbp);
	/*
	 * If the longest data block freespace changes, need to update
	 * the corresponding freeblock entry.
	 */
1046
	if (longest < be16_to_cpu(hdr->bestfree[0].length)) {
Linus Torvalds's avatar
Linus Torvalds committed
1047
		int		error;		/* error return value */
1048
		struct xfs_buf	*fbp;		/* freeblock buffer */
Linus Torvalds's avatar
Linus Torvalds committed
1049 1050 1051 1052 1053 1054 1055 1056
		xfs_dir2_db_t	fdb;		/* freeblock block number */
		int		findex;		/* index in freeblock entries */
		xfs_dir2_free_t	*free;		/* freeblock structure */

		/*
		 * Convert the data block number to a free block,
		 * read in the free block.
		 */
1057
		fdb = xfs_dir2_db_to_fdb(mp, db);
1058 1059
		error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
					   &fbp);
1060
		if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1061
			return error;
1062
		free = fbp->b_addr;
1063
		ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
1064
		ASSERT(be32_to_cpu(free->hdr.firstdb) ==
1065
		       xfs_dir2_free_max_bests(mp) *
Linus Torvalds's avatar
Linus Torvalds committed
1066 1067 1068 1069
		       (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
		/*
		 * Calculate which entry we need to fix.
		 */
1070
		findex = xfs_dir2_db_to_fdindex(mp, db);
1071
		longest = be16_to_cpu(hdr->bestfree[0].length);
Linus Torvalds's avatar
Linus Torvalds committed
1072 1073 1074 1075
		/*
		 * If the data block is now empty we can get rid of it
		 * (usually).
		 */
1076
		if (longest == mp->m_dirblksize - (uint)sizeof(*hdr)) {
Linus Torvalds's avatar
Linus Torvalds committed
1077 1078 1079 1080 1081 1082
			/*
			 * Try to punch out the data block.
			 */
			error = xfs_dir2_shrink_inode(args, db, dbp);
			if (error == 0) {
				dblk->bp = NULL;
1083
				hdr = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
1084 1085 1086 1087 1088 1089
			}
			/*
			 * We can get ENOSPC if there's no space reservation.
			 * In this case just drop the buffer and some one else
			 * will eventually get rid of the empty block.
			 */
1090
			else if (!(error == ENOSPC && args->total == 0))
Linus Torvalds's avatar
Linus Torvalds committed
1091 1092 1093 1094 1095 1096
				return error;
		}
		/*
		 * If we got rid of the data block, we can eliminate that entry
		 * in the free block.
		 */
1097 1098 1099 1100
		error = xfs_dir2_data_block_free(args, hdr, free,
						 fdb, findex, fbp, longest);
		if (error)
			return error;
Linus Torvalds's avatar
Linus Torvalds committed
1101
	}
1102

Linus Torvalds's avatar
Linus Torvalds committed
1103 1104
	xfs_dir2_leafn_check(dp, bp);
	/*
Malcolm Parsons's avatar
Malcolm Parsons committed
1105
	 * Return indication of whether this leaf block is empty enough
Linus Torvalds's avatar
Linus Torvalds committed
1106 1107 1108 1109 1110
	 * to justify trying to join it with a neighbor.
	 */
	*rval =
		((uint)sizeof(leaf->hdr) +
		 (uint)sizeof(leaf->ents[0]) *
1111
		 (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale))) <
Linus Torvalds's avatar
Linus Torvalds committed
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
		mp->m_dir_magicpct;
	return 0;
}

/*
 * Split the leaf entries in the old block into old and new blocks.
 */
int						/* error */
xfs_dir2_leafn_split(
	xfs_da_state_t		*state,		/* btree cursor */
	xfs_da_state_blk_t	*oldblk,	/* original block */
	xfs_da_state_blk_t	*newblk)	/* newly created block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	xfs_dablk_t		blkno;		/* new leaf block number */
	int			error;		/* error return value */
	xfs_mount_t		*mp;		/* filesystem mount point */

	/*
	 * Allocate space for a new leaf node.
	 */
	args = state->args;
	mp = args->dp->i_mount;
	ASSERT(args != NULL);
	ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
	error = xfs_da_grow_inode(args, &blkno);
	if (error) {
		return error;
	}
	/*
	 * Initialize the new leaf block.
	 */
1144
	error = xfs_dir2_leaf_init(args, xfs_dir2_da_to_db(mp, blkno),
Linus Torvalds's avatar
Linus Torvalds committed
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
		&newblk->bp, XFS_DIR2_LEAFN_MAGIC);
	if (error) {
		return error;
	}
	newblk->blkno = blkno;
	newblk->magic = XFS_DIR2_LEAFN_MAGIC;
	/*
	 * Rebalance the entries across the two leaves, link the new
	 * block into the leaves.
	 */
	xfs_dir2_leafn_rebalance(state, oldblk, newblk);
	error = xfs_da_blk_link(state, oldblk, newblk);
	if (error) {
		return error;
	}
	/*
	 * Insert the new entry in the correct block.
	 */
	if (state->inleaf)
		error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
	else
		error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
	/*
	 * Update last hashval in each block since we added the name.
	 */
	oldblk->hashval = xfs_dir2_leafn_lasthash(oldblk->bp, NULL);
	newblk->hashval = xfs_dir2_leafn_lasthash(newblk->bp, NULL);
	xfs_dir2_leafn_check(args->dp, oldblk->bp);
	xfs_dir2_leafn_check(args->dp, newblk->bp);
	return error;
}

/*
 * Check a leaf block and its neighbors to see if the block should be
 * collapsed into one or the other neighbor.  Always keep the block
 * with the smaller block number.
 * If the current block is over 50% full, don't try to join it, return 0.
 * If the block is empty, fill in the state structure and return 2.
 * If it can be collapsed, fill in the state structure and return 1.
 * If nothing can be done, return 0.
 */
int						/* error */
xfs_dir2_leafn_toosmall(
	xfs_da_state_t		*state,		/* btree cursor */
	int			*action)	/* resulting action to take */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
	xfs_dablk_t		blkno;		/* leaf block number */
1193
	struct xfs_buf		*bp;		/* leaf buffer */
Linus Torvalds's avatar
Linus Torvalds committed
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
	int			bytes;		/* bytes in use */
	int			count;		/* leaf live entry count */
	int			error;		/* error return value */
	int			forward;	/* sibling block direction */
	int			i;		/* sibling counter */
	xfs_da_blkinfo_t	*info;		/* leaf block header */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	int			rval;		/* result from path_shift */

	/*
	 * Check for the degenerate case of the block being over 50% full.
	 * If so, it's not worth even looking to see if we might be able
	 * to coalesce with a sibling.
	 */
	blk = &state->path.blk[state->path.active - 1];
1209
	info = blk->bp->b_addr;
1210
	ASSERT(info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1211
	leaf = (xfs_dir2_leaf_t *)info;
1212
	count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds's avatar
Linus Torvalds committed
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
	bytes = (uint)sizeof(leaf->hdr) + count * (uint)sizeof(leaf->ents[0]);
	if (bytes > (state->blocksize >> 1)) {
		/*
		 * Blk over 50%, don't try to join.
		 */
		*action = 0;
		return 0;
	}
	/*
	 * Check for the degenerate case of the block being empty.
	 * If the block is empty, we'll simply delete it, no need to
	 * coalesce it with a sibling block.  We choose (arbitrarily)
	 * to merge with the forward block unless it is NULL.
	 */
	if (count == 0) {
		/*
		 * Make altpath point to the block we want to keep and
		 * path point to the block we want to drop (this one).
		 */
1232
		forward = (info->forw != 0);
Linus Torvalds's avatar
Linus Torvalds committed
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
		memcpy(&state->altpath, &state->path, sizeof(state->path));
		error = xfs_da_path_shift(state, &state->altpath, forward, 0,
			&rval);
		if (error)
			return error;
		*action = rval ? 2 : 0;
		return 0;
	}
	/*
	 * Examine each sibling block to see if we can coalesce with
	 * at least 25% free space to spare.  We need to figure out
	 * whether to merge with the forward or the backward block.
	 * We prefer coalescing with the lower numbered sibling so as
	 * to shrink a directory over time.
	 */
1248
	forward = be32_to_cpu(info->forw) < be32_to_cpu(info->back);
Linus Torvalds's avatar
Linus Torvalds committed
1249
	for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
1250
		blkno = forward ? be32_to_cpu(info->forw) : be32_to_cpu(info->back);
Linus Torvalds's avatar
Linus Torvalds committed
1251 1252 1253 1254 1255
		if (blkno == 0)
			continue;
		/*
		 * Read the sibling leaf block.
		 */
Dave Chinner's avatar
Dave Chinner committed
1256 1257
		error = xfs_dir2_leafn_read(state->args->trans, state->args->dp,
					    blkno, -1, &bp);
1258
		if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1259
			return error;
Dave Chinner's avatar
Dave Chinner committed
1260

Linus Torvalds's avatar
Linus Torvalds committed
1261 1262 1263 1264
		/*
		 * Count bytes in the two blocks combined.
		 */
		leaf = (xfs_dir2_leaf_t *)info;
1265
		count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds's avatar
Linus Torvalds committed
1266
		bytes = state->blocksize - (state->blocksize >> 2);
1267
		leaf = bp->b_addr;
1268
		ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
1269
		count += be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds's avatar
Linus Torvalds committed
1270 1271 1272 1273 1274 1275
		bytes -= count * (uint)sizeof(leaf->ents[0]);
		/*
		 * Fits with at least 25% to spare.
		 */
		if (bytes >= 0)
			break;
1276
		xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds's avatar
Linus Torvalds committed
1277 1278 1279 1280 1281 1282 1283 1284
	}
	/*
	 * Didn't like either block, give up.
	 */
	if (i >= 2) {
		*action = 0;
		return 0;
	}
1285

Linus Torvalds's avatar
Linus Torvalds committed
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
	/*
	 * Make altpath point to the block we want to keep (the lower
	 * numbered block) and path point to the block we want to drop.
	 */
	memcpy(&state->altpath, &state->path, sizeof(state->path));
	if (blkno < blk->blkno)
		error = xfs_da_path_shift(state, &state->altpath, forward, 0,
			&rval);
	else
		error = xfs_da_path_shift(state, &state->path, forward, 0,
			&rval);
	if (error) {
		return error;
	}
	*action = rval ? 0 : 1;
	return 0;
}

/*
 * Move all the leaf entries from drop_blk to save_blk.
 * This is done as part of a join operation.
 */
void
xfs_dir2_leafn_unbalance(
	xfs_da_state_t		*state,		/* cursor */
	xfs_da_state_blk_t	*drop_blk,	/* dead block */
	xfs_da_state_blk_t	*save_blk)	/* surviving block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	xfs_dir2_leaf_t		*drop_leaf;	/* dead leaf structure */
	xfs_dir2_leaf_t		*save_leaf;	/* surviving leaf structure */

	args = state->args;
	ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
	ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1321 1322
	drop_leaf = drop_blk->bp->b_addr;
	save_leaf = save_blk->bp->b_addr;
1323 1324
	ASSERT(drop_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
	ASSERT(save_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1325 1326 1327 1328
	/*
	 * If there are any stale leaf entries, take this opportunity
	 * to purge them.
	 */
1329
	if (drop_leaf->hdr.stale)
Linus Torvalds's avatar
Linus Torvalds committed
1330
		xfs_dir2_leaf_compact(args, drop_blk->bp);
1331
	if (save_leaf->hdr.stale)
Linus Torvalds's avatar
Linus Torvalds committed
1332 1333 1334 1335
		xfs_dir2_leaf_compact(args, save_blk->bp);
	/*
	 * Move the entries from drop to the appropriate end of save.
	 */
1336
	drop_blk->hashval = be32_to_cpu(drop_leaf->ents[be16_to_cpu(drop_leaf->hdr.count) - 1].hashval);
Linus Torvalds's avatar
Linus Torvalds committed
1337 1338
	if (xfs_dir2_leafn_order(save_blk->bp, drop_blk->bp))
		xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp, 0,
1339
			be16_to_cpu(drop_leaf->hdr.count));
Linus Torvalds's avatar
Linus Torvalds committed
1340 1341
	else
		xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp,
1342
			be16_to_cpu(save_leaf->hdr.count), be16_to_cpu(drop_leaf->hdr.count));
1343
	save_blk->hashval = be32_to_cpu(save_leaf->ents[be16_to_cpu(save_leaf->hdr.count) - 1].hashval);
Linus Torvalds's avatar
Linus Torvalds committed
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
	xfs_dir2_leafn_check(args->dp, save_blk->bp);
}

/*
 * Top-level node form directory addname routine.
 */
int						/* error */
xfs_dir2_node_addname(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block for insert */
	int			error;		/* error return value */
	int			rval;		/* sub-return value */
	xfs_da_state_t		*state;		/* btree cursor */

1359 1360
	trace_xfs_dir2_node_addname(args);

Linus Torvalds's avatar
Linus Torvalds committed
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
	/*
	 * Allocate and initialize the state (btree cursor).
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Look up the name.  We're not supposed to find it, but
	 * this gives us the insertion point.
	 */
	error = xfs_da_node_lookup_int(state, &rval);
	if (error)
		rval = error;
	if (rval != ENOENT) {
		goto done;
	}
	/*
	 * Add the data entry to a data block.
	 * Extravalid is set to a freeblock found by lookup.
	 */
	rval = xfs_dir2_node_addname_int(args,
		state->extravalid ? &state->extrablk : NULL);
	if (rval) {
		goto done;
	}
	blk = &state->path.blk[state->path.active - 1];
	ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
	/*
	 * Add the new leaf entry.
	 */
	rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
	if (rval == 0) {
		/*
		 * It worked, fix the hash values up the btree.
		 */
1398
		if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Linus Torvalds's avatar
Linus Torvalds committed
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
			xfs_da_fixhashpath(state, &state->path);
	} else {
		/*
		 * It didn't work, we need to split the leaf block.
		 */
		if (args->total == 0) {
			ASSERT(rval == ENOSPC);
			goto done;
		}
		/*
		 * Split the leaf block and insert the new entry.
		 */
		rval = xfs_da_split(state);
	}
done:
	xfs_da_state_free(state);
	return rval;
}

/*
 * Add the data entry for a node-format directory name addition.
 * The leaf entry is added in xfs_dir2_leafn_add.
 * We may enter with a freespace block that the lookup found.
 */
static int					/* error */
xfs_dir2_node_addname_int(
	xfs_da_args_t		*args,		/* operation arguments */
	xfs_da_state_blk_t	*fblk)		/* optional freespace block */
{
1428
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
Linus Torvalds's avatar
Linus Torvalds committed
1429
	xfs_dir2_db_t		dbno;		/* data block number */
1430
	struct xfs_buf		*dbp;		/* data block buffer */
Linus Torvalds's avatar
Linus Torvalds committed
1431 1432 1433 1434 1435
	xfs_dir2_data_entry_t	*dep;		/* data entry pointer */
	xfs_inode_t		*dp;		/* incore directory inode */
	xfs_dir2_data_unused_t	*dup;		/* data unused entry pointer */
	int			error;		/* error return value */
	xfs_dir2_db_t		fbno;		/* freespace block number */
1436
	struct xfs_buf		*fbp;		/* freespace buffer */
Linus Torvalds's avatar
Linus Torvalds committed
1437 1438 1439 1440 1441 1442 1443 1444 1445
	int			findex;		/* freespace entry index */
	xfs_dir2_free_t		*free=NULL;	/* freespace block structure */
	xfs_dir2_db_t		ifbno;		/* initial freespace block no */
	xfs_dir2_db_t		lastfbno=0;	/* highest freespace block no */
	int			length;		/* length of the new entry */
	int			logfree;	/* need to log free entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			needlog;	/* need to log data header */
	int			needscan;	/* need to rescan data frees */
1446
	__be16			*tagp;		/* data entry tag pointer */
Linus Torvalds's avatar
Linus Torvalds committed
1447 1448 1449 1450 1451
	xfs_trans_t		*tp;		/* transaction pointer */

	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
1452
	length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds's avatar
Linus Torvalds committed
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
	/*
	 * If we came in with a freespace block that means that lookup
	 * found an entry with our hash value.  This is the freespace
	 * block for that data entry.
	 */
	if (fblk) {
		fbp = fblk->bp;
		/*
		 * Remember initial freespace block number.
		 */
		ifbno = fblk->blkno;
1464
		free = fbp->b_addr;
1465
		ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1466 1467 1468 1469 1470 1471 1472
		findex = fblk->index;
		/*
		 * This means the free entry showed that the data block had
		 * space for our entry, so we remembered it.
		 * Use that data block.
		 */
		if (findex >= 0) {
1473 1474 1475 1476
			ASSERT(findex < be32_to_cpu(free->hdr.nvalid));
			ASSERT(be16_to_cpu(free->bests[findex]) != NULLDATAOFF);
			ASSERT(be16_to_cpu(free->bests[findex]) >= length);
			dbno = be32_to_cpu(free->hdr.firstdb) + findex;
Linus Torvalds's avatar
Linus Torvalds committed
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
		}
		/*
		 * The data block looked at didn't have enough room.
		 * We'll start at the beginning of the freespace entries.
		 */
		else {
			dbno = -1;
			findex = 0;
		}
	}
	/*
	 * Didn't come in with a freespace block, so don't have a data block.
	 */
	else {
		ifbno = dbno = -1;
		fbp = NULL;
		findex = 0;
	}
	/*
	 * If we don't have a data block yet, we're going to scan the
	 * freespace blocks looking for one.  Figure out what the
	 * highest freespace block number is.
	 */
	if (dbno == -1) {
		xfs_fileoff_t	fo;		/* freespace block number */

		if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
			return error;
1505
		lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
Linus Torvalds's avatar
Linus Torvalds committed
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
		fbno = ifbno;
	}
	/*
	 * While we haven't identified a data block, search the freeblock
	 * data for a good data block.  If we find a null freeblock entry,
	 * indicating a hole in the data blocks, remember that.
	 */
	while (dbno == -1) {
		/*
		 * If we don't have a freeblock in hand, get the next one.
		 */
		if (fbp == NULL) {
			/*
			 * Happens the first time through unless lookup gave
			 * us a freespace block to start with.
			 */
			if (++fbno == 0)
				fbno = XFS_DIR2_FREE_FIRSTDB(mp);
			/*
			 * If it's ifbno we already looked at it.
			 */
			if (fbno == ifbno)
				fbno++;
			/*
			 * If it's off the end we're done.
			 */
			if (fbno >= lastfbno)
				break;
			/*
			 * Read the block.  There can be holes in the
			 * freespace blocks, so this might not succeed.
			 * This should be really rare, so there's no reason
			 * to avoid it.
			 */
1540 1541 1542
			error = xfs_dir2_free_try_read(tp, dp,
						xfs_dir2_db_to_da(mp, fbno),
						&fbp);
1543
			if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1544
				return error;
1545
			if (!fbp)
Linus Torvalds's avatar
Linus Torvalds committed
1546
				continue;
1547
			free = fbp->b_addr;
1548
			ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1549 1550 1551 1552 1553
			findex = 0;
		}
		/*
		 * Look at the current free entry.  Is it good enough?
		 */
1554 1555 1556
		if (be16_to_cpu(free->bests[findex]) != NULLDATAOFF &&
		    be16_to_cpu(free->bests[findex]) >= length)
			dbno = be32_to_cpu(free->hdr.firstdb) + findex;
Linus Torvalds's avatar
Linus Torvalds committed
1557 1558 1559 1560
		else {
			/*
			 * Are we done with the freeblock?
			 */
1561
			if (++findex == be32_to_cpu(free->hdr.nvalid)) {
Linus Torvalds's avatar
Linus Torvalds committed
1562 1563 1564
				/*
				 * Drop the block.
				 */
1565
				xfs_trans_brelse(tp, fbp);
Linus Torvalds's avatar
Linus Torvalds committed
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
				fbp = NULL;
				if (fblk && fblk->bp)
					fblk->bp = NULL;
			}
		}
	}
	/*
	 * If we don't have a data block, we need to allocate one and make
	 * the freespace entries refer to it.
	 */
	if (unlikely(dbno == -1)) {
		/*
		 * Not allowed to allocate, return failure.
		 */
1580
		if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds's avatar
Linus Torvalds committed
1581
			return XFS_ERROR(ENOSPC);
1582

Linus Torvalds's avatar
Linus Torvalds committed
1583 1584 1585 1586 1587 1588
		/*
		 * Allocate and initialize the new data block.
		 */
		if (unlikely((error = xfs_dir2_grow_inode(args,
							 XFS_DIR2_DATA_SPACE,
							 &dbno)) ||
1589
		    (error = xfs_dir2_data_init(args, dbno, &dbp))))
Linus Torvalds's avatar
Linus Torvalds committed
1590
			return error;
1591

Linus Torvalds's avatar
Linus Torvalds committed
1592 1593 1594 1595
		/*
		 * If (somehow) we have a freespace block, get rid of it.
		 */
		if (fbp)
1596
			xfs_trans_brelse(tp, fbp);
Linus Torvalds's avatar
Linus Torvalds committed
1597 1598 1599 1600 1601 1602 1603
		if (fblk && fblk->bp)
			fblk->bp = NULL;

		/*
		 * Get the freespace block corresponding to the data block
		 * that was just allocated.
		 */
1604
		fbno = xfs_dir2_db_to_fdb(mp, dbno);
1605 1606 1607
		error = xfs_dir2_free_try_read(tp, dp,
					       xfs_dir2_db_to_da(mp, fbno),
					       &fbp);
1608
		if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1609
			return error;
1610

Linus Torvalds's avatar
Linus Torvalds committed
1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
		/*
		 * If there wasn't a freespace block, the read will
		 * return a NULL fbp.  Allocate and initialize a new one.
		 */
		if( fbp == NULL ) {
			if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
							&fbno))) {
				return error;
			}

1621
			if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
1622
				xfs_alert(mp,
Jean Delvare's avatar
Jean Delvare committed
1623
			"%s: dir ino %llu needed freesp block %lld for\n"
1624 1625
			"  data block %lld, got %lld ifbno %llu lastfbno %d",
					__func__, (unsigned long long)dp->i_ino,
1626
					(long long)xfs_dir2_db_to_fdb(mp, dbno),
Linus Torvalds's avatar
Linus Torvalds committed
1627 1628 1629
					(long long)dbno, (long long)fbno,
					(unsigned long long)ifbno, lastfbno);
				if (fblk) {
1630 1631
					xfs_alert(mp,
				" fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds's avatar
Linus Torvalds committed
1632 1633 1634 1635 1636
						fblk,
						(unsigned long long)fblk->blkno,
						fblk->index,
						fblk->magic);
				} else {
1637
					xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds's avatar
Linus Torvalds committed
1638 1639 1640 1641 1642 1643 1644 1645 1646
				}
				XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
						 XFS_ERRLEVEL_LOW, mp);
				return XFS_ERROR(EFSCORRUPTED);
			}

			/*
			 * Get a buffer for the new block.
			 */
1647 1648 1649 1650
			error = xfs_da_get_buf(tp, dp,
					       xfs_dir2_db_to_da(mp, fbno),
					       -1, &fbp, XFS_DATA_FORK);
			if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1651
				return error;
1652
			fbp->b_pre_io = xfs_dir2_free_write_verify;
Linus Torvalds's avatar
Linus Torvalds committed
1653 1654 1655 1656 1657

			/*
			 * Initialize the new block to be empty, and remember
			 * its first slot as our empty slot.
			 */
1658
			free = fbp->b_addr;
1659 1660
			free->hdr.magic = cpu_to_be32(XFS_DIR2_FREE_MAGIC);
			free->hdr.firstdb = cpu_to_be32(
Linus Torvalds's avatar
Linus Torvalds committed
1661
				(fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
1662
				xfs_dir2_free_max_bests(mp));
Linus Torvalds's avatar
Linus Torvalds committed
1663 1664 1665
			free->hdr.nvalid = 0;
			free->hdr.nused = 0;
		} else {
1666
			free = fbp->b_addr;
1667
			ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1668 1669 1670 1671 1672
		}

		/*
		 * Set the freespace block index from the data block number.
		 */
1673
		findex = xfs_dir2_db_to_fdindex(mp, dbno);
Linus Torvalds's avatar
Linus Torvalds committed
1674 1675 1676 1677
		/*
		 * If it's after the end of the current entries in the
		 * freespace block, extend that table.
		 */
1678
		if (findex >= be32_to_cpu(free->hdr.nvalid)) {
1679
			ASSERT(findex < xfs_dir2_free_max_bests(mp));
1680
			free->hdr.nvalid = cpu_to_be32(findex + 1);
Linus Torvalds's avatar
Linus Torvalds committed
1681 1682 1683
			/*
			 * Tag new entry so nused will go up.
			 */
1684
			free->bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds's avatar
Linus Torvalds committed
1685 1686 1687 1688 1689
		}
		/*
		 * If this entry was for an empty data block
		 * (this should always be true) then update the header.
		 */
1690
		if (free->bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1691
			be32_add_cpu(&free->hdr.nused, 1);
Linus Torvalds's avatar
Linus Torvalds committed
1692 1693 1694 1695 1696 1697 1698
			xfs_dir2_free_log_header(tp, fbp);
		}
		/*
		 * Update the real value in the table.
		 * We haven't allocated the data entry yet so this will
		 * change again.
		 */
1699
		hdr = dbp->b_addr;
1700
		free->bests[findex] = hdr->bestfree[0].length;
Linus Torvalds's avatar
Linus Torvalds committed
1701 1702 1703 1704 1705 1706 1707 1708 1709
		logfree = 1;
	}
	/*
	 * We had a data block so we don't have to make a new one.
	 */
	else {
		/*
		 * If just checking, we succeeded.
		 */
1710
		if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds's avatar
Linus Torvalds committed
1711
			return 0;
1712

Linus Torvalds's avatar
Linus Torvalds committed
1713 1714 1715
		/*
		 * Read the data block in.
		 */
1716 1717
		error = xfs_dir2_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
					   -1, &dbp);
1718
		if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1719
			return error;
1720
		hdr = dbp->b_addr;
Linus Torvalds's avatar
Linus Torvalds committed
1721 1722
		logfree = 0;
	}
1723
	ASSERT(be16_to_cpu(hdr->bestfree[0].length) >= length);
Linus Torvalds's avatar
Linus Torvalds committed
1724 1725 1726 1727
	/*
	 * Point to the existing unused space.
	 */
	dup = (xfs_dir2_data_unused_t *)
1728
	      ((char *)hdr + be16_to_cpu(hdr->bestfree[0].offset));
Linus Torvalds's avatar
Linus Torvalds committed
1729 1730 1731 1732 1733
	needscan = needlog = 0;
	/*
	 * Mark the first part of the unused space, inuse for us.
	 */
	xfs_dir2_data_use_free(tp, dbp, dup,
1734
		(xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds's avatar
Linus Torvalds committed
1735 1736 1737 1738 1739
		&needlog, &needscan);
	/*
	 * Fill in the new entry and log it.
	 */
	dep = (xfs_dir2_data_entry_t *)dup;
1740
	dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds's avatar
Linus Torvalds committed
1741 1742
	dep->namelen = args->namelen;
	memcpy(dep->name, args->name, dep->namelen);
1743
	tagp = xfs_dir2_data_entry_tag_p(dep);
1744
	*tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds's avatar
Linus Torvalds committed
1745 1746 1747 1748 1749
	xfs_dir2_data_log_entry(tp, dbp, dep);
	/*
	 * Rescan the block for bestfree if needed.
	 */
	if (needscan)
1750
		xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds's avatar
Linus Torvalds committed
1751 1752 1753 1754 1755 1756 1757 1758
	/*
	 * Log the data block header if needed.
	 */
	if (needlog)
		xfs_dir2_data_log_header(tp, dbp);
	/*
	 * If the freespace entry is now wrong, update it.
	 */
1759 1760
	if (be16_to_cpu(free->bests[findex]) != be16_to_cpu(hdr->bestfree[0].length)) {
		free->bests[findex] = hdr->bestfree[0].length;
Linus Torvalds's avatar
Linus Torvalds committed
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
		logfree = 1;
	}
	/*
	 * Log the freespace entry if needed.
	 */
	if (logfree)
		xfs_dir2_free_log_bests(tp, fbp, findex, findex);
	/*
	 * Return the data block and offset in args, then drop the data block.
	 */
	args->blkno = (xfs_dablk_t)dbno;
1772
	args->index = be16_to_cpu(*tagp);
Linus Torvalds's avatar
Linus Torvalds committed
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
	return 0;
}

/*
 * Lookup an entry in a node-format directory.
 * All the real work happens in xfs_da_node_lookup_int.
 * The only real output is the inode number of the entry.
 */
int						/* error */
xfs_dir2_node_lookup(
	xfs_da_args_t	*args)			/* operation arguments */
{
	int		error;			/* error return value */
	int		i;			/* btree level */
	int		rval;			/* operation return value */
	xfs_da_state_t	*state;			/* btree cursor */

1790 1791
	trace_xfs_dir2_node_lookup(args);

Linus Torvalds's avatar
Linus Torvalds committed
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Fill in the path to the entry in the cursor.
	 */
	error = xfs_da_node_lookup_int(state, &rval);
	if (error)
		rval = error;
1806 1807 1808 1809
	else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
		/* If a CI match, dup the actual name and return EEXIST */
		xfs_dir2_data_entry_t	*dep;

1810 1811 1812
		dep = (xfs_dir2_data_entry_t *)
			((char *)state->extrablk.bp->b_addr +
						 state->extrablk.index);
1813 1814
		rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
	}
Linus Torvalds's avatar
Linus Torvalds committed
1815 1816 1817 1818
	/*
	 * Release the btree blocks and leaf block.
	 */
	for (i = 0; i < state->path.active; i++) {
1819
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds's avatar
Linus Torvalds committed
1820 1821 1822 1823 1824 1825
		state->path.blk[i].bp = NULL;
	}
	/*
	 * Release the data block if we have it.
	 */
	if (state->extravalid && state->extrablk.bp) {
1826
		xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds's avatar
Linus Torvalds committed
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
		state->extrablk.bp = NULL;
	}
	xfs_da_state_free(state);
	return rval;
}

/*
 * Remove an entry from a node-format directory.
 */
int						/* error */
xfs_dir2_node_removename(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
	int			error;		/* error return value */
	int			rval;		/* operation return value */
	xfs_da_state_t		*state;		/* btree cursor */

1845 1846
	trace_xfs_dir2_node_removename(args);

Linus Torvalds's avatar
Linus Torvalds committed
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Look up the entry we're deleting, set up the cursor.
	 */
	error = xfs_da_node_lookup_int(state, &rval);
1859
	if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
		rval = error;
	/*
	 * Didn't find it, upper layer screwed up.
	 */
	if (rval != EEXIST) {
		xfs_da_state_free(state);
		return rval;
	}
	blk = &state->path.blk[state->path.active - 1];
	ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
	ASSERT(state->extravalid);
	/*
	 * Remove the leaf and data entries.
	 * Extrablk refers to the data block.
	 */
	error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
		&state->extrablk, &rval);
1877
	if (error)
Linus Torvalds's avatar
Linus Torvalds committed
1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
		return error;
	/*
	 * Fix the hash values up the btree.
	 */
	xfs_da_fixhashpath(state, &state->path);
	/*
	 * If we need to join leaf blocks, do it.
	 */
	if (rval && state->path.active > 1)
		error = xfs_da_join(state);
	/*
	 * If no errors so far, try conversion to leaf format.
	 */
	if (!error)
		error = xfs_dir2_node_to_leaf(state);
	xfs_da_state_free(state);
	return error;
}

/*
 * Replace an entry's inode number in a node-format directory.
 */
int						/* error */
xfs_dir2_node_replace(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
1905
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
Linus Torvalds's avatar
Linus Torvalds committed
1906 1907 1908 1909 1910 1911 1912 1913 1914
	xfs_dir2_data_entry_t	*dep;		/* data entry changed */
	int			error;		/* error return value */
	int			i;		/* btree level */
	xfs_ino_t		inum;		/* new inode number */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry being changed */
	int			rval;		/* internal return value */
	xfs_da_state_t		*state;		/* btree cursor */

1915 1916
	trace_xfs_dir2_node_replace(args);

Linus Torvalds's avatar
Linus Torvalds committed
1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	inum = args->inumber;
	/*
	 * Lookup the entry to change in the btree.
	 */
	error = xfs_da_node_lookup_int(state, &rval);
	if (error) {
		rval = error;
	}
	/*
	 * It should be found, since the vnodeops layer has looked it up
	 * and locked it.  But paranoia is good.
	 */
	if (rval == EEXIST) {
		/*
		 * Find the leaf entry.
		 */
		blk = &state->path.blk[state->path.active - 1];
		ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1943
		leaf = blk->bp->b_addr;
Linus Torvalds's avatar
Linus Torvalds committed
1944 1945 1946 1947 1948
		lep = &leaf->ents[blk->index];
		ASSERT(state->extravalid);
		/*
		 * Point to the data entry.
		 */
1949
		hdr = state->extrablk.bp->b_addr;
1950
		ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
1951
		dep = (xfs_dir2_data_entry_t *)
1952
		      ((char *)hdr +
1953
		       xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
1954
		ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds's avatar
Linus Torvalds committed
1955 1956 1957
		/*
		 * Fill in the new inode number and log the entry.
		 */
1958
		dep->inumber = cpu_to_be64(inum);
Linus Torvalds's avatar
Linus Torvalds committed
1959 1960 1961 1962 1963 1964 1965
		xfs_dir2_data_log_entry(args->trans, state->extrablk.bp, dep);
		rval = 0;
	}
	/*
	 * Didn't find it, and we're holding a data block.  Drop it.
	 */
	else if (state->extravalid) {
1966
		xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds's avatar
Linus Torvalds committed
1967 1968 1969 1970 1971 1972
		state->extrablk.bp = NULL;
	}
	/*
	 * Release all the buffers in the cursor.
	 */
	for (i = 0; i < state->path.active; i++) {
1973
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds's avatar
Linus Torvalds committed
1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
		state->path.blk[i].bp = NULL;
	}
	xfs_da_state_free(state);
	return rval;
}

/*
 * Trim off a trailing empty freespace block.
 * Return (in rvalp) 1 if we did it, 0 if not.
 */
int						/* error */
xfs_dir2_node_trim_free(
	xfs_da_args_t		*args,		/* operation arguments */
	xfs_fileoff_t		fo,		/* free block number */
	int			*rvalp)		/* out: did something */
{
1990
	struct xfs_buf		*bp;		/* freespace buffer */
Linus Torvalds's avatar
Linus Torvalds committed
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return code */
	xfs_dir2_free_t		*free;		/* freespace structure */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_trans_t		*tp;		/* transaction pointer */

	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
	/*
	 * Read the freespace block.
	 */
2003
	error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
2004
	if (error)
Linus Torvalds's avatar
Linus Torvalds committed
2005 2006 2007 2008 2009
		return error;
	/*
	 * There can be holes in freespace.  If fo is a hole, there's
	 * nothing to do.
	 */
2010
	if (!bp)
Linus Torvalds's avatar
Linus Torvalds committed
2011
		return 0;
2012
	free = bp->b_addr;
2013
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds's avatar
Linus Torvalds committed
2014 2015 2016
	/*
	 * If there are used entries, there's nothing to do.
	 */
2017
	if (be32_to_cpu(free->hdr.nused) > 0) {
2018
		xfs_trans_brelse(tp, bp);
Linus Torvalds's avatar
Linus Torvalds committed
2019 2020 2021 2022 2023 2024 2025
		*rvalp = 0;
		return 0;
	}
	/*
	 * Blow the block away.
	 */
	if ((error =
2026
	    xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
Linus Torvalds's avatar
Linus Torvalds committed
2027 2028 2029 2030 2031 2032 2033
		    bp))) {
		/*
		 * Can't fail with ENOSPC since that only happens with no
		 * space reservation, when breaking up an extent into two
		 * pieces.  This is the last block of an extent.
		 */
		ASSERT(error != ENOSPC);
2034
		xfs_trans_brelse(tp, bp);
Linus Torvalds's avatar
Linus Torvalds committed
2035 2036 2037 2038 2039 2040 2041 2042
		return error;
	}
	/*
	 * Return that we succeeded.
	 */
	*rvalp = 1;
	return 0;
}