Skip to content
Snippets Groups Projects
Select Git revision
  • 1742f19fa920cdd6905f0db5898524dde22ab2a4
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

linux

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Andrew Morton authored and Linus Torvalds committed
    We have:
    
    	try_to_free_pages
    	->shrink_caches(struct zone **zones, ..)
    	  ->shrink_zone(struct zone *, ...)
    	    ->shrink_cache(struct zone *, ...)
    	      ->shrink_list(struct list_head *, ...)
    	    ->refill_inactive_list((struct zone *, ...)
    
    which is fairly irrational.
    
    Rename things so that we have
    
     	try_to_free_pages
     	->shrink_zones(struct zone **zones, ..)
     	  ->shrink_zone(struct zone *, ...)
     	    ->shrink_inactive_list(struct zone *, ...)
     	      ->shrink_page_list(struct list_head *, ...)
    	    ->shrink_active_list(struct zone *, ...)
    
    Cc: Nick Piggin <nickpiggin@yahoo.com.au>
    Cc: Christoph Lameter <christoph@lameter.com>
    Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
    1742f19f
    History
    Name Last commit Last update