root/fs/fat/fatfs_syms.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. init_fat_fs

   1 /*
   2  * linux/fs/fat/fatfs_syms.c
   3  *
   4  * Exported kernel symbols for the low-level FAT-based fs support.
   5  *
   6  */
   7 #include <linux/module.h>
   8 
   9 #include <linux/msdos_fs.h>
  10 
  11 #include "msbuffer.h"
  12 #include "tables.h"
  13 
  14 extern struct file_operations fat_dir_operations;
  15 
  16 static struct symbol_table fat_syms = {
  17 #include <linux/symtab_begin.h>
  18         X(fat_a2alias),
  19         X(fat_a2uni),
  20         X(fat_add_cluster),
  21         X(fat_bmap),
  22         X(fat_brelse),
  23         X(fat_cache_inval_inode),
  24         X(fat_date_unix2dos),
  25         X(fat_dir_operations),
  26         X(fat_file_read),
  27         X(fat_file_write),
  28         X(fat_fs_panic),
  29         X(fat_get_entry),
  30         X(fat_lock_creation),
  31         X(fat_mark_buffer_dirty),
  32         X(fat_mmap),
  33         X(fat_notify_change),
  34         X(fat_parent_ino),
  35         X(fat_put_inode),
  36         X(fat_put_super),
  37         X(fat_read_inode),
  38         X(fat_read_super),
  39         X(fat_readdir),
  40         X(fat_scan),
  41         X(fat_smap),
  42         X(fat_statfs),
  43         X(fat_truncate),
  44         X(fat_uni2asc_pg),
  45         X(fat_unlock_creation),
  46         X(fat_write_inode),
  47 #include <linux/symtab_end.h>
  48 };                                           
  49 
  50 int init_fat_fs(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  51 {
  52         return register_symtab(&fat_syms);
  53 }
  54 

/* [previous][next][first][last][top][bottom][index][help] */