This source file includes following definitions.
- init_fat_fs
1
2
3
4
5
6
7 #include <linux/module.h>
8
9 #include <linux/mm.h>
10 #include <linux/msdos_fs.h>
11
12 #include "msbuffer.h"
13 #include "tables.h"
14
15 extern struct file_operations fat_dir_operations;
16
17 static struct symbol_table fat_syms = {
18 #include <linux/symtab_begin.h>
19 X(fat_a2alias),
20 X(fat_a2uni),
21 X(fat_add_cluster),
22 X(fat_bmap),
23 X(fat_brelse),
24 X(fat_cache_inval_inode),
25 X(fat_code2uni),
26 X(fat_date_unix2dos),
27 X(fat_dir_operations),
28 X(fat_file_read),
29 X(fat_file_write),
30 X(fat_fs_panic),
31 X(fat_get_entry),
32 X(fat_lock_creation),
33 X(fat_mark_buffer_dirty),
34 X(fat_mmap),
35 X(fat_notify_change),
36 X(fat_parent_ino),
37 X(fat_put_inode),
38 X(fat_put_super),
39 X(fat_read_inode),
40 X(fat_read_super),
41 X(fat_readdirx),
42 X(fat_readdir),
43 X(fat_scan),
44 X(fat_smap),
45 X(fat_statfs),
46 X(fat_truncate),
47 X(fat_uni2asc_pg),
48 X(fat_uni2code),
49 X(fat_unlock_creation),
50 X(fat_write_inode),
51 #include <linux/symtab_end.h>
52 };
53
54 int init_fat_fs(void)
55 {
56 return register_symtab(&fat_syms);
57 }
58