linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ed Tomlinson <edt@aei.ca>
To: Andrea Arcangeli <aarcange@redhat.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Transparent Hugepage Support #29
Date: Wed, 4 Aug 2010 08:15:02 -0400	[thread overview]
Message-ID: <201008040815.02368.edt@aei.ca> (raw)
In-Reply-To: <20100803135615.GG6071@random.random>

Andrea,

I have been tracking & testing this for a while.   It looks very much like Linus wants to merge (or a big chunk of it):

git://git.kernel.org/pub/scm/linux/kernel/git/npiggin/linux-npiggin.git vfs-scale-working

When I pull an aa-29 on top of this there is one conflict in vmscan.c that git cannot resolve.
It would be really nice to have a version of the THS patchs that can be tested with the vfs scaling
tree.

TIA
Ed Tomlinson

On Tuesday 03 August 2010 09:56:15 you wrote:
> http://git.kernel.org/?p=linux/kernel/git/andrea/aa.git;a=shortlog
> 
> first: git clone git://git.kernel.org/pub/scm/linux/kernel/git/andrea/aa.git
> or first: git clone --reference linux-2.6 git://git.kernel.org/pub/scm/linux/kernel/git/andrea/aa.git
> later: git fetch; git checkout -f origin/master
> 
> The tree is rebased and git pull won't work.
> 
> http://www.kernel.org/pub/linux/kernel/people/andrea/patches/v2.6/2.6.35/transparent_hugepage-29/
> http://www.kernel.org/pub/linux/kernel/people/andrea/patches/v2.6/2.6.35/transparent_hugepage-29.gz
> 
> Diff #28 -> #29:
> 
>  THP-disable-on-small-systems    |   41 ++++++++
> 
> Disable THP on <500M systems, from Rik.
> 
>  compaction-kswapd               |  194 ++++++++++++++++++++++++++++++++++++++++
> 
> Add a compaction mode for kswapd to fully replace obsolete blind lumpy
> reclaim.
> 
>  free_pages-count                |   60 ++++++++++++
>  free_pages-drain_all_pages      |   62 ++++++++++++
>  free_pages-vmstat               |  156 ++++++++++++++++++++++++++++++++
> 
> Make free page statistics more accurate from Mel.
> 
>  ksmd-khugepaged-freeze          |   97 ++++++++++++++++++++
> 
> kswapd uses set_freezing, so shall ksmd and khugepaged.
> 
>  transparent-hugepage-nr_rotated |   36 +++++++
>  transparent-hugepage-stat       |  166 ++++++++++++++++++++++++++++++++++
> 
> Fix inactive/active stats and nr_rotated, from Rik.
> 
>  Documentation/vm/transhuge.txt        |  283 ++++
>  arch/alpha/include/asm/mman.h         |    2 
>  arch/mips/include/asm/mman.h          |    2 
>  arch/parisc/include/asm/mman.h        |    2 
>  arch/powerpc/mm/gup.c                 |   12 
>  arch/x86/include/asm/kvm_host.h       |    1 
>  arch/x86/include/asm/paravirt.h       |   23 
>  arch/x86/include/asm/paravirt_types.h |    6 
>  arch/x86/include/asm/pgtable-2level.h |    9 
>  arch/x86/include/asm/pgtable-3level.h |   23 
>  arch/x86/include/asm/pgtable.h        |  149 ++
>  arch/x86/include/asm/pgtable_64.h     |   28 
>  arch/x86/include/asm/pgtable_types.h  |    3 
>  arch/x86/kernel/paravirt.c            |    3 
>  arch/x86/kernel/vm86_32.c             |    1 
>  arch/x86/kvm/mmu.c                    |   68 -
>  arch/x86/kvm/paging_tmpl.h            |    6 
>  arch/x86/mm/gup.c                     |   28 
>  arch/x86/mm/pgtable.c                 |   66 +
>  arch/xtensa/include/asm/mman.h        |    2 
>  fs/Kconfig                            |    2 
>  fs/exec.c                             |   44 
>  fs/proc/meminfo.c                     |   14 
>  fs/proc/page.c                        |   14 
>  include/asm-generic/mman-common.h     |    2 
>  include/asm-generic/pgtable.h         |  130 +
>  include/linux/compaction.h            |   13 
>  include/linux/gfp.h                   |   14 
>  include/linux/huge_mm.h               |  151 ++
>  include/linux/khugepaged.h            |   66 +
>  include/linux/ksm.h                   |   20 
>  include/linux/kvm_host.h              |    4 
>  include/linux/memory_hotplug.h        |   14 
>  include/linux/mm.h                    |  114 +
>  include/linux/mm_inline.h             |   19 
>  include/linux/mm_types.h              |    3 
>  include/linux/mmu_notifier.h          |   66 +
>  include/linux/mmzone.h                |    1 
>  include/linux/page-flags.h            |   36 
>  include/linux/res_counter.h           |   12 
>  include/linux/rmap.h                  |   33 
>  include/linux/sched.h                 |    1 
>  include/linux/swap.h                  |    2 
>  include/linux/vmstat.h                |    4 
>  kernel/fork.c                         |   12 
>  kernel/futex.c                        |   55 
>  mm/Kconfig                            |   38 
>  mm/Makefile                           |    1 
>  mm/compaction.c                       |   48 
>  mm/huge_memory.c                      | 2212 ++++++++++++++++++++++++++++++++++
>  mm/hugetlb.c                          |   69 -
>  mm/ksm.c                              |   86 -
>  mm/madvise.c                          |    8 
>  mm/memcontrol.c                       |  169 +-
>  mm/memory-failure.c                   |    2 
>  mm/memory.c                           |  241 +++
>  mm/memory_hotplug.c                   |   14 
>  mm/mempolicy.c                        |   14 
>  mm/migrate.c                          |   22 
>  mm/mincore.c                          |    7 
>  mm/mmap.c                             |   57 
>  mm/mmu_notifier.c                     |   20 
>  mm/mprotect.c                         |   20 
>  mm/mremap.c                           |    8 
>  mm/oom_kill.c                         |    1 
>  mm/page_alloc.c                       |   58 
>  mm/pagewalk.c                         |    1 
>  mm/rmap.c                             |  228 ++-
>  mm/sparse.c                           |    4 
>  mm/swap.c                             |  117 +
>  mm/swap_state.c                       |    6 
>  mm/swapfile.c                         |    2 
>  mm/vmscan.c                           |  102 -
>  mm/vmstat.c                           |   31 
>  virt/kvm/iommu.c                      |    2 
>  virt/kvm/kvm_main.c                   |   56 
>  76 files changed, 4680 insertions(+), 527 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 
> 

  parent reply	other threads:[~2010-08-04 12:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-03 13:56 Transparent Hugepage Support #29 Andrea Arcangeli
2010-08-03 16:01 ` Kernel build bench with " Andrea Arcangeli
2010-08-04 12:15 ` Ed Tomlinson [this message]
2010-08-04 12:44   ` Andrea Arcangeli
2010-08-05 11:27     ` Ed Tomlinson
2010-08-05 11:49       ` Andrea Arcangeli
2010-08-05 11:57         ` Ed Tomlinson
2010-08-05 14:22           ` Nick Piggin
2010-08-05 19:45           ` Nick Piggin
2010-08-17 20:56 ` [patch] transparent hugepage sysfs meminfo David Rientjes
2010-08-17 21:01   ` Rik van Riel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201008040815.02368.edt@aei.ca \
    --to=edt@aei.ca \
    --cc=aarcange@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).