Commit 02f42903 authored by Andries E. Brouwer's avatar Andries E. Brouwer Committed by Linus Torvalds

[PATCH] fat: add static

In the long sequence of static additions, here some fat ones.
parent b4c22221
......@@ -146,7 +146,8 @@ void fat_cache_init(struct super_block *sb)
sbi->cache = sbi->cache_array;
}
void fat_cache_lookup(struct inode *inode, int cluster, int *f_clu, int *d_clu)
static void
fat_cache_lookup(struct inode *inode, int cluster, int *f_clu, int *d_clu)
{
struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
struct fat_cache *walk;
......
......@@ -59,7 +59,7 @@ static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
#define FAT_HASH_SIZE (1UL << FAT_HASH_BITS)
#define FAT_HASH_MASK (FAT_HASH_SIZE-1)
static struct list_head fat_inode_hashtable[FAT_HASH_SIZE];
spinlock_t fat_inode_lock = SPIN_LOCK_UNLOCKED;
static spinlock_t fat_inode_lock = SPIN_LOCK_UNLOCKED;
void fat_hash_init(void)
{
......@@ -579,12 +579,11 @@ static int fat_read_root(struct inode *inode)
* of i_logstart is used to store the directory entry offset.
*/
struct dentry *fat_decode_fh(struct super_block *sb, __u32 *fh,
int len, int fhtype,
int (*acceptable)(void *context, struct dentry *de),
void *context)
static struct dentry *
fat_decode_fh(struct super_block *sb, __u32 *fh, int len, int fhtype,
int (*acceptable)(void *context, struct dentry *de),
void *context)
{
if (fhtype != 3)
return ERR_PTR(-ESTALE);
if (len < 5)
......@@ -593,7 +592,7 @@ struct dentry *fat_decode_fh(struct super_block *sb, __u32 *fh,
return sb->s_export_op->find_exported_dentry(sb, fh, NULL, acceptable, context);
}
struct dentry *fat_get_dentry(struct super_block *sb, void *inump)
static struct dentry *fat_get_dentry(struct super_block *sb, void *inump)
{
struct inode *inode = NULL;
struct dentry *result;
......@@ -653,7 +652,8 @@ struct dentry *fat_get_dentry(struct super_block *sb, void *inump)
return result;
}
int fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
static int
fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
{
int len = *lenp;
struct inode *inode = de->d_inode;
......@@ -676,7 +676,7 @@ int fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
return 3;
}
struct dentry *fat_get_parent(struct dentry *child)
static struct dentry *fat_get_parent(struct dentry *child)
{
struct buffer_head *bh=NULL;
struct msdos_dir_entry *de = NULL;
......
......@@ -233,8 +233,6 @@ extern int fat_access(struct super_block *sb, int nr, int new_value);
extern int __fat_access(struct super_block *sb, int nr, int new_value);
extern int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys);
extern void fat_cache_init(struct super_block *sb);
extern void fat_cache_lookup(struct inode *inode, int cluster, int *f_clu,
int *d_clu);
extern void fat_cache_add(struct inode *inode, int f_clu, int d_clu);
extern void fat_cache_inval_inode(struct inode *inode);
extern int fat_get_cluster(struct inode *inode, int cluster,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment