Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Sep 2010 13:32:58 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/vm vm_pageout.c
Message-ID:  <201009091333.o89DXBPj080165@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
nwhitehorn    2010-09-09 13:32:58 UTC

  FreeBSD src repository

  Modified files:
    sys/vm               vm_pageout.c 
  Log:
  SVN rev 212360 on 2010-09-09 13:32:58Z by nwhitehorn
  
  On architectures with non-tree-based page tables like PowerPC, every page
  in a range must be checked when calling pmap_remove(). Calling
  pmap_remove() from vm_pageout_map_deactivate_pages() with the entire range
  of the map could result in attempting to demap an extraordinary number
  of pages (> 10^15), so iterate through each map entry and unmap each of
  them individually.
  
  MFC after:      6 weeks
  
  Revision  Changes    Path
  1.330     +5 -2      src/sys/vm/vm_pageout.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009091333.o89DXBPj080165>