| 73 | } |
| 74 | |
| 75 | static int seq_show(struct dfs_seq_file *seq, void *data) |
| 76 | { |
| 77 | /* data: The return value of the start or next*/ |
| 78 | dfs_mnt_foreach(mnt_show, seq); |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | static const struct dfs_seq_ops seq_ops = { |
| 84 | .start = seq_start, |
nothing calls this directly
no test coverage detected