]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[PATCH] ext3: sparse fixes
authorBen Dooks <ben@fluff.org.uk>
Sun, 30 Oct 2005 23:02:56 +0000 (15:02 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 31 Oct 2005 01:37:25 +0000 (17:37 -0800)
commit381be25458524f9bcec5bf1e40c82d1ebb408475
treedc6ea4d6cf0ef93b8cb5103d53caea6333b129cc
parent1a80ba88273097933f93b1f40537337416798c70
[PATCH] ext3: sparse fixes

Fix warnings from sparse due to un-declared functions that should either
have a header file or have been declared static

 fs/ext2/bitmap.c:14:15: warning: symbol 'ext2_count_free' was not declared. Should it be static?
 fs/ext2/namei.c:92:15: warning: symbol 'ext2_get_parent' was not declared. Should it be static?
 fs/ext3/bitmap.c:15:15: warning: symbol 'ext3_count_free' was not declared. Should it be static?
 fs/ext3/namei.c:1013:15: warning: symbol 'ext3_get_parent' was not declared. Should it be static?
 fs/ext3/xattr.c:214:1: warning: symbol 'ext3_xattr_block_get' was not declared. Should it be static?
 fs/ext3/xattr.c:358:1: warning: symbol 'ext3_xattr_block_list' was not declared. Should it be static?
 fs/ext3/xattr.c:630:1: warning: symbol 'ext3_xattr_block_find' was not declared. Should it be static?
 fs/ext3/xattr.c:863:1: warning: symbol 'ext3_xattr_ibody_find' was not declared. Should it be static?

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/ext3/balloc.c
fs/ext3/bitmap.c
fs/ext3/bitmap.h [new file with mode: 0644]
fs/ext3/ialloc.c
fs/ext3/namei.c
fs/ext3/namei.h [new file with mode: 0644]
fs/ext3/super.c
fs/ext3/xattr.c