[Libhugetlbfs-devel] O Segredo do Sucesso

2009-10-02 Thread O Segredo do Sucesso
Caso não consiga visualizar o e-mail, acesse este link. VOCÊ ESTÁ PREPARADO PARA MUDAR DE VIDA?   SISTEMA INOVADOR... A GRANDE TENDÊNCIA DO MOMENTO!Você ganha R$ 100,00 por cada uma das suas duas primeiras indicações que também servem para lhe qualificar a receber bônus.Você ganha R$ 150,00 a pa

Re: [Libhugetlbfs-devel] [PATCH 4/5] hugeadm: add support for setting hugetlb_shm_group

2009-10-02 Thread Eric B Munson
On Fri, 02 Oct 2009, Jarod Wilson wrote: > Signed-off-by: Jarod Wilson Acked-by: Eric B Munson signature.asc Description: Digital signature -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the

Re: [Libhugetlbfs-devel] [PATCH 2/5] hugeadm: add check_user function to warn if user is not in hugetlb_shm_group

2009-10-02 Thread Eric B Munson
On Fri, 02 Oct 2009, Jarod Wilson wrote: > Signed-off-by: Jarod Wilson Acked-by: Eric B Munson signature.asc Description: Digital signature -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the

Re: [Libhugetlbfs-devel] [PATCH 3/5] hugeadm: support --pool-size-min DEFAULT:2G syntax

2009-10-02 Thread Eric B Munson
On Fri, 02 Oct 2009, Jarod Wilson wrote: > Allow the user to allocate x G, M or K of hugepages using the default huge > page size, rather than having to specify page size and number of pages (both > of which of course still work too). Mixture of explicit page sizes and page > counts with memory si

Re: [Libhugetlbfs-devel] [PATCH 1/5] hugeadm: show amount of system memory in explain output

2009-10-02 Thread Eric B Munson
On Fri, 02 Oct 2009, Jarod Wilson wrote: > Signed-off-by: Jarod Wilson Acked-by: Eric B Munson signature.asc Description: Digital signature -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the

[Libhugetlbfs-devel] [RFC] updated huge page setup helper script

2009-10-02 Thread Jarod Wilson
Here's an updated huge page setup helper script, now using all the facilities added to hugeadm by the 5-part hugeadm enhancements patch series. The short version: 1) script ask user how much memory they want for huge pages and what user(s) and group should have access 2) script creates and/o

[Libhugetlbfs-devel] [PATCH 0/5] hugeadm: assorted enhancements

2009-10-02 Thread Jarod Wilson
hugeadm: show amount of system memory in explain output hugeadm: add check_user function to warn if user is not in hugetlb_shm_group hugeadm: support --pool-size-min DEFAULT:2G syntax Allow the user to allocate x G, M or K of hugepages using the default huge page size, rather than havi

[Libhugetlbfs-devel] [PATCH] Add Core 2 Timer events to event map

2009-10-02 Thread Eric B Munson
Signed-off-by: Eric B Munson --- oprofile_map_events.pl |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/oprofile_map_events.pl b/oprofile_map_events.pl index 403bb89..e167919 100755 --- a/oprofile_map_events.pl +++ b/oprofile_map_events.pl @@ -32,6 +32,7 @@ $map_event_

[Libhugetlbfs-devel] [PATCH 4/5] hugeadm: add support for setting hugetlb_shm_group

2009-10-02 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- hugeadm.c | 47 +++ man/hugeadm.8 |7 +++ 2 files changed, 54 insertions(+), 0 deletions(-) diff --git a/hugeadm.c b/hugeadm.c index f53aff3..5e92de5 100644 --- a/hugeadm.c +++ b/hugeadm.c @@ -95,6 +95,8 @@

[Libhugetlbfs-devel] [PATCH 3/5] hugeadm: support --pool-size-min DEFAULT:2G syntax

2009-10-02 Thread Jarod Wilson
Allow the user to allocate x G, M or K of hugepages using the default huge page size, rather than having to specify page size and number of pages (both of which of course still work too). Mixture of explicit page sizes and page counts with memory sizes and default page sizes respectively should als

[Libhugetlbfs-devel] [PATCH 2/5] hugeadm: add check_user function to warn if user is not in hugetlb_shm_group

2009-10-02 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- hugeadm.c | 39 +++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/hugeadm.c b/hugeadm.c index 21d7d5d..8871163 100644 --- a/hugeadm.c +++ b/hugeadm.c @@ -67,6 +67,7 @@ extern char *optarg; #define PROCMOUNTS

[Libhugetlbfs-devel] [PATCH 0/5] hugeadm: assorted enhancements v2

2009-10-02 Thread Jarod Wilson
Prematurely sent the first time... Sorry for the noise... Here comes an updated version of hugeadm enhancements, all updated to per discussion of the first series with Mel Gorman. [Patch 1/5] hugeadm: show amount of system memory in explain output [Patch 2/5] hugeadm: add check_user

[Libhugetlbfs-devel] [PATCH] hugeadm: fix maximiuse typo

2009-10-02 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- hugeadm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hugeadm.c b/hugeadm.c index 5c110cf..a793267 100644 --- a/hugeadm.c +++ b/hugeadm.c @@ -668,7 +668,7 @@ void check_minfreekbytes(void) /* There should be at least one pageb

Re: [Libhugetlbfs-devel] [PATCH 5/5] hugeadm: add support for setting recommended shmmax value

2009-10-02 Thread Eric B Munson
On Fri, 02 Oct 2009, Jarod Wilson wrote: > - print notice in --explain output about current shmmax value > - add --set-recommended-shmmax switch, which (after huges pages > are configured) sets shmmax to a value equal to the sum of the > maximum space that has been allocated for huge pages >

[Libhugetlbfs-devel] [PATCH 1/5] hugeadm: show amount of system memory in explain output

2009-10-02 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- hugeadm.c | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/hugeadm.c b/hugeadm.c index 5c110cf..21d7d5d 100644 --- a/hugeadm.c +++ b/hugeadm.c @@ -73,6 +73,7 @@ extern char *optarg; #define MAX_SIZE_MNTENT (64 + PATH_MAX + 32

[Libhugetlbfs-devel] [PATCH 5/5] hugeadm: add support for setting recommended shmmax value

2009-10-02 Thread Jarod Wilson
- print notice in --explain output about current shmmax value - add --set-recommended-shmmax switch, which (after huges pages are configured) sets shmmax to a value equal to the sum of the maximum space that has been allocated for huge pages Signed-off-by: Jarod Wilson --- hugeadm.c |

[Libhugetlbfs-devel] [SPAM] APH TATICO com Medicos da SWAT de Dallas

2009-10-02 Thread Grupo Anjos APH
Title: Os primeiros minutos são definitivos           Os primeiros minutos são definitivos, aprenda a salvar vidas Estão abertas as inscrições para o curso de Atendimento Pré-Hospitalar Tático que irá acontecer no mês de Dez

Re: [Libhugetlbfs-devel] [PATCH] hugeadm enhancements

2009-10-02 Thread Mel Gorman
On Thu, Oct 01, 2009 at 04:04:44PM -0400, Jarod Wilson wrote: > On 10/01/2009 11:14 AM, Mel Gorman wrote: >> On Thu, Oct 01, 2009 at 10:18:50AM -0400, Jarod Wilson wrote: > ... Is it really a good idea fix shmmax as the total of maximum memory. As this is about hugepages, would a be