1. NAME

unregister_filesystem - unregister a file system

2. SYNOPSIS

int unregister_filesystem(struct file_system_type *  fs );

3. ARGUMENTS

fs
    filesystem to unregister

4. DESCRIPTION

Remove a file system that was previously successfully registered with the kernel. An error is returned if the file system is not found. Zero is returned on a success.

Once this function has returned the struct file_system_type structure may be freed or reused.

5. COPYRIGHT