Displaying 4 results from an estimated 4 matches for "xfs_dir2_leaf_find_entry".
2012 Nov 27
0
Syslinux-5.00-pre11
...s() back to ext2_fat_install_file().
Fix the calculation of the block of the root of the inode B+tree.
Add support for 64-bit filesystem compatible struct inode.
xfs: rework the logic of xfs_get_ino_core()
xfs: Implement dir2_block_find_entry() function.
xfs: Implement xfs_dir2_leaf_find_entry() logic.
xfs: get_dirblks() with count.
xfs: rework xfs_dir2_node_find_entry()
xfs: Add xfs_fmt_btree_find_entry()
xfs: Add full B+tree search support in xfs_dir2_node_find_entry()
xfs: cleanup unused structure
xfs: Rework xfs_dir2_get_right_blk()
xfs: Add...
2015 Jul 18
1
[PATCH 1/2] xfs: rename xfs_is_valid_magicnum to xfs_is_valid_sb
xfs_is_valid_magicnum is not actually a generic function that checks for
magic numbers, instead it checks only for superblock's one.
Signed-off-by: Paulo Alcantara <pcacjr at zytor.com>
---
core/fs/xfs/xfs.c | 13 +++++--------
core/fs/xfs/xfs.h | 19 ++++++++++---------
2 files changed, 15 insertions(+), 17 deletions(-)
diff --git a/core/fs/xfs/xfs.c b/core/fs/xfs/xfs.c
index
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...nd_entry(const char *dname, struct inode *parent,
goto found;
}
- p += xfs_dir2_data_entsize(dep->namelen);
+ p += (isdir3 ? xfs_dir3_data_entsize(dep->namelen) :
+ xfs_dir2_data_entsize(dep->namelen));
}
out:
@@ -348,7 +368,9 @@ failed:
struct inode *xfs_dir2_leaf_find_entry(const char *dname, struct inode *parent,
xfs_dinode_t *core)
{
- xfs_dir2_leaf_t *leaf;
+ xfs_dir2_leaf_hdr_t *hdr;
+ xfs_dir2_leaf_entry_t *ents;
+ uint16_t count;
xfs_bmbt_irec_t irec;
block_t leaf_blk, dir_blk;
xfs_dir2_leaf_entry_t *lep;
@@ -358,37 +380,4...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...s() back to ext2_fat_install_file().
Fix the calculation of the block of the root of the inode B+tree.
Add support for 64-bit filesystem compatible struct inode.
xfs: rework the logic of xfs_get_ino_core()
xfs: Implement dir2_block_find_entry() function.
xfs: Implement xfs_dir2_leaf_find_entry() logic.
xfs: get_dirblks() with count.
xfs: rework xfs_dir2_node_find_entry()
xfs: Add xfs_fmt_btree_find_entry()
xfs: Add full B+tree search support in xfs_dir2_node_find_entry()
xfs: cleanup unused structure
xfs: Rework xfs_dir2_get_right_blk()
xfs: Add...