1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_inode.h"
14 #include "xfs_trans.h"
16 #include "xfs_dir2_priv.h"
17 #include "xfs_trace.h"
20 * Prototypes for internal functions.
22 static void xfs_dir2_sf_addname_easy(xfs_da_args_t
*args
,
23 xfs_dir2_sf_entry_t
*sfep
,
24 xfs_dir2_data_aoff_t offset
,
26 static void xfs_dir2_sf_addname_hard(xfs_da_args_t
*args
, int objchange
,
28 static int xfs_dir2_sf_addname_pick(xfs_da_args_t
*args
, int objchange
,
29 xfs_dir2_sf_entry_t
**sfepp
,
30 xfs_dir2_data_aoff_t
*offsetp
);
32 static void xfs_dir2_sf_check(xfs_da_args_t
*args
);
34 #define xfs_dir2_sf_check(args)
37 static void xfs_dir2_sf_toino4(xfs_da_args_t
*args
);
38 static void xfs_dir2_sf_toino8(xfs_da_args_t
*args
);
43 struct xfs_dir2_sf_hdr
*hdr
,
48 count
+= sizeof(struct xfs_dir2_sf_entry
); /* namelen + offset */
49 count
+= hdr
->i8count
? XFS_INO64_SIZE
: XFS_INO32_SIZE
; /* ino # */
51 if (xfs_sb_version_hasftype(&mp
->m_sb
))
52 count
+= sizeof(uint8_t);
56 struct xfs_dir2_sf_entry
*
57 xfs_dir2_sf_nextentry(
59 struct xfs_dir2_sf_hdr
*hdr
,
60 struct xfs_dir2_sf_entry
*sfep
)
62 return (void *)sfep
+ xfs_dir2_sf_entsize(mp
, hdr
, sfep
->namelen
);
66 * In short-form directory entries the inode numbers are stored at variable
67 * offset behind the entry name. If the entry stores a filetype value, then it
68 * sits between the name and the inode number. The actual inode numbers can
69 * come in two formats as well, either 4 bytes or 8 bytes wide.
74 struct xfs_dir2_sf_hdr
*hdr
,
75 struct xfs_dir2_sf_entry
*sfep
)
77 uint8_t *from
= sfep
->name
+ sfep
->namelen
;
79 if (xfs_sb_version_hasftype(&mp
->m_sb
))
83 return get_unaligned_be32(from
);
84 return get_unaligned_be64(from
) & XFS_MAXINUMBER
;
90 struct xfs_dir2_sf_hdr
*hdr
,
91 struct xfs_dir2_sf_entry
*sfep
,
94 uint8_t *to
= sfep
->name
+ sfep
->namelen
;
96 ASSERT(ino
<= XFS_MAXINUMBER
);
98 if (xfs_sb_version_hasftype(&mp
->m_sb
))
102 put_unaligned_be64(ino
, to
);
104 put_unaligned_be32(ino
, to
);
108 xfs_dir2_sf_get_parent_ino(
109 struct xfs_dir2_sf_hdr
*hdr
)
112 return get_unaligned_be32(hdr
->parent
);
113 return get_unaligned_be64(hdr
->parent
) & XFS_MAXINUMBER
;
117 xfs_dir2_sf_put_parent_ino(
118 struct xfs_dir2_sf_hdr
*hdr
,
121 ASSERT(ino
<= XFS_MAXINUMBER
);
124 put_unaligned_be64(ino
, hdr
->parent
);
126 put_unaligned_be32(ino
, hdr
->parent
);
130 * The file type field is stored at the end of the name for filetype enabled
131 * shortform directories, or not at all otherwise.
134 xfs_dir2_sf_get_ftype(
135 struct xfs_mount
*mp
,
136 struct xfs_dir2_sf_entry
*sfep
)
138 if (xfs_sb_version_hasftype(&mp
->m_sb
)) {
139 uint8_t ftype
= sfep
->name
[sfep
->namelen
];
141 if (ftype
< XFS_DIR3_FT_MAX
)
145 return XFS_DIR3_FT_UNKNOWN
;
149 xfs_dir2_sf_put_ftype(
150 struct xfs_mount
*mp
,
151 struct xfs_dir2_sf_entry
*sfep
,
154 ASSERT(ftype
< XFS_DIR3_FT_MAX
);
156 if (xfs_sb_version_hasftype(&mp
->m_sb
))
157 sfep
->name
[sfep
->namelen
] = ftype
;
161 * Given a block directory (dp/block), calculate its size as a shortform (sf)
162 * directory and a header for the sf directory, if it will fit it the
163 * space currently present in the inode. If it won't fit, the output
164 * size is too big (but not accurate).
166 int /* size for sf form */
167 xfs_dir2_block_sfsize(
168 xfs_inode_t
*dp
, /* incore inode pointer */
169 xfs_dir2_data_hdr_t
*hdr
, /* block directory data */
170 xfs_dir2_sf_hdr_t
*sfhp
) /* output: header for sf form */
172 xfs_dir2_dataptr_t addr
; /* data entry address */
173 xfs_dir2_leaf_entry_t
*blp
; /* leaf area of the block */
174 xfs_dir2_block_tail_t
*btp
; /* tail area of the block */
175 int count
; /* shortform entry count */
176 xfs_dir2_data_entry_t
*dep
; /* data entry in the block */
177 int i
; /* block entry index */
178 int i8count
; /* count of big-inode entries */
179 int isdot
; /* entry is "." */
180 int isdotdot
; /* entry is ".." */
181 xfs_mount_t
*mp
; /* mount structure pointer */
182 int namelen
; /* total name bytes */
183 xfs_ino_t parent
= 0; /* parent inode number */
184 int size
=0; /* total computed size */
186 struct xfs_da_geometry
*geo
;
192 * if there is a filetype field, add the extra byte to the namelen
193 * for each entry that we see.
195 has_ftype
= xfs_sb_version_hasftype(&mp
->m_sb
) ? 1 : 0;
197 count
= i8count
= namelen
= 0;
198 btp
= xfs_dir2_block_tail_p(geo
, hdr
);
199 blp
= xfs_dir2_block_leaf_p(btp
);
202 * Iterate over the block's data entries by using the leaf pointers.
204 for (i
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
205 if ((addr
= be32_to_cpu(blp
[i
].address
)) == XFS_DIR2_NULL_DATAPTR
)
208 * Calculate the pointer to the entry at hand.
210 dep
= (xfs_dir2_data_entry_t
*)((char *)hdr
+
211 xfs_dir2_dataptr_to_off(geo
, addr
));
213 * Detect . and .., so we can special-case them.
214 * . is not included in sf directories.
215 * .. is included by just the parent inode number.
217 isdot
= dep
->namelen
== 1 && dep
->name
[0] == '.';
220 dep
->name
[0] == '.' && dep
->name
[1] == '.';
223 i8count
+= be64_to_cpu(dep
->inumber
) > XFS_DIR2_MAX_SHORT_INUM
;
225 /* take into account the file type field */
226 if (!isdot
&& !isdotdot
) {
228 namelen
+= dep
->namelen
+ has_ftype
;
230 parent
= be64_to_cpu(dep
->inumber
);
232 * Calculate the new size, see if we should give up yet.
234 size
= xfs_dir2_sf_hdr_size(i8count
) + /* header */
235 count
* 3 * sizeof(u8
) + /* namelen + offset */
237 (i8count
? /* inumber */
238 count
* XFS_INO64_SIZE
:
239 count
* XFS_INO32_SIZE
);
240 if (size
> XFS_IFORK_DSIZE(dp
))
241 return size
; /* size value is a failure */
244 * Create the output header, if it worked.
247 sfhp
->i8count
= i8count
;
248 xfs_dir2_sf_put_parent_ino(sfhp
, parent
);
253 * Convert a block format directory to shortform.
254 * Caller has already checked that it will fit, and built us a header.
257 xfs_dir2_block_to_sf(
258 struct xfs_da_args
*args
, /* operation arguments */
260 int size
, /* shortform directory size */
261 struct xfs_dir2_sf_hdr
*sfhp
) /* shortform directory hdr */
263 struct xfs_inode
*dp
= args
->dp
;
264 struct xfs_mount
*mp
= dp
->i_mount
;
265 int error
; /* error return value */
266 int logflags
; /* inode logging flags */
267 struct xfs_dir2_sf_entry
*sfep
; /* shortform entry */
268 struct xfs_dir2_sf_hdr
*sfp
; /* shortform directory header */
269 unsigned int offset
= args
->geo
->data_entry_offset
;
272 trace_xfs_dir2_block_to_sf(args
);
275 * Allocate a temporary destination buffer the size of the inode to
276 * format the data into. Once we have formatted the data, we can free
277 * the block and copy the formatted data into the inode literal area.
279 sfp
= kmem_alloc(mp
->m_sb
.sb_inodesize
, 0);
280 memcpy(sfp
, sfhp
, xfs_dir2_sf_hdr_size(sfhp
->i8count
));
283 * Loop over the active and unused entries. Stop when we reach the
284 * leaf/tail portion of the block.
286 end
= xfs_dir3_data_end_offset(args
->geo
, bp
->b_addr
);
287 sfep
= xfs_dir2_sf_firstentry(sfp
);
288 while (offset
< end
) {
289 struct xfs_dir2_data_unused
*dup
= bp
->b_addr
+ offset
;
290 struct xfs_dir2_data_entry
*dep
= bp
->b_addr
+ offset
;
293 * If it's unused, just skip over it.
295 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
296 offset
+= be16_to_cpu(dup
->length
);
303 if (dep
->namelen
== 1 && dep
->name
[0] == '.')
304 ASSERT(be64_to_cpu(dep
->inumber
) == dp
->i_ino
);
306 * Skip .., but make sure the inode number is right.
308 else if (dep
->namelen
== 2 &&
309 dep
->name
[0] == '.' && dep
->name
[1] == '.')
310 ASSERT(be64_to_cpu(dep
->inumber
) ==
311 xfs_dir2_sf_get_parent_ino(sfp
));
313 * Normal entry, copy it into shortform.
316 sfep
->namelen
= dep
->namelen
;
317 xfs_dir2_sf_put_offset(sfep
, offset
);
318 memcpy(sfep
->name
, dep
->name
, dep
->namelen
);
319 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
,
320 be64_to_cpu(dep
->inumber
));
321 xfs_dir2_sf_put_ftype(mp
, sfep
,
322 xfs_dir2_data_get_ftype(mp
, dep
));
324 sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
);
326 offset
+= xfs_dir2_data_entsize(mp
, dep
->namelen
);
328 ASSERT((char *)sfep
- (char *)sfp
== size
);
330 /* now we are done with the block, we can shrink the inode */
331 logflags
= XFS_ILOG_CORE
;
332 error
= xfs_dir2_shrink_inode(args
, args
->geo
->datablk
, bp
);
334 ASSERT(error
!= -ENOSPC
);
339 * The buffer is now unconditionally gone, whether
340 * xfs_dir2_shrink_inode worked or not.
342 * Convert the inode to local format and copy the data in.
344 ASSERT(dp
->i_df
.if_bytes
== 0);
345 xfs_init_local_fork(dp
, XFS_DATA_FORK
, sfp
, size
);
346 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
347 dp
->i_d
.di_size
= size
;
349 logflags
|= XFS_ILOG_DDATA
;
350 xfs_dir2_sf_check(args
);
352 xfs_trans_log_inode(args
->trans
, dp
, logflags
);
358 * Add a name to a shortform directory.
359 * There are two algorithms, "easy" and "hard" which we decide on
360 * before changing anything.
361 * Convert to block form if necessary, if the new entry won't fit.
365 xfs_da_args_t
*args
) /* operation arguments */
367 xfs_inode_t
*dp
; /* incore directory inode */
368 int error
; /* error return value */
369 int incr_isize
; /* total change in size */
370 int new_isize
; /* di_size after adding name */
371 int objchange
; /* changing to 8-byte inodes */
372 xfs_dir2_data_aoff_t offset
= 0; /* offset for new entry */
373 int pick
; /* which algorithm to use */
374 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
375 xfs_dir2_sf_entry_t
*sfep
= NULL
; /* shortform entry */
377 trace_xfs_dir2_sf_addname(args
);
379 ASSERT(xfs_dir2_sf_lookup(args
) == -ENOENT
);
381 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
382 ASSERT(dp
->i_d
.di_size
>= offsetof(struct xfs_dir2_sf_hdr
, parent
));
383 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
384 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
385 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
386 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
388 * Compute entry (and change in) size.
390 incr_isize
= xfs_dir2_sf_entsize(dp
->i_mount
, sfp
, args
->namelen
);
394 * Do we have to change to 8 byte inodes?
396 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->i8count
== 0) {
398 * Yes, adjust the inode size. old count + (parent + new)
400 incr_isize
+= (sfp
->count
+ 2) * XFS_INO64_DIFF
;
404 new_isize
= (int)dp
->i_d
.di_size
+ incr_isize
;
406 * Won't fit as shortform any more (due to size),
407 * or the pick routine says it won't (due to offset values).
409 if (new_isize
> XFS_IFORK_DSIZE(dp
) ||
411 xfs_dir2_sf_addname_pick(args
, objchange
, &sfep
, &offset
)) == 0) {
413 * Just checking or no space reservation, it doesn't fit.
415 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) || args
->total
== 0)
418 * Convert to block form then add the name.
420 error
= xfs_dir2_sf_to_block(args
);
423 return xfs_dir2_block_addname(args
);
426 * Just checking, it fits.
428 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
431 * Do it the easy way - just add it at the end.
434 xfs_dir2_sf_addname_easy(args
, sfep
, offset
, new_isize
);
436 * Do it the hard way - look for a place to insert the new entry.
437 * Convert to 8 byte inode numbers first if necessary.
442 xfs_dir2_sf_toino8(args
);
443 xfs_dir2_sf_addname_hard(args
, objchange
, new_isize
);
445 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
450 * Add the new entry the "easy" way.
451 * This is copying the old directory and adding the new entry at the end.
452 * Since it's sorted by "offset" we need room after the last offset
453 * that's already there, and then room to convert to a block directory.
454 * This is already checked by the pick routine.
457 xfs_dir2_sf_addname_easy(
458 xfs_da_args_t
*args
, /* operation arguments */
459 xfs_dir2_sf_entry_t
*sfep
, /* pointer to new entry */
460 xfs_dir2_data_aoff_t offset
, /* offset to use for new ent */
461 int new_isize
) /* new directory size */
463 struct xfs_inode
*dp
= args
->dp
;
464 struct xfs_mount
*mp
= dp
->i_mount
;
465 int byteoff
; /* byte offset in sf dir */
466 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
468 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
469 byteoff
= (int)((char *)sfep
- (char *)sfp
);
471 * Grow the in-inode space.
473 xfs_idata_realloc(dp
, xfs_dir2_sf_entsize(mp
, sfp
, args
->namelen
),
476 * Need to set up again due to realloc of the inode data.
478 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
479 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ byteoff
);
481 * Fill in the new entry.
483 sfep
->namelen
= args
->namelen
;
484 xfs_dir2_sf_put_offset(sfep
, offset
);
485 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
486 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
, args
->inumber
);
487 xfs_dir2_sf_put_ftype(mp
, sfep
, args
->filetype
);
490 * Update the header and inode.
493 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
)
495 dp
->i_d
.di_size
= new_isize
;
496 xfs_dir2_sf_check(args
);
500 * Add the new entry the "hard" way.
501 * The caller has already converted to 8 byte inode numbers if necessary,
502 * in which case we need to leave the i8count at 1.
503 * Find a hole that the new entry will fit into, and copy
504 * the first part of the entries, the new entry, and the last part of
509 xfs_dir2_sf_addname_hard(
510 xfs_da_args_t
*args
, /* operation arguments */
511 int objchange
, /* changing inode number size */
512 int new_isize
) /* new directory size */
514 struct xfs_inode
*dp
= args
->dp
;
515 struct xfs_mount
*mp
= dp
->i_mount
;
516 int add_datasize
; /* data size need for new ent */
517 char *buf
; /* buffer for old */
518 int eof
; /* reached end of old dir */
519 int nbytes
; /* temp for byte copies */
520 xfs_dir2_data_aoff_t new_offset
; /* next offset value */
521 xfs_dir2_data_aoff_t offset
; /* current offset value */
522 int old_isize
; /* previous di_size */
523 xfs_dir2_sf_entry_t
*oldsfep
; /* entry in original dir */
524 xfs_dir2_sf_hdr_t
*oldsfp
; /* original shortform dir */
525 xfs_dir2_sf_entry_t
*sfep
; /* entry in new dir */
526 xfs_dir2_sf_hdr_t
*sfp
; /* new shortform dir */
529 * Copy the old directory to the stack buffer.
531 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
532 old_isize
= (int)dp
->i_d
.di_size
;
533 buf
= kmem_alloc(old_isize
, 0);
534 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
535 memcpy(oldsfp
, sfp
, old_isize
);
537 * Loop over the old directory finding the place we're going
538 * to insert the new entry.
539 * If it's going to end up at the end then oldsfep will point there.
541 for (offset
= args
->geo
->data_first_offset
,
542 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
),
543 add_datasize
= xfs_dir2_data_entsize(mp
, args
->namelen
),
544 eof
= (char *)oldsfep
== &buf
[old_isize
];
546 offset
= new_offset
+ xfs_dir2_data_entsize(mp
, oldsfep
->namelen
),
547 oldsfep
= xfs_dir2_sf_nextentry(mp
, oldsfp
, oldsfep
),
548 eof
= (char *)oldsfep
== &buf
[old_isize
]) {
549 new_offset
= xfs_dir2_sf_get_offset(oldsfep
);
550 if (offset
+ add_datasize
<= new_offset
)
554 * Get rid of the old directory, then allocate space for
555 * the new one. We do this so xfs_idata_realloc won't copy
558 xfs_idata_realloc(dp
, -old_isize
, XFS_DATA_FORK
);
559 xfs_idata_realloc(dp
, new_isize
, XFS_DATA_FORK
);
561 * Reset the pointer since the buffer was reallocated.
563 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
565 * Copy the first part of the directory, including the header.
567 nbytes
= (int)((char *)oldsfep
- (char *)oldsfp
);
568 memcpy(sfp
, oldsfp
, nbytes
);
569 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ nbytes
);
571 * Fill in the new entry, and update the header counts.
573 sfep
->namelen
= args
->namelen
;
574 xfs_dir2_sf_put_offset(sfep
, offset
);
575 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
576 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
, args
->inumber
);
577 xfs_dir2_sf_put_ftype(mp
, sfep
, args
->filetype
);
579 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& !objchange
)
582 * If there's more left to copy, do that.
585 sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
);
586 memcpy(sfep
, oldsfep
, old_isize
- nbytes
);
589 dp
->i_d
.di_size
= new_isize
;
590 xfs_dir2_sf_check(args
);
594 * Decide if the new entry will fit at all.
595 * If it will fit, pick between adding the new entry to the end (easy)
596 * or somewhere else (hard).
597 * Return 0 (won't fit), 1 (easy), 2 (hard).
600 static int /* pick result */
601 xfs_dir2_sf_addname_pick(
602 xfs_da_args_t
*args
, /* operation arguments */
603 int objchange
, /* inode # size changes */
604 xfs_dir2_sf_entry_t
**sfepp
, /* out(1): new entry ptr */
605 xfs_dir2_data_aoff_t
*offsetp
) /* out(1): new offset */
607 struct xfs_inode
*dp
= args
->dp
;
608 struct xfs_mount
*mp
= dp
->i_mount
;
609 int holefit
; /* found hole it will fit in */
610 int i
; /* entry number */
611 xfs_dir2_data_aoff_t offset
; /* data block offset */
612 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
613 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
614 int size
; /* entry's data size */
615 int used
; /* data bytes used */
617 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
618 size
= xfs_dir2_data_entsize(mp
, args
->namelen
);
619 offset
= args
->geo
->data_first_offset
;
620 sfep
= xfs_dir2_sf_firstentry(sfp
);
623 * Loop over sf entries.
624 * Keep track of data offset and whether we've seen a place
625 * to insert the new entry.
627 for (i
= 0; i
< sfp
->count
; i
++) {
629 holefit
= offset
+ size
<= xfs_dir2_sf_get_offset(sfep
);
630 offset
= xfs_dir2_sf_get_offset(sfep
) +
631 xfs_dir2_data_entsize(mp
, sfep
->namelen
);
632 sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
);
635 * Calculate data bytes used excluding the new entry, if this
636 * was a data block (block form directory).
639 (sfp
->count
+ 3) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
640 (uint
)sizeof(xfs_dir2_block_tail_t
);
642 * If it won't fit in a block form then we can't insert it,
643 * we'll go back, convert to block, then try the insert and convert
646 if (used
+ (holefit
? 0 : size
) > args
->geo
->blksize
)
649 * If changing the inode number size, do it the hard way.
654 * If it won't fit at the end then do it the hard way (use the hole).
656 if (used
+ size
> args
->geo
->blksize
)
659 * Do it the easy way.
668 * Check consistency of shortform directory, assert if bad.
672 xfs_da_args_t
*args
) /* operation arguments */
674 struct xfs_inode
*dp
= args
->dp
;
675 struct xfs_mount
*mp
= dp
->i_mount
;
676 int i
; /* entry number */
677 int i8count
; /* number of big inode#s */
678 xfs_ino_t ino
; /* entry inode number */
679 int offset
; /* data offset */
680 xfs_dir2_sf_entry_t
*sfep
; /* shortform dir entry */
681 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
683 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
684 offset
= args
->geo
->data_first_offset
;
685 ino
= xfs_dir2_sf_get_parent_ino(sfp
);
686 i8count
= ino
> XFS_DIR2_MAX_SHORT_INUM
;
688 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
690 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
)) {
691 ASSERT(xfs_dir2_sf_get_offset(sfep
) >= offset
);
692 ino
= xfs_dir2_sf_get_ino(mp
, sfp
, sfep
);
693 i8count
+= ino
> XFS_DIR2_MAX_SHORT_INUM
;
695 xfs_dir2_sf_get_offset(sfep
) +
696 xfs_dir2_data_entsize(mp
, sfep
->namelen
);
697 ASSERT(xfs_dir2_sf_get_ftype(mp
, sfep
) < XFS_DIR3_FT_MAX
);
699 ASSERT(i8count
== sfp
->i8count
);
700 ASSERT((char *)sfep
- (char *)sfp
== dp
->i_d
.di_size
);
702 (sfp
->count
+ 2) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
703 (uint
)sizeof(xfs_dir2_block_tail_t
) <= args
->geo
->blksize
);
707 /* Verify the consistency of an inline directory. */
710 struct xfs_inode
*ip
)
712 struct xfs_mount
*mp
= ip
->i_mount
;
713 struct xfs_dir2_sf_hdr
*sfp
;
714 struct xfs_dir2_sf_entry
*sfep
;
715 struct xfs_dir2_sf_entry
*next_sfep
;
717 struct xfs_ifork
*ifp
;
726 ASSERT(ip
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
);
728 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
729 sfp
= (struct xfs_dir2_sf_hdr
*)ifp
->if_u1
.if_data
;
730 size
= ifp
->if_bytes
;
733 * Give up if the directory is way too short.
735 if (size
<= offsetof(struct xfs_dir2_sf_hdr
, parent
) ||
736 size
< xfs_dir2_sf_hdr_size(sfp
->i8count
))
737 return __this_address
;
739 endp
= (char *)sfp
+ size
;
742 ino
= xfs_dir2_sf_get_parent_ino(sfp
);
743 i8count
= ino
> XFS_DIR2_MAX_SHORT_INUM
;
744 error
= xfs_dir_ino_validate(mp
, ino
);
746 return __this_address
;
747 offset
= mp
->m_dir_geo
->data_first_offset
;
749 /* Check all reported entries */
750 sfep
= xfs_dir2_sf_firstentry(sfp
);
751 for (i
= 0; i
< sfp
->count
; i
++) {
753 * struct xfs_dir2_sf_entry has a variable length.
754 * Check the fixed-offset parts of the structure are
755 * within the data buffer.
757 if (((char *)sfep
+ sizeof(*sfep
)) >= endp
)
758 return __this_address
;
760 /* Don't allow names with known bad length. */
761 if (sfep
->namelen
== 0)
762 return __this_address
;
765 * Check that the variable-length part of the structure is
766 * within the data buffer. The next entry starts after the
767 * name component, so nextentry is an acceptable test.
769 next_sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
);
770 if (endp
< (char *)next_sfep
)
771 return __this_address
;
773 /* Check that the offsets always increase. */
774 if (xfs_dir2_sf_get_offset(sfep
) < offset
)
775 return __this_address
;
777 /* Check the inode number. */
778 ino
= xfs_dir2_sf_get_ino(mp
, sfp
, sfep
);
779 i8count
+= ino
> XFS_DIR2_MAX_SHORT_INUM
;
780 error
= xfs_dir_ino_validate(mp
, ino
);
782 return __this_address
;
784 /* Check the file type. */
785 filetype
= xfs_dir2_sf_get_ftype(mp
, sfep
);
786 if (filetype
>= XFS_DIR3_FT_MAX
)
787 return __this_address
;
789 offset
= xfs_dir2_sf_get_offset(sfep
) +
790 xfs_dir2_data_entsize(mp
, sfep
->namelen
);
794 if (i8count
!= sfp
->i8count
)
795 return __this_address
;
796 if ((void *)sfep
!= (void *)endp
)
797 return __this_address
;
799 /* Make sure this whole thing ought to be in local format. */
800 if (offset
+ (sfp
->count
+ 2) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
801 (uint
)sizeof(xfs_dir2_block_tail_t
) > mp
->m_dir_geo
->blksize
)
802 return __this_address
;
808 * Create a new (shortform) directory.
810 int /* error, always 0 */
812 xfs_da_args_t
*args
, /* operation arguments */
813 xfs_ino_t pino
) /* parent inode number */
815 xfs_inode_t
*dp
; /* incore directory inode */
816 int i8count
; /* parent inode is an 8-byte number */
817 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
818 int size
; /* directory size */
820 trace_xfs_dir2_sf_create(args
);
825 ASSERT(dp
->i_d
.di_size
== 0);
827 * If it's currently a zero-length extent file,
828 * convert it to local format.
830 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
) {
831 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
; /* just in case */
832 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
833 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
834 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
836 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
837 ASSERT(dp
->i_df
.if_bytes
== 0);
838 i8count
= pino
> XFS_DIR2_MAX_SHORT_INUM
;
839 size
= xfs_dir2_sf_hdr_size(i8count
);
841 * Make a buffer for the data.
843 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
845 * Fill in the header,
847 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
848 sfp
->i8count
= i8count
;
850 * Now can put in the inode number, since i8count is set.
852 xfs_dir2_sf_put_parent_ino(sfp
, pino
);
854 dp
->i_d
.di_size
= size
;
855 xfs_dir2_sf_check(args
);
856 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
861 * Lookup an entry in a shortform directory.
862 * Returns EEXIST if found, ENOENT if not found.
866 xfs_da_args_t
*args
) /* operation arguments */
868 struct xfs_inode
*dp
= args
->dp
;
869 struct xfs_mount
*mp
= dp
->i_mount
;
870 int i
; /* entry index */
872 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
873 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
874 enum xfs_dacmp cmp
; /* comparison result */
875 xfs_dir2_sf_entry_t
*ci_sfep
; /* case-insens. entry */
877 trace_xfs_dir2_sf_lookup(args
);
879 xfs_dir2_sf_check(args
);
881 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
882 ASSERT(dp
->i_d
.di_size
>= offsetof(struct xfs_dir2_sf_hdr
, parent
));
883 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
884 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
885 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
886 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
890 if (args
->namelen
== 1 && args
->name
[0] == '.') {
891 args
->inumber
= dp
->i_ino
;
892 args
->cmpresult
= XFS_CMP_EXACT
;
893 args
->filetype
= XFS_DIR3_FT_DIR
;
897 * Special case for ..
899 if (args
->namelen
== 2 &&
900 args
->name
[0] == '.' && args
->name
[1] == '.') {
901 args
->inumber
= xfs_dir2_sf_get_parent_ino(sfp
);
902 args
->cmpresult
= XFS_CMP_EXACT
;
903 args
->filetype
= XFS_DIR3_FT_DIR
;
907 * Loop over all the entries trying to match ours.
910 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->count
;
911 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
)) {
913 * Compare name and if it's an exact match, return the inode
914 * number. If it's the first case-insensitive match, store the
915 * inode number and continue looking for an exact match.
917 cmp
= xfs_dir2_compname(args
, sfep
->name
, sfep
->namelen
);
918 if (cmp
!= XFS_CMP_DIFFERENT
&& cmp
!= args
->cmpresult
) {
919 args
->cmpresult
= cmp
;
920 args
->inumber
= xfs_dir2_sf_get_ino(mp
, sfp
, sfep
);
921 args
->filetype
= xfs_dir2_sf_get_ftype(mp
, sfep
);
922 if (cmp
== XFS_CMP_EXACT
)
927 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
929 * Here, we can only be doing a lookup (not a rename or replace).
930 * If a case-insensitive match was not found, return -ENOENT.
934 /* otherwise process the CI match as required by the caller */
935 error
= xfs_dir_cilookup_result(args
, ci_sfep
->name
, ci_sfep
->namelen
);
940 * Remove an entry from a shortform directory.
943 xfs_dir2_sf_removename(
946 struct xfs_inode
*dp
= args
->dp
;
947 struct xfs_mount
*mp
= dp
->i_mount
;
948 int byteoff
; /* offset of removed entry */
949 int entsize
; /* this entry's size */
950 int i
; /* shortform entry index */
951 int newsize
; /* new inode size */
952 int oldsize
; /* old inode size */
953 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
954 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
956 trace_xfs_dir2_sf_removename(args
);
958 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
959 oldsize
= (int)dp
->i_d
.di_size
;
960 ASSERT(oldsize
>= offsetof(struct xfs_dir2_sf_hdr
, parent
));
961 ASSERT(dp
->i_df
.if_bytes
== oldsize
);
962 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
963 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
964 ASSERT(oldsize
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
966 * Loop over the old directory entries.
967 * Find the one we're deleting.
969 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->count
;
970 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
)) {
971 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
973 ASSERT(xfs_dir2_sf_get_ino(mp
, sfp
, sfep
) ==
986 byteoff
= (int)((char *)sfep
- (char *)sfp
);
987 entsize
= xfs_dir2_sf_entsize(mp
, sfp
, args
->namelen
);
988 newsize
= oldsize
- entsize
;
990 * Copy the part if any after the removed entry, sliding it down.
992 if (byteoff
+ entsize
< oldsize
)
993 memmove((char *)sfp
+ byteoff
, (char *)sfp
+ byteoff
+ entsize
,
994 oldsize
- (byteoff
+ entsize
));
996 * Fix up the header and file size.
999 dp
->i_d
.di_size
= newsize
;
1001 * Reallocate, making it smaller.
1003 xfs_idata_realloc(dp
, newsize
- oldsize
, XFS_DATA_FORK
);
1004 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1006 * Are we changing inode number size?
1008 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
1009 if (sfp
->i8count
== 1)
1010 xfs_dir2_sf_toino4(args
);
1014 xfs_dir2_sf_check(args
);
1015 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1020 * Check whether the sf dir replace operation need more blocks.
1023 xfs_dir2_sf_replace_needblock(
1024 struct xfs_inode
*dp
,
1028 struct xfs_dir2_sf_hdr
*sfp
;
1030 if (dp
->i_d
.di_format
!= XFS_DINODE_FMT_LOCAL
)
1033 sfp
= (struct xfs_dir2_sf_hdr
*)dp
->i_df
.if_u1
.if_data
;
1034 newsize
= dp
->i_df
.if_bytes
+ (sfp
->count
+ 1) * XFS_INO64_DIFF
;
1036 return inum
> XFS_DIR2_MAX_SHORT_INUM
&&
1037 sfp
->i8count
== 0 && newsize
> XFS_IFORK_DSIZE(dp
);
1041 * Replace the inode number of an entry in a shortform directory.
1044 xfs_dir2_sf_replace(
1045 xfs_da_args_t
*args
) /* operation arguments */
1047 struct xfs_inode
*dp
= args
->dp
;
1048 struct xfs_mount
*mp
= dp
->i_mount
;
1049 int i
; /* entry index */
1050 xfs_ino_t ino
=0; /* entry old inode number */
1051 int i8elevated
; /* sf_toino8 set i8count=1 */
1052 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
1053 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
1055 trace_xfs_dir2_sf_replace(args
);
1057 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
1058 ASSERT(dp
->i_d
.di_size
>= offsetof(struct xfs_dir2_sf_hdr
, parent
));
1059 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
1060 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
1061 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1062 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
1065 * New inode number is large, and need to convert to 8-byte inodes.
1067 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->i8count
== 0) {
1068 int error
; /* error return value */
1071 * Won't fit as shortform, convert to block then do replace.
1073 if (xfs_dir2_sf_replace_needblock(dp
, args
->inumber
)) {
1074 error
= xfs_dir2_sf_to_block(args
);
1077 return xfs_dir2_block_replace(args
);
1080 * Still fits, convert to 8-byte now.
1082 xfs_dir2_sf_toino8(args
);
1084 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1088 ASSERT(args
->namelen
!= 1 || args
->name
[0] != '.');
1090 * Replace ..'s entry.
1092 if (args
->namelen
== 2 &&
1093 args
->name
[0] == '.' && args
->name
[1] == '.') {
1094 ino
= xfs_dir2_sf_get_parent_ino(sfp
);
1095 ASSERT(args
->inumber
!= ino
);
1096 xfs_dir2_sf_put_parent_ino(sfp
, args
->inumber
);
1099 * Normal entry, look for the name.
1102 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->count
;
1103 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
)) {
1104 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
1106 ino
= xfs_dir2_sf_get_ino(mp
, sfp
, sfep
);
1107 ASSERT(args
->inumber
!= ino
);
1108 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
,
1110 xfs_dir2_sf_put_ftype(mp
, sfep
, args
->filetype
);
1117 if (i
== sfp
->count
) {
1118 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
1120 xfs_dir2_sf_toino4(args
);
1125 * See if the old number was large, the new number is small.
1127 if (ino
> XFS_DIR2_MAX_SHORT_INUM
&&
1128 args
->inumber
<= XFS_DIR2_MAX_SHORT_INUM
) {
1130 * And the old count was one, so need to convert to small.
1132 if (sfp
->i8count
== 1)
1133 xfs_dir2_sf_toino4(args
);
1138 * See if the old number was small, the new number is large.
1140 if (ino
<= XFS_DIR2_MAX_SHORT_INUM
&&
1141 args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
1143 * add to the i8count unless we just converted to 8-byte
1144 * inodes (which does an implied i8count = 1)
1146 ASSERT(sfp
->i8count
!= 0);
1150 xfs_dir2_sf_check(args
);
1151 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_DDATA
);
1156 * Convert from 8-byte inode numbers to 4-byte inode numbers.
1157 * The last 8-byte inode number is gone, but the count is still 1.
1161 xfs_da_args_t
*args
) /* operation arguments */
1163 struct xfs_inode
*dp
= args
->dp
;
1164 struct xfs_mount
*mp
= dp
->i_mount
;
1165 char *buf
; /* old dir's buffer */
1166 int i
; /* entry index */
1167 int newsize
; /* new inode size */
1168 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1169 xfs_dir2_sf_hdr_t
*oldsfp
; /* old sf directory */
1170 int oldsize
; /* old inode size */
1171 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1172 xfs_dir2_sf_hdr_t
*sfp
; /* new sf directory */
1174 trace_xfs_dir2_sf_toino4(args
);
1177 * Copy the old directory to the buffer.
1178 * Then nuke it from the inode, and add the new buffer to the inode.
1179 * Don't want xfs_idata_realloc copying the data here.
1181 oldsize
= dp
->i_df
.if_bytes
;
1182 buf
= kmem_alloc(oldsize
, 0);
1183 oldsfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1184 ASSERT(oldsfp
->i8count
== 1);
1185 memcpy(buf
, oldsfp
, oldsize
);
1187 * Compute the new inode size.
1189 newsize
= oldsize
- (oldsfp
->count
+ 1) * XFS_INO64_DIFF
;
1190 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1191 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1193 * Reset our pointers, the data has moved.
1195 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
1196 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1198 * Fill in the new header.
1200 sfp
->count
= oldsfp
->count
;
1202 xfs_dir2_sf_put_parent_ino(sfp
, xfs_dir2_sf_get_parent_ino(oldsfp
));
1204 * Copy the entries field by field.
1206 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1207 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1209 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
),
1210 oldsfep
= xfs_dir2_sf_nextentry(mp
, oldsfp
, oldsfep
)) {
1211 sfep
->namelen
= oldsfep
->namelen
;
1212 memcpy(sfep
->offset
, oldsfep
->offset
, sizeof(sfep
->offset
));
1213 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1214 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
,
1215 xfs_dir2_sf_get_ino(mp
, oldsfp
, oldsfep
));
1216 xfs_dir2_sf_put_ftype(mp
, sfep
,
1217 xfs_dir2_sf_get_ftype(mp
, oldsfep
));
1220 * Clean up the inode.
1223 dp
->i_d
.di_size
= newsize
;
1224 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1228 * Convert existing entries from 4-byte inode numbers to 8-byte inode numbers.
1229 * The new entry w/ an 8-byte inode number is not there yet; we leave with
1230 * i8count set to 1, but no corresponding 8-byte entry.
1234 xfs_da_args_t
*args
) /* operation arguments */
1236 struct xfs_inode
*dp
= args
->dp
;
1237 struct xfs_mount
*mp
= dp
->i_mount
;
1238 char *buf
; /* old dir's buffer */
1239 int i
; /* entry index */
1240 int newsize
; /* new inode size */
1241 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1242 xfs_dir2_sf_hdr_t
*oldsfp
; /* old sf directory */
1243 int oldsize
; /* old inode size */
1244 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1245 xfs_dir2_sf_hdr_t
*sfp
; /* new sf directory */
1247 trace_xfs_dir2_sf_toino8(args
);
1250 * Copy the old directory to the buffer.
1251 * Then nuke it from the inode, and add the new buffer to the inode.
1252 * Don't want xfs_idata_realloc copying the data here.
1254 oldsize
= dp
->i_df
.if_bytes
;
1255 buf
= kmem_alloc(oldsize
, 0);
1256 oldsfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1257 ASSERT(oldsfp
->i8count
== 0);
1258 memcpy(buf
, oldsfp
, oldsize
);
1260 * Compute the new inode size (nb: entry count + 1 for parent)
1262 newsize
= oldsize
+ (oldsfp
->count
+ 1) * XFS_INO64_DIFF
;
1263 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1264 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1266 * Reset our pointers, the data has moved.
1268 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
1269 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1271 * Fill in the new header.
1273 sfp
->count
= oldsfp
->count
;
1275 xfs_dir2_sf_put_parent_ino(sfp
, xfs_dir2_sf_get_parent_ino(oldsfp
));
1277 * Copy the entries field by field.
1279 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1280 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1282 i
++, sfep
= xfs_dir2_sf_nextentry(mp
, sfp
, sfep
),
1283 oldsfep
= xfs_dir2_sf_nextentry(mp
, oldsfp
, oldsfep
)) {
1284 sfep
->namelen
= oldsfep
->namelen
;
1285 memcpy(sfep
->offset
, oldsfep
->offset
, sizeof(sfep
->offset
));
1286 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1287 xfs_dir2_sf_put_ino(mp
, sfp
, sfep
,
1288 xfs_dir2_sf_get_ino(mp
, oldsfp
, oldsfep
));
1289 xfs_dir2_sf_put_ftype(mp
, sfep
,
1290 xfs_dir2_sf_get_ftype(mp
, oldsfep
));
1293 * Clean up the inode.
1296 dp
->i_d
.di_size
= newsize
;
1297 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);