2005-01-06 23:03:50

by Adrian Bunk

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

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 <[email protected]>

--- 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;


2005-01-07 21:44:12

by OGAWA Hirofumi

[permalink] [raw]
Subject: Re: [2.6 patch] fs/fat/cache.c: make __fat_access static

Adrian Bunk <[email protected]> writes:

> 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 <[email protected]>

Thanks. applied.
--
OGAWA Hirofumi <[email protected]>