aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fat/inode.c')
-rw-r--r--fs/fat/inode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index f502c6b8cb49..932c8d6d1f54 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -197,7 +197,7 @@ void fat_attach(struct inode *inode, loff_t i_pos)
197 spin_unlock(&sbi->inode_hash_lock); 197 spin_unlock(&sbi->inode_hash_lock);
198} 198}
199 199
200EXPORT_SYMBOL(fat_attach); 200EXPORT_SYMBOL_GPL(fat_attach);
201 201
202void fat_detach(struct inode *inode) 202void fat_detach(struct inode *inode)
203{ 203{
@@ -208,7 +208,7 @@ void fat_detach(struct inode *inode)
208 spin_unlock(&sbi->inode_hash_lock); 208 spin_unlock(&sbi->inode_hash_lock);
209} 209}
210 210
211EXPORT_SYMBOL(fat_detach); 211EXPORT_SYMBOL_GPL(fat_detach);
212 212
213struct inode *fat_iget(struct super_block *sb, loff_t i_pos) 213struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
214{ 214{
@@ -362,7 +362,7 @@ out:
362 return inode; 362 return inode;
363} 363}
364 364
365EXPORT_SYMBOL(fat_build_inode); 365EXPORT_SYMBOL_GPL(fat_build_inode);
366 366
367static void fat_delete_inode(struct inode *inode) 367static void fat_delete_inode(struct inode *inode)
368{ 368{
@@ -557,7 +557,7 @@ int fat_sync_inode(struct inode *inode)
557 return fat_write_inode(inode, 1); 557 return fat_write_inode(inode, 1);
558} 558}
559 559
560EXPORT_SYMBOL(fat_sync_inode); 560EXPORT_SYMBOL_GPL(fat_sync_inode);
561 561
562static int fat_show_options(struct seq_file *m, struct vfsmount *mnt); 562static int fat_show_options(struct seq_file *m, struct vfsmount *mnt);
563static struct super_operations fat_sops = { 563static struct super_operations fat_sops = {
@@ -1368,7 +1368,7 @@ out_fail:
1368 return error; 1368 return error;
1369} 1369}
1370 1370
1371EXPORT_SYMBOL(fat_fill_super); 1371EXPORT_SYMBOL_GPL(fat_fill_super);
1372 1372
1373int __init fat_cache_init(void); 1373int __init fat_cache_init(void);
1374void fat_cache_destroy(void); 1374void fat_cache_destroy(void);