All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 0/8] page reclaim bits
@ 2012-12-12 21:43 ` Johannes Weiner
  0 siblings, 0 replies; 114+ messages in thread
From: Johannes Weiner @ 2012-12-12 21:43 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Rik van Riel, Michal Hocko, Mel Gorman, Hugh Dickins, linux-mm,
	linux-kernel

Hello,

I had these in my queue and on test machines for a while, but they got
deferred over and over, partly because of the kswapd issues.  I hope
it's not too late for 3.8, they should be fairly straight forward.

#1 takes the anon workingset protection with plenty file cache from
global reclaim, which was just merged into 3.8, and generalizes it to
include memcg reclaim.

#2-#6 are get_scan_count() fixes and cleanups.

#7 fixes reclaim-for-compaction to work against zones, not lruvecs,
since that is what compaction works against.  Practical impact only on
memcg setups, but confusing for everybody.

#8 puts ksm pages that are copied-on-swapin into their own separate
anon_vma.

Thanks!

 include/linux/swap.h |   2 +-
 mm/ksm.c             |   6 --
 mm/memory.c          |   5 +-
 mm/vmscan.c          | 268 +++++++++++++++++++++++++++----------------------
 4 files changed, 152 insertions(+), 129 deletions(-)


^ permalink raw reply	[flat|nested] 114+ messages in thread

end of thread, other threads:[~2012-12-19  9:20 UTC | newest]

Thread overview: 114+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-12 21:43 [patch 0/8] page reclaim bits Johannes Weiner
2012-12-12 21:43 ` Johannes Weiner
2012-12-12 21:43 ` [patch 1/8] mm: memcg: only evict file pages when we have plenty Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 21:53   ` Rik van Riel
2012-12-12 21:53     ` Rik van Riel
2012-12-12 22:28     ` Johannes Weiner
2012-12-12 22:28       ` Johannes Weiner
2012-12-13 10:07       ` Mel Gorman
2012-12-13 10:07         ` Mel Gorman
2012-12-13 14:44         ` Mel Gorman
2012-12-13 14:44           ` Mel Gorman
2012-12-13 14:55       ` Michal Hocko
2012-12-13 14:55         ` Michal Hocko
2012-12-16  1:21         ` Simon Jeons
2012-12-16  1:21           ` Simon Jeons
2012-12-17 15:54           ` Michal Hocko
2012-12-17 15:54             ` Michal Hocko
2012-12-19  5:21             ` Simon Jeons
2012-12-19  5:21               ` Simon Jeons
2012-12-19  9:20               ` Mel Gorman
2012-12-19  9:20                 ` Mel Gorman
2012-12-13  5:36     ` Simon Jeons
2012-12-13  5:36       ` Simon Jeons
2012-12-13  5:34   ` Simon Jeons
2012-12-13  5:34     ` Simon Jeons
2012-12-12 21:43 ` [patch 2/8] mm: vmscan: disregard swappiness shortly before going OOM Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:01   ` Rik van Riel
2012-12-12 22:01     ` Rik van Riel
2012-12-13  5:56   ` Simon Jeons
2012-12-13  5:56     ` Simon Jeons
2012-12-13 10:34   ` Mel Gorman
2012-12-13 10:34     ` Mel Gorman
2012-12-13 15:29     ` Michal Hocko
2012-12-13 15:29       ` Michal Hocko
2012-12-13 16:05       ` Michal Hocko
2012-12-13 16:05         ` Michal Hocko
2012-12-13 22:25         ` Satoru Moriya
2012-12-13 22:25           ` Satoru Moriya
2012-12-14  4:50           ` Johannes Weiner
2012-12-14  4:50             ` Johannes Weiner
2012-12-14  8:37             ` Michal Hocko
2012-12-14  8:37               ` Michal Hocko
2012-12-14 15:43               ` Rik van Riel
2012-12-14 15:43                 ` Rik van Riel
2012-12-14 16:13                 ` Michal Hocko
2012-12-14 16:13                   ` Michal Hocko
2012-12-15  0:18                   ` Johannes Weiner
2012-12-15  0:18                     ` Johannes Weiner
2012-12-17 16:37                     ` Michal Hocko
2012-12-17 16:37                       ` Michal Hocko
2012-12-17 17:54                       ` Johannes Weiner
2012-12-17 17:54                         ` Johannes Weiner
2012-12-17 19:58                         ` Michal Hocko
2012-12-17 19:58                           ` Michal Hocko
2012-12-14 20:17                 ` Satoru Moriya
2012-12-14 20:17                   ` Satoru Moriya
2012-12-14 19:44               ` Satoru Moriya
2012-12-14 19:44                 ` Satoru Moriya
2012-12-13 19:05     ` Johannes Weiner
2012-12-13 19:05       ` Johannes Weiner
2012-12-13 19:47       ` Mel Gorman
2012-12-13 19:47         ` Mel Gorman
2012-12-12 21:43 ` [patch 3/8] mm: vmscan: save work scanning (almost) empty LRU lists Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:02   ` Rik van Riel
2012-12-12 22:02     ` Rik van Riel
2012-12-13 10:41   ` Mel Gorman
2012-12-13 10:41     ` Mel Gorman
2012-12-13 19:33     ` Johannes Weiner
2012-12-13 19:33       ` Johannes Weiner
2012-12-13 15:43   ` Michal Hocko
2012-12-13 15:43     ` Michal Hocko
2012-12-13 19:38     ` Johannes Weiner
2012-12-13 19:38       ` Johannes Weiner
2012-12-14  8:46       ` Michal Hocko
2012-12-14  8:46         ` Michal Hocko
2012-12-12 21:43 ` [patch 4/8] mm: vmscan: clarify LRU balancing close to OOM Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:03   ` Rik van Riel
2012-12-12 22:03     ` Rik van Riel
2012-12-13 10:46   ` Mel Gorman
2012-12-13 10:46     ` Mel Gorman
2012-12-12 21:43 ` [patch 5/8] mm: vmscan: improve comment on low-page cache handling Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:04   ` Rik van Riel
2012-12-12 22:04     ` Rik van Riel
2012-12-13 10:47   ` Mel Gorman
2012-12-13 10:47     ` Mel Gorman
2012-12-13 16:07   ` Michal Hocko
2012-12-13 16:07     ` Michal Hocko
2012-12-12 21:43 ` [patch 6/8] mm: vmscan: clean up get_scan_count() Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:06   ` Rik van Riel
2012-12-12 22:06     ` Rik van Riel
2012-12-13 11:07   ` Mel Gorman
2012-12-13 11:07     ` Mel Gorman
2012-12-13 16:18   ` Michal Hocko
2012-12-13 16:18     ` Michal Hocko
2012-12-12 21:43 ` [patch 7/8] mm: vmscan: compaction works against zones, not lruvecs Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:31   ` Rik van Riel
2012-12-12 22:31     ` Rik van Riel
2012-12-13 11:12   ` Mel Gorman
2012-12-13 11:12     ` Mel Gorman
2012-12-13 16:48   ` Michal Hocko
2012-12-13 16:48     ` Michal Hocko
2012-12-12 21:43 ` [patch 8/8] mm: reduce rmap overhead for ex-KSM page copies created on swap faults Johannes Weiner
2012-12-12 21:43   ` Johannes Weiner
2012-12-12 22:34   ` Rik van Riel
2012-12-12 22:34     ` Rik van Riel
2012-12-12 21:50 ` [patch 0/8] page reclaim bits Andrew Morton
2012-12-12 21:50   ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.