NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: kern/48044: panic: kernel diagnostic assertion "uvmexp.swpgonly + npages <= uvmexp.swpginuse" failed



It just happened again:

  http://releng.netbsd.org/b5reports/amd64/build/2014.02.15.09.43.02/test.log

Earlier, Christos Zoulas wrote:
>  The code reads:
>                  KASSERT(uvmexp.swpgonly + npages <= uvmexp.swpginuse);  
>               if (error != ENOMEM)
>                       uvmexp.swpgonly += npages;
>  
>  And probably should read:
>               if (error != ENOMEM) {
>                       KASSERT(uvmexp.swpgonly + npages <= uvmexp.swpginuse);  
>                       uvmexp.swpgonly += npages;
>               }
>  
>  (I am not a VM expert)

Could someone who does consider him/herself a VM expert please have a
look at this?
-- 
Andreas Gustafsson, gson%gson.org@localhost


Home | Main Index | Thread Index | Old Index