summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorYan2007-09-17 17:08:52 +0200
committerChris Mason2008-09-25 17:03:56 +0200
commit23223584e44cb1b0b69ba3a9ad74956f292a416b (patch)
tree2e12b35b18ed456ec83f4886cb351b05d55c1d37 /fs
parentfix found_type decrement in btrfs_truncate_in_trans (diff)
downloadkernel-qcow2-linux-23223584e44cb1b0b69ba3a9ad74956f292a416b.tar.gz
kernel-qcow2-linux-23223584e44cb1b0b69ba3a9ad74956f292a416b.tar.xz
kernel-qcow2-linux-23223584e44cb1b0b69ba3a9ad74956f292a416b.zip
create btrfs_path slab with the correct size
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 211ca32c65c5..192fdda0d56e 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -2127,7 +2127,7 @@ int btrfs_init_cachep(void)
if (!btrfs_transaction_cachep)
goto fail;
btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
- sizeof(struct btrfs_transaction),
+ sizeof(struct btrfs_path),
0, NULL);
if (!btrfs_path_cachep)
goto fail;