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_date_unix2dos),
26 X(fat_dir_operations),
27 X(fat_file_read),
28 X(fat_file_write),
29 X(fat_fs_panic),
30 X(fat_get_entry),
31 X(fat_lock_creation),
32 X(fat_mark_buffer_dirty),
33 X(fat_mmap),
34 X(fat_notify_change),
35 X(fat_parent_ino),
36 X(fat_put_inode),
37 X(fat_put_super),
38 X(fat_read_inode),
39 X(fat_read_super),
40 X(fat_readdir),
41 X(fat_scan),
42 X(fat_smap),
43 X(fat_statfs),
44 X(fat_truncate),
45 X(fat_uni2asc_pg),
46 X(fat_unlock_creation),
47 X(fat_write_inode),
48 #include <linux/symtab_end.h>
49 };
50
51 int init_fat_fs(void)
52 {
53 return register_symtab(&fat_syms);
54 }
55