[2.6 patch] fs/fat/cache.c: make __fat_access static

From: Adrian Bunk
Date: Thu Jan 06 2005 - 18:13:40 EST


The patch below makes a needlessly global function static.


diffstat output:
fs/fat/cache.c | 2 +-
include/linux/msdos_fs.h | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- linux-2.6.10-mm2-full/include/linux/msdos_fs.h.old 2005-01-06 23:35:38.000000000 +0100
+++ linux-2.6.10-mm2-full/include/linux/msdos_fs.h 2005-01-06 23:35:44.000000000 +0100
@@ -230,7 +230,6 @@

/* fat/cache.c */
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_inval_inode(struct inode *inode);
extern int fat_get_cluster(struct inode *inode, int cluster,
--- linux-2.6.10-mm2-full/fs/fat/cache.c.old 2005-01-06 23:35:59.000000000 +0100
+++ linux-2.6.10-mm2-full/fs/fat/cache.c 2005-01-06 23:36:04.000000000 +0100
@@ -203,7 +203,7 @@
spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
}

-int __fat_access(struct super_block *sb, int nr, int new_value)
+static int __fat_access(struct super_block *sb, int nr, int new_value)
{
struct msdos_sb_info *sbi = MSDOS_SB(sb);
struct buffer_head *bh, *bh2, *c_bh, *c_bh2;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/