1. NAME

iterate_supers_type - call function for superblocks of given type

2. SYNOPSIS

void iterate_supers_type(struct file_system_type *  type , void (* f ) (struct super_block *, void *), void *  arg );

3. ARGUMENTS

type
    fs type

f
    function to call

arg
    argument to pass to it

4. DESCRIPTION

Scans the superblock list and calls given function, passing it locked superblock and given argument.

5. COPYRIGHT