mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
nilfs2: eliminate sparse warnings - "symbol not declared"
change nilfs_dat_commit_free and nilfs_inode_cachep static to fix following warnings fs/nilfs2/super.c:72:19: warning: symbol 'nilfs_inode_cachep' was not declared. Should it be static? fs/nilfs2/dat.c:106:6: warning: symbol 'nilfs_dat_commit_free' was not declared. Should it be static? Signed-off-by: Jiro SEKIBA <jir@unicus.jp> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
This commit is contained in:
parent
026a7d63d5
commit
abc0b50b6b
@ -103,7 +103,8 @@ void nilfs_dat_abort_alloc(struct inode *dat, struct nilfs_palloc_req *req)
|
|||||||
nilfs_palloc_abort_alloc_entry(dat, req);
|
nilfs_palloc_abort_alloc_entry(dat, req);
|
||||||
}
|
}
|
||||||
|
|
||||||
void nilfs_dat_commit_free(struct inode *dat, struct nilfs_palloc_req *req)
|
static void nilfs_dat_commit_free(struct inode *dat,
|
||||||
|
struct nilfs_palloc_req *req)
|
||||||
{
|
{
|
||||||
struct nilfs_dat_entry *entry;
|
struct nilfs_dat_entry *entry;
|
||||||
void *kaddr;
|
void *kaddr;
|
||||||
|
@ -68,7 +68,7 @@ MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem "
|
|||||||
"(NILFS)");
|
"(NILFS)");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
struct kmem_cache *nilfs_inode_cachep;
|
static struct kmem_cache *nilfs_inode_cachep;
|
||||||
struct kmem_cache *nilfs_transaction_cachep;
|
struct kmem_cache *nilfs_transaction_cachep;
|
||||||
struct kmem_cache *nilfs_segbuf_cachep;
|
struct kmem_cache *nilfs_segbuf_cachep;
|
||||||
struct kmem_cache *nilfs_btree_path_cache;
|
struct kmem_cache *nilfs_btree_path_cache;
|
||||||
|
Loading…
Reference in New Issue
Block a user