| 332 | #define no_mmap_single (d_mmap_single_t *)enodev |
| 333 | |
| 334 | static void |
| 335 | no_strategy(struct bio *bp) |
| 336 | { |
| 337 | |
| 338 | biofinish(bp, NULL, ENODEV); |
| 339 | } |
| 340 | |
| 341 | static int |
| 342 | no_poll(struct cdev *dev __unused, int events, struct thread *td __unused) |
nothing calls this directly
no test coverage detected