Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1601069
| From | Minchan Kim <minchan@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 00/10] make try_to_unmap simple |
| Date | 2017-03-15 06:30 +0100 |
| Message-ID | <tl9Fv-2US-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Currently, try_to_unmap returns various return value(SWAP_SUCCESS, SWAP_FAIL, SWAP_AGAIN, SWAP_DIRTY and SWAP_MLOCK). When I look into that, it's unncessary complicated so this patch aims for cleaning it up. Change ttu to boolean function so we can remove SWAP_AGAIN, SWAP_DIRTY, SWAP_MLOCK. * from v1 * add some acked-by * add description about rmap_one's return - Andrew * from RFC - http://lkml.kernel.org/r/1488436765-32350-1-git-send-email-minchan@kernel.org * Remove RFC tag * add acked-by to some patches * some of minor fixes * based on mmotm-2017-03-09-16-19. Minchan Kim (10): mm: remove unncessary ret in page_referenced mm: remove SWAP_DIRTY in ttu mm: remove SWAP_MLOCK check for SWAP_SUCCESS in ttu mm: make the try_to_munlock void function mm: remove SWAP_MLOCK in ttu mm: remove SWAP_AGAIN in ttu mm: make ttu's return boolean mm: make rmap_walk void function mm: make rmap_one boolean function mm: remove SWAP_[SUCCESS|AGAIN|FAIL] include/linux/ksm.h | 5 ++- include/linux/rmap.h | 25 ++++++-------- mm/huge_memory.c | 6 ++-- mm/ksm.c | 16 ++++----- mm/memory-failure.c | 26 +++++++------- mm/migrate.c | 4 +-- mm/mlock.c | 6 ++-- mm/page_idle.c | 4 +-- mm/rmap.c | 98 ++++++++++++++++++++-------------------------------- mm/vmscan.c | 32 +++++------------ 10 files changed, 85 insertions(+), 137 deletions(-) -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH v2 00/10] make try_to_unmap simple Minchan Kim <minchan@kernel.org> - 2017-03-15 06:30 +0100
csiph-web