[BACK]Return to uvm_glue.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / uvm

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/uvm/uvm_glue.c between version 1.163.16.2 and 1.163.16.3

version 1.163.16.2, 2018/11/26 01:52:52 version 1.163.16.3, 2018/12/26 14:02:08
Line 384  void
Line 384  void
 uvm_uarea_free(vaddr_t uaddr)  uvm_uarea_free(vaddr_t uaddr)
 {  {
   
         kasan_free((void *)uaddr, USPACE);          kasan_mark((void *)uaddr, USPACE, USPACE);
         pool_cache_put(uvm_uarea_cache, (void *)uaddr);          pool_cache_put(uvm_uarea_cache, (void *)uaddr);
 }  }
   
Line 392  void
Line 392  void
 uvm_uarea_system_free(vaddr_t uaddr)  uvm_uarea_system_free(vaddr_t uaddr)
 {  {
   
         kasan_free((void *)uaddr, USPACE);          kasan_mark((void *)uaddr, USPACE, USPACE);
         pool_cache_put(uvm_uarea_system_cache, (void *)uaddr);          pool_cache_put(uvm_uarea_system_cache, (void *)uaddr);
 }  }
   

Legend:
Removed from v.1.163.16.2  
changed lines
  Added in v.1.163.16.3

CVSweb <webmaster@jp.NetBSD.org>