git: DragonFly_RELEASE_2_6 kernel - Fix resident_count problems with kernel_pmap & related crashes

Matthew Dillon dillon at crater.dragonflybsd.org
Fri Apr 30 11:10:45 PDT 2010


commit 50d350e4e7c21be1b9ef2435adc9674d25d5df3b
Author: Matthew Dillon <dillon at apollo.backplane.com>
Date:   Thu Apr 29 19:48:58 2010 -0700

    kernel - Fix resident_count problems with kernel_pmap & related crashes
    
    * kernel_pmap.pm_stats.resident_count could get out of sync due to the
      lwbuf code calling kmem_free() on KVM with pages that were entered
      via pmap_kenter().  Delete the pages before calling kmem_free().
    
      This in turn caused various failures and kernel panics due to conditionals
      based on resident_count == 0.  Heavy sendfile() activity could trigger
      the bug but it was taking a few days for the resident_count to decrement
      to zero.
    
    * Fix a similar issue in zdestroy() on ZONE_INTERRUPT zones.  Nothing calls
      this routine so it was not a vector for crashes.
    
    * Document the case.

Summary of changes:
 sys/cpu/i386/misc/lwbuf.c |    7 +++++++
 sys/vm/vm_kern.c          |    5 +++++
 sys/vm/vm_zone.c          |    8 ++++++++
 3 files changed, 20 insertions(+), 0 deletions(-)

http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/50d350e4e7c21be1b9ef2435adc9674d25d5df3b


-- 
DragonFly BSD source repository





More information about the Commits mailing list