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

Function kcsan_copyinstr

freebsd/kern/subr_csan.c:366–371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

364}
365
366int
367kcsan_copyinstr(const void *uaddr, void *kaddr, size_t len, size_t *done)
368{
369 kcsan_access((uintptr_t)kaddr, len, true, false, __RET_ADDR);
370 return copyinstr(uaddr, kaddr, len, done);
371}
372
373int
374kcsan_copyout(const void *kaddr, void *uaddr, size_t len)

Callers

nothing calls this directly

Calls 2

kcsan_accessFunction · 0.85
copyinstrFunction · 0.50

Tested by

no test coverage detected