Release all resources related to the mount options. */
| 174 | |
| 175 | /* Release all resources related to the mount options. */ |
| 176 | void |
| 177 | vfs_freeopts(struct vfsoptlist *opts) |
| 178 | { |
| 179 | struct vfsopt *opt; |
| 180 | |
| 181 | while (!TAILQ_EMPTY(opts)) { |
| 182 | opt = TAILQ_FIRST(opts); |
| 183 | vfs_freeopt(opts, opt); |
| 184 | } |
| 185 | free(opts, M_MOUNT); |
| 186 | } |
| 187 | |
| 188 | void |
| 189 | vfs_deleteopt(struct vfsoptlist *opts, const char *name) |
no test coverage detected