root/fs/msdos/msdosfs_syms.c

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

DEFINITIONS

This source file includes following definitions.
  1. init_msdos_fs

   1 #include <linux/module.h>
   2 
   3 #include <linux/msdos_fs.h>
   4 
   5 static struct symbol_table msdos_syms = {
   6 #include <linux/symtab_begin.h>
   7         /*
   8          * Support for umsdos fs
   9          *
  10          * These symbols are _always_ exported, in case someone
  11          * wants to install the umsdos module later.
  12          */
  13         X(msdos_create),
  14         X(msdos_lookup),
  15         X(msdos_mkdir),
  16         X(msdos_read_inode),
  17         X(msdos_rename),
  18         X(msdos_rmdir),
  19         X(msdos_unlink),
  20         X(msdos_unlink_umsdos),
  21 #include <linux/symtab_end.h>
  22 };                                           
  23 
  24 struct file_system_type msdos_fs_type = {
  25         msdos_read_super, "msdos", 1, NULL
  26 };
  27 
  28 
  29 int init_msdos_fs(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  30 {
  31         int status;
  32 
  33         if ((status = register_filesystem(&msdos_fs_type)) == 0)
  34                 status = register_symtab(&msdos_syms);
  35         return status;
  36 }
  37 

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