summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-02-26 16:40:21 +0100
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-02-26 16:40:21 +0100
commitfec577fb7f516e0d12ff821b1af272fd754e120a (patch)
treef98b8adbf462cb3a146bcc3ec29e76beba5178ce /fs/btrfs/ctree.c
parentBtrfs: cleanup & comment (diff)
downloadlinux-fec577fb7f516e0d12ff821b1af272fd754e120a.tar.xz
linux-fec577fb7f516e0d12ff821b1af272fd754e120a.zip
Btrfs: Add fsx-style randomized tree tester
Add debug-tree command to print the tree Add extent-tree.c to the repo Comment ctree.h Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/ctree.c')
-rw-r--r--fs/btrfs/ctree.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 7645ab3259ea..25dc7b2f7426 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -1047,14 +1047,14 @@ int next_leaf(struct ctree_root *root, struct ctree_path *path)
return 0;
}
+/* some sample code to insert,search & delete items */
+#if 0
/* for testing only */
int next_key(int i, int max_key) {
return rand() % max_key;
//return i;
}
-
int main() {
- struct ctree_root *root;
struct key ins;
struct key last = { (u64)-1, 0, 0};
char *buf;
@@ -1066,6 +1066,7 @@ int main() {
int tree_size = 0;
struct ctree_path path;
struct ctree_super_block super;
+ struct ctree_root *root;
radix_tree_init();
@@ -1207,3 +1208,4 @@ int main() {
close_ctree(root);
return 0;
}
+#endif