| 1298 | }; |
| 1299 | |
| 1300 | void |
| 1301 | clone_setup(struct clonedevs **cdp) |
| 1302 | { |
| 1303 | |
| 1304 | *cdp = malloc(sizeof **cdp, M_DEVBUF, M_WAITOK | M_ZERO); |
| 1305 | LIST_INIT(&(*cdp)->head); |
| 1306 | } |
| 1307 | |
| 1308 | int |
| 1309 | clone_create(struct clonedevs **cdp, struct cdevsw *csw, int *up, |
no test coverage detected