2007-01-15 13:36:43

by raz

[permalink] [raw]
Subject: [DISCUSS] memory allocation method

I have a process who allocates as much as possible of RAM
in 4 G ram 32bit machine. This buffer is never released.

Questions:

1. Is it better allocates with many 1MB buffers or allocate it in with
one a big valloc ?

2. I will be needing to make this memory allocation in many other
machines , some have 2 GRAM and some 3 GRAM. what is the preferrable
method ?

3. In 64bit machines , is it possible to allocate huge buffers , such
as 30 GB of ram ?

Thank you
--
Raz


2007-01-19 10:44:21

by Helge Hafting

[permalink] [raw]
Subject: Re: [DISCUSS] memory allocation method

Raz Ben-Jehuda(caro) wrote:
>
> 3. In 64bit machines , is it possible to allocate huge buffers , such
> as 30 GB of ram ?
Yes, that is one of the nice things about 64-bit machines.
No special cases - you sure can get 30GB if your machine
is equipped with that much. Or you can get that
much virtual memory if you have enough swap . . .

Helge Hafting

2007-01-19 11:42:39

by Rick Brown

[permalink] [raw]
Subject: Re: [DISCUSS] memory allocation method

On 1/15/07, Raz Ben-Jehuda(caro) <[email protected]> wrote:
> I have a process who allocates as much as possible of RAM
> in 4 G ram 32bit machine. This buffer is never released.
>
> Questions:
>
> 1. Is it better allocates with many 1MB buffers or allocate it in with
> one a big valloc ?

ONe BIG vmalloc has huge, huge chances of failure.