[2.6 patch] fs/jffs2/: make 2 functions static
Adrian Bunk <[email protected]> Wed, 28 Jun 2006 18:54:55 +0200
| Newsgroups | gmane.linux.kernel,gmane.linux.file-systems.jffs |
|---|---|
| Message-ID | <[email protected]> |
This patch makes two needlessly global functions static. Signed-off-by: Adrian Bunk <[email protected]> --- This patch was already sent on: - 22 Jun 2006 fs/jffs2/malloc.c | 2 +- fs/jffs2/nodelist.h | 2 -- fs/jffs2/scan.c | 4 ++-- 3 files changed, 3 insertions(+), 5 deletions(-) --- linux-2.6.17-mm1-full/fs/jffs2/malloc.c.old 2006-06-22 11:31:15.000000000 +0200 +++ linux-2.6.17-mm1-full/fs/jffs2/malloc.c 2006-06-22 11:31:23.000000000 +0200 @@ -190,7 +190,7 @@ kmem_cache_free(tmp_dnode_info_slab, x); } -struct jffs2_raw_node_ref *jffs2_alloc_refblock(void) +static struct jffs2_raw_node_ref *jffs2_alloc_refblock(void) { struct jffs2_raw_node_ref *ret; --- linux-2.6.17-mm1-full/fs/jffs2/nodelist.h.old 2006-06-22 11:31:31.000000000 +0200 +++ linux-2.6.17-mm1-full/fs/jffs2/nodelist.h 2006-06-22 11:31:38.000000000 +0200 @@ -427,8 +427,6 @@ /* scan.c */ int jffs2_scan_medium(struct jffs2_sb_info *c); void jffs2_rotate_lists(struct jffs2_sb_info *c); -int jffs2_fill_scan_buf(struct jffs2_sb_info *c, void *buf, - uint32_t ofs, uint32_t len); struct jffs2_inode_cache *jffs2_scan_make_ino_cache(struct jffs2_sb_info *c, uint32_t ino); int jffs2_scan_classify_jeb(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb); int jffs2_scan_dirty_space(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t size); --- linux-2.6.17-mm1-full/fs/jffs2/scan.c.old 2006-06-22 11:31:47.000000000 +0200 +++ linux-2.6.17-mm1-full/fs/jffs2/scan.c 2006-06-22 11:32:11.000000000 +0200 @@ -274,8 +274,8 @@ return ret; } -int jffs2_fill_scan_buf (struct jffs2_sb_info *c, void *buf, - uint32_t ofs, uint32_t len) +static int jffs2_fill_scan_buf(struct jffs2_sb_info *c, void *buf, + uint32_t ofs, uint32_t len) { int ret; size_t retlen;