/* -*- c-basic-offset: 4 -*- */
#ifndef PROCLIKEFS_H
#define PROCLIKEFS_H
#ifdef __cplusplus
extern "C" {
#endif
#include <linux/fs.h>
#include <linux/list.h>
#include <linux/version.h>
struct proclikefs_file_system;
struct proclikefs_file_system *proclikefs_register_filesystem
(const char *name, int fs_flags,
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
struct super_block *(*get_sb) (struct file_system_type *, int, const char *, void *)
#else
struct super_block *(*read_super) (struct super_block *, void *, int)
#endif
);
void proclikefs_reinitialize_supers(struct proclikefs_file_system *,
void (*reread_super) (struct super_block *));
void proclikefs_unregister_filesystem(struct proclikefs_file_system *);
void proclikefs_read_super(struct super_block *);
void proclikefs_put_super(struct super_block *);
struct file_operations *proclikefs_new_file_operations(struct proclikefs_file_system *);
struct inode_operations *proclikefs_new_inode_operations(struct proclikefs_file_system *);
#ifdef __cplusplus
}
#endif
#endif
syntax highlighted by Code2HTML, v. 0.9.1