[BACK]Return to arm32_kvminit.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / arm / arm32

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

Diff for /src/sys/arch/arm/arm32/arm32_kvminit.c between version 1.22.2.3 and 1.22.2.4

version 1.22.2.3, 2014/03/24 07:37:39 version 1.22.2.4, 2015/08/13 00:07:15
Line 773  arm32_kernel_vm_init(vaddr_t kernel_vm_b
Line 773  arm32_kernel_vm_init(vaddr_t kernel_vm_b
                 }                  }
         }          }
   
           // The amount we can direct is limited by the start of the
           // virtual part of the kernel address space.  Don't overrun
           // into it.
           if (mapallmem_p && cur_pv.pv_va + cur_pv.pv_size > kernel_vm_base) {
                   cur_pv.pv_size = kernel_vm_base - cur_pv.pv_va;
           }
   
   
         /*          /*
          * Now we map the final chunk.           * Now we map the final chunk.
          */           */

Legend:
Removed from v.1.22.2.3  
changed lines
  Added in v.1.22.2.4

CVSweb <webmaster@jp.NetBSD.org>