X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;f=listati%2Ffile_system_type.h;fp=listati%2Ffile_system_type.h;h=4f4ceb90987b976ffd0bfafcfe9e4e05b67558f7;hb=94b4d603807121b40eef06d22d2b6cd6e06ec7fd;hp=0000000000000000000000000000000000000000;hpb=2414addb7861eb72315a3de58b6f2cb5c83ab6ed;p=gapil.git diff --git a/listati/file_system_type.h b/listati/file_system_type.h new file mode 100644 index 0000000..4f4ceb9 --- /dev/null +++ b/listati/file_system_type.h @@ -0,0 +1,15 @@ +struct file_system_type { + const char *name; + int fs_flags; + int (*get_sb) (struct file_system_type *, int, + const char *, void *, struct vfsmount *); + struct dentry *(*mount) (struct file_system_type *, int, + const char *, void *); + void (*kill_sb) (struct super_block *); + struct module *owner; + struct file_system_type * next; + struct list_head fs_supers; + + struct lock_class_key s_lock_key; + ... +};