Outline instrumentation

configname: CONFIG_KASAN_OUTLINE

Instrumentation type
└─>Outline instrumentation
In linux kernel since version 3.10 (release Date: 2013-06-30)  
Before every memory access compiler insert function call
__asan_load*/__asan_store*. These functions performs check
of shadow memory. This is slower than inline instrumentation,
however it doesn't bloat size of kernel's .text section so
much as inline does.