| 1273 | } |
| 1274 | |
| 1275 | int |
| 1276 | freebsd11_mknodat(struct thread *td, |
| 1277 | struct freebsd11_mknodat_args *uap) |
| 1278 | { |
| 1279 | |
| 1280 | return (kern_mknodat(td, uap->fd, uap->path, UIO_USERSPACE, uap->mode, |
| 1281 | uap->dev)); |
| 1282 | } |
| 1283 | #endif /* COMPAT_FREEBSD11 */ |
| 1284 | |
| 1285 | int |
nothing calls this directly
no test coverage detected