diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-07-07 00:37:43 +0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-07-07 03:02:10 +0400 |
commit | 90a18fab4ae07b77bf053b75a4d1285cd94faa79 (patch) | |
tree | 1bc94232b58b51c38fa40c36d7797d3eb08573a0 /fs/jffs2/nodelist.c | |
parent | 220b0f5755f86745e4e16d001fe6f46b448565fa (diff) | |
download | linux-90a18fab4ae07b77bf053b75a4d1285cd94faa79.tar.xz |
make fs/jffs2/nodelist.c:jffs2_obsolete_node_frag() static
This patch makes the needlessly global jffs2_obsolete_node_frag()
static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/nodelist.c')
-rw-r--r-- | fs/jffs2/nodelist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/jffs2/nodelist.c b/fs/jffs2/nodelist.c index 7675b33396c7..5a6b4d64206c 100644 --- a/fs/jffs2/nodelist.c +++ b/fs/jffs2/nodelist.c @@ -21,6 +21,9 @@ #include <linux/pagemap.h> #include "nodelist.h" +static void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, + struct jffs2_node_frag *this); + void jffs2_add_fd_to_list(struct jffs2_sb_info *c, struct jffs2_full_dirent *new, struct jffs2_full_dirent **list) { struct jffs2_full_dirent **prev = list; @@ -87,7 +90,8 @@ void jffs2_truncate_fragtree(struct jffs2_sb_info *c, struct rb_root *list, uint } } -void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, struct jffs2_node_frag *this) +static void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, + struct jffs2_node_frag *this) { if (this->node) { this->node->frags--; |