MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vop_nostrategy

Function vop_nostrategy

freebsd/kern/vfs_default.c:277–286  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275 */
276
277static int
278vop_nostrategy (struct vop_strategy_args *ap)
279{
280 printf("No strategy for buffer at %p\n", ap->a_bp);
281 vn_printf(ap->a_vp, "vnode ");
282 ap->a_bp->b_ioflags |= BIO_ERROR;
283 ap->a_bp->b_error = EOPNOTSUPP;
284 bufdone(ap->a_bp);
285 return (EOPNOTSUPP);
286}
287
288static int
289get_next_dirent(struct vnode *vp, struct dirent **dpp, char *dirbuf,

Callers

nothing calls this directly

Calls 3

vn_printfFunction · 0.85
bufdoneFunction · 0.85
printfFunction · 0.70

Tested by

no test coverage detected