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

Function kcsan_copyin

freebsd/kern/subr_csan.c:359–364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357#undef copyout_nofault
358
359int
360kcsan_copyin(const void *uaddr, void *kaddr, size_t len)
361{
362 kcsan_access((uintptr_t)kaddr, len, true, false, __RET_ADDR);
363 return copyin(uaddr, kaddr, len);
364}
365
366int
367kcsan_copyinstr(const void *uaddr, void *kaddr, size_t len, size_t *done)

Callers

nothing calls this directly

Calls 2

kcsan_accessFunction · 0.85
copyinFunction · 0.50

Tested by

no test coverage detected