[Libhugetlbfs-devel] Res: Orçamento

2016-12-22 Thread Michel
Olá, tudo bem ? Há alguns meses enviamos um orçamento para você e estamos retornando agora. Você ainda tem interesse ? Att. http://www.plugamail.com.br/?c=libhugetlbfs-devel@lists.sourceforge.net Tel: (11) 2378-7244

[Libhugetlbfs-devel] Res: Data da Reunião

2017-01-03 Thread Michel
Olá, tudo bem ? Há alguns meses enviamos uma proposta para você e estamos retornando agora. Você ainda tem interesse em atualizar e refazer sua loja virtual ? Att. Michel (11)2378-7244 -- Check out the vibrant tech

[Libhugetlbfs-devel] Res: Orçamento

2017-01-27 Thread Michel
Olá, tudo bem ? Há alguns meses enviamos um orçamento para você e estamos retornando agora. Você ainda tem interesse ? Att. http://www.envio11webb.com.br/?c=libhugetlbfs-devel@lists.sourceforge.net Tel: (11) 2378-7244 --

[Libhugetlbfs-devel] [PATCH 3/4] ppc64le support (step3) support PowerPC ABI V2

2014-01-24 Thread Michel Normand
sys-elf64ppc.S updated to support PowerPC ABI V2 and create a soft link as sys-elf64lppc.S --- sys-elf64lppc.S |1 + sys-elf64ppc.S |7 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 12 sys-elf64lppc.S diff --git a/sys-elf64lppc.S b/sys-elf64lppc.S new file mod

[Libhugetlbfs-devel] [PATCH 1/4] ppc64le support (step1) uname -m reported as ppc64le

2014-01-24 Thread Michel Normand
Signed-off-by: Anton Blanchard --- Makefile|6 ++ contrib/tlbmiss_cost.sh |2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce26bdb..70ca8ec 100644 --- a/Makefile +++ b/Makefile @@ -47,6 +47,11 @@ CC32 = $(CC) -m32 ELF32 =

[Libhugetlbfs-devel] [PATCH 2/4] ppc64le support (step2) create elf64lppc.c

2014-01-24 Thread Michel Normand
create elf64lppc.c soft link of elf64ppc.c --- elf64lppc.c |1 + 1 file changed, 1 insertion(+) create mode 12 elf64lppc.c diff --git a/elf64lppc.c b/elf64lppc.c new file mode 12 index 000..1f9eba6 --- /dev/null +++ b/elf64lppc.c @@ -0,0 +1 @@ +elf64ppc.c \ No newline at end of

[Libhugetlbfs-devel] [PATCH 4/4] ppc64le support (step4) create two ld scripts

2014-01-24 Thread Michel Normand
create two ld scripts for elf64lppc from existing elf64ppc they only differ by the OUTPUT_FORMAT line: elf64-powerpcle in place of elf64-powerpc --- ldscripts/elf64lppc.xB | 245 ++ ldscripts/elf64lppc.xBDT | 241

[Libhugetlbfs-devel] [PATCH 0/4] arch ppc64le support for hugetlbfs

2014-01-24 Thread Michel Normand
provide patches to support ppc64le architecture for hugetlbfs. splitted as 4 patches to ease reading: (step1) uname -m reported as ppc64le (step2) create elf64lppc.c soft link of elf64ppc.c (step3) sys-elf64ppc.S updated to support PowerPC ABI V2 and create a soft link as sys-elf64lppc.S (s

[Libhugetlbfs-devel] [PATCH 2/4] ppc64le support (step2) create elf64lppc.c soft link of elf64ppc.c

2014-02-14 Thread Michel Normand
Signed-off-by: Michel Normand --- elf64lppc.c |1 + 1 file changed, 1 insertion(+) create mode 12 elf64lppc.c diff --git a/elf64lppc.c b/elf64lppc.c new file mode 12 index 000..1f9eba6 --- /dev/null +++ b/elf64lppc.c @@ -0,0 +1 @@ +elf64ppc.c \ No newline at end of file

[Libhugetlbfs-devel] [PATCH 0/4] [V2] arch ppc64le support for hugetlbfs

2014-02-14 Thread Michel Normand
(step3) sys-elf64ppc.S updated to support PowerPC ABI V2 and create a soft link as sys-elf64lppc.S (step4) use --hugetlbfs-align for ppc64le Michel Normand (4): Add ppc64le support (step1) ppc64le support (step2) create elf64lppc.c soft link of elf64ppc.c ppc64le support (step3) sys

[Libhugetlbfs-devel] [PATCH 1/4] Add ppc64le support (step1)

2014-02-14 Thread Michel Normand
Signed-off-by: Anton Blanchard Signed-off-by: Michel Normand --- Makefile|6 ++ contrib/tlbmiss_cost.sh |2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f510fd..36259f1 100644 --- a/Makefile +++ b/Makefile @@ -47,6

[Libhugetlbfs-devel] [PATCH 4/4] ppc64le support (step4) Add --hugetlbfs-align

2014-02-14 Thread Michel Normand
use this existing new method rather than the deprecated linker-script. Signed-off-by: Michel Normand --- Makefile |1 + ld.hugetlbfs |1 + 2 files changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 36259f1..ccd9a3f 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,7

[Libhugetlbfs-devel] [PATCH 3/4] ppc64le support (step3) sys-elf64ppc.S updated to support PowerPC ABI V2

2014-02-14 Thread Michel Normand
sys-elf64ppc.S updated to support PowerPC ABI V2 and create a soft link as sys-elf64lppc.S Signed-off-by: Michel Normand --- sys-elf64lppc.S |1 + sys-elf64ppc.S |7 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 12 sys-elf64lppc.S diff --git a/sys