* Tear down fileno bitmap */
| 303 | * Tear down fileno bitmap |
| 304 | */ |
| 305 | static void |
| 306 | mqfs_fileno_uninit(struct mqfs_info *mi) |
| 307 | { |
| 308 | struct unrhdr *up; |
| 309 | |
| 310 | up = mi->mi_unrhdr; |
| 311 | mi->mi_unrhdr = NULL; |
| 312 | delete_unrhdr(up); |
| 313 | } |
| 314 | |
| 315 | /* |
| 316 | * Allocate a file number |
no test coverage detected