public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Vinicius <jdob@ig.com.br>
To: bernd@firmix.at
Cc: linux-kernel@vger.kernel.org
Subject: Re: Re: Kernel doesn't free Cached Memory
Date: Fri, 22 Jul 2005 09:02:05 -0300	[thread overview]
Message-ID: <20050722_120205_006490.jdob@ig.com.br> (raw)

[-- Attachment #1: Mail message body --]
[-- Type: text/plain, Size: 1814 bytes --]

On Fri, 2005-07-22 at 08:27 -0300, Vinicius wrote: 
[...] 
>>    I have a server with 2 Pentium 4 HT processors and 32 GB of >>RAM, 
this 
>> server runs lots of applications that consume lots of memory to. >>When I 
>>stop 
>> this applications, the kernel doesn't free memory (the  memory >>still in 
>>use) 
>> and the server cache lots of memory (~27GB). When I start this 
>>applications, 
>> the kernel sends  "Out of Memory" messages and kill some random 
>> applications. 
>> 
>>    Anyone know how can I reduce the kernel cached memory on RHEL >>3 
(kernel 
>> 2.4.21-32.ELsmp - Trial version)? There is a way to reduce the >>kernel 
>>cached 
>> memory utilization? 

>Probably RedHat's support can answer this for RHEL 3. 
> 
>	Bernd 
>-- 
> Firmix Software GmbH                   http://www.firmix.at/ 
>mobil: +43 664 4416156                 fax: +43 1 7890849-55 
>          Embedded Linux Development and Services 

Bernd, 

   The server runs RHEL Trial Version, without support... for tests purpose. 

   When I compile and run the following tester program: 

#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 

int main (void) { 
        int n = 0; 
        char *p; 

        while (1) { 
                if ((p = malloc(1<<20)) == NULL) { 
                        printf("malloc failure after %d MiB\n", n); 
                        return 0; 
                } 
                memset (p, 0, (1<<20)); 
                printf ("got %d MiB\n", ++n); 
        } 
} 

   The server alocates lots of free memory (including swap) to the tester 
program and when its finish, lots of cached memory are freed. 

   Have someone an idea why it's happens? Or how can I force the kernel to 
frees cached memory? 

Thanks again (sorry my bad eglish again!) 

Vinicius. 
Protolink Consultoria. 

             reply	other threads:[~2005-07-22 12:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-22 12:02 Vinicius [this message]
2005-07-27 19:08 ` Re: Kernel doesn't free Cached Memory Adrian Bunk

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=20050722_120205_006490.jdob@ig.com.br \
    --to=jdob@ig.com.br \
    --cc=bernd@firmix.at \
    --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