Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 128303
b: refs/heads/master
c: dcea791
h: refs/heads/master
i:
  128301: f5eae92
  128299: 8a92d53
  128295: 30b43bc
  128287: fc3b261
v: v3
  • Loading branch information
Chris Mason authored and David Woodhouse committed Mar 25, 2007
1 parent b768976 commit f6b3901
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 134e97313491c3a3d6bc3eca3b7c9c64408cbd08
refs/heads/master: dcea79152cfb7cf244bdd9c23f4291831ffd6adf
38 changes: 31 additions & 7 deletions trunk/fs/btrfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,34 @@ static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
return d_splice_alias(inode, dentry);
}

static void reada_leaves(struct btrfs_root *root, struct btrfs_path *path)
{
struct buffer_head *bh;
struct btrfs_node *node;
int i;
int nritems;
u64 objectid;
u64 item_objectid;
u64 blocknr;
int slot;

if (!path->nodes[1])
return;
node = btrfs_buffer_node(path->nodes[1]);
slot = path->slots[1];
objectid = btrfs_disk_key_objectid(&node->ptrs[slot].key);
nritems = btrfs_header_nritems(&node->header);
for (i = slot; i < nritems; i++) {
item_objectid = btrfs_disk_key_objectid(&node->ptrs[i].key);
if (item_objectid != objectid)
break;
blocknr = btrfs_node_blockptr(node, i);
bh = sb_getblk(root->fs_info->sb, blocknr);
ll_rw_block(READ, 1, &bh);
brelse(bh);
}

}
static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
{
struct inode *inode = filp->f_path.dentry->d_inode;
Expand All @@ -358,6 +386,7 @@ static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
goto err;
}
advance = 0;
reada_leaves(root, &path);
while(1) {
leaf = btrfs_buffer_leaf(path.nodes[0]);
nritems = btrfs_header_nritems(&leaf->header);
Expand All @@ -370,13 +399,8 @@ static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
leaf = btrfs_buffer_leaf(path.nodes[0]);
nritems = btrfs_header_nritems(&leaf->header);
slot = path.slots[0];
#if 0
page_cache_readahead(
inode->i_sb->s_bdev->bd_inode->i_mapping,
&filp->f_ra, filp,
path.nodes[0]->b_blocknr >>
(PAGE_CACHE_SHIFT - inode->i_blkbits), 1);
#endif
if (path.nodes[1] && path.slots[1] == 0)
reada_leaves(root, &path);
} else {
slot++;
path.slots[0]++;
Expand Down

0 comments on commit f6b3901

Please sign in to comment.