File: msdosfs_syms.c

package info (click to toggle)
kernel-source-2.0.32 2.0.32-5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 29,648 kB
  • ctags: 86,850
  • sloc: ansic: 542,141; asm: 26,201; makefile: 3,423; sh: 1,195; perl: 727; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (47 lines) | stat: -rw-r--r-- 964 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * linux/fs/msdos/msdosfs_syms.c
 *
 * Exported kernel symbols for the MS-DOS filesystem.
 * These symbols are used by umsdos.
 */

#include <linux/module.h>

#include <linux/mm.h>
#include <linux/msdos_fs.h>

static struct symbol_table msdos_syms = {
#include <linux/symtab_begin.h>
	/*
	 * Support for umsdos fs
	 *
	 * These symbols are _always_ exported, in case someone
	 * wants to install the umsdos module later.
	 */
  	X(msdos_create),
  	X(msdos_lookup),
  	X(msdos_mkdir),
  	X(msdos_read_inode),
  	X(msdos_rename),
  	X(msdos_rmdir),
  	X(msdos_unlink),
  	X(msdos_unlink_umsdos),
  	X(msdos_read_super),
  	X(msdos_put_super), 
#include <linux/symtab_end.h>
};                                           

struct file_system_type msdos_fs_type = {
	msdos_read_super, "msdos", 1, NULL
};


int init_msdos_fs(void)
{
	int status;

	if ((status = register_filesystem(&msdos_fs_type)) == 0)
		status = register_symtab(&msdos_syms);
	return status;
}