1ITERATE_SUPERS_TYPE(9) The Linux VFS ITERATE_SUPERS_TYPE(9)
2
3
4
6 iterate_supers_type - call function for superblocks of given type
7
9 void iterate_supers_type(struct file_system_type * type,
10 void (*f) (struct super_block *, void *),
11 void * arg);
12
14 type
15 fs type
16
17 f
18 function to call
19
20 arg
21 argument to pass to it
22
24 Scans the superblock list and calls given function, passing it locked
25 superblock and given argument.
26
28Kernel Hackers Manual 3.10 June 2019 ITERATE_SUPERS_TYPE(9)