ARGSUSED */
| 1387 | #endif |
| 1388 | /* ARGSUSED */ |
| 1389 | int |
| 1390 | sys_unmount(struct thread *td, struct unmount_args *uap) |
| 1391 | { |
| 1392 | |
| 1393 | return (kern_unmount(td, uap->path, uap->flags)); |
| 1394 | } |
| 1395 | |
| 1396 | int |
| 1397 | kern_unmount(struct thread *td, const char *path, int flags) |
nothing calls this directly
no test coverage detected