#ifndef FILE_SYSTEM_INSTANCE_H
#define FILE_SYSTEM_INSTANCE_H
struct file_system_instance_struct;
struct file_system_struct;
struct file_struct;
struct device_struct;
int file_system_instance_init(struct file_system_instance_struct *file_system_instance, const struct file_system_struct *file_system, const char *device_path, struct device_struct *device, const struct file_struct *mount_point);
void file_system_instance_destroy(struct file_system_instance_struct *file_system_instance);
void file_system_instance_hold(struct file_system_instance_struct *file_system_instance);
void file_system_instance_release(struct file_system_instance_struct *file_system_instance);
int file_system_instance_is_busy(const struct file_system_instance_struct *file_system_instance);
int print_mounts(char *buf, unsigned int size);
#endif