This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / fs / hfsplus / brec.c
index 0ccef2a..f5df0a3 100644 (file)
 #include "hfsplus_fs.h"
 #include "hfsplus_raw.h"
 
-static struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd);
-static int hfs_brec_update_parent(struct hfs_find_data *fd);
-static int hfs_btree_inc_height(struct hfs_btree *);
-
 /* Get the length and offset of the given record in the given node */
 u16 hfs_brec_lenoff(struct hfs_bnode *node, u16 rec, u16 *off)
 {
@@ -213,7 +209,7 @@ skip:
        return 0;
 }
 
-static struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd)
+struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd)
 {
        struct hfs_btree *tree;
        struct hfs_bnode *node, *new_node;
@@ -322,7 +318,7 @@ static struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd)
        return new_node;
 }
 
-static int hfs_brec_update_parent(struct hfs_find_data *fd)
+int hfs_brec_update_parent(struct hfs_find_data *fd)
 {
        struct hfs_btree *tree;
        struct hfs_bnode *node, *new_node, *parent;
@@ -418,7 +414,7 @@ out:
        return 0;
 }
 
-static int hfs_btree_inc_height(struct hfs_btree *tree)
+int hfs_btree_inc_height(struct hfs_btree *tree)
 {
        struct hfs_bnode *node, *new_node;
        struct hfs_bnode_desc node_desc;