From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Fri, 11 Oct 2002 04:48:46 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Fri, 11 Oct 2002 04:48:46 -0400 Received: from syr-24-92-226-169.nyroc.rr.com ([24.92.226.169]:3637 "EHLO mailout5-0.nyroc.rr.com") by vger.kernel.org with ESMTP id ; Fri, 11 Oct 2002 04:48:45 -0400 Message-ID: <007601c27103$cb92c7b0$7b00a8c0@enigma> From: "Nicholas Hockey" To: "Pavel Machek" , "Dow, Benjamin" Cc: , "'Rik van Riel'" , <'tilt@bitchx.org'> References: <19EE6EC66973A5408FBE4CB7772F6F0A046A39@ltnmail.xyplex.com> <20021008225400.GA889@elf.ucw.cz> Subject: Re: kernel memory leak? Date: Fri, 11 Oct 2002 04:54:22 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org i am having a similar problem, i'm thinking somthing in the XFS software is malloc()ing ram and not letting it go, by any chance are you using XFS ? what i did was write this lil things to recover my ram,it eats ram till it's killed effectivly recovering lost ram (i just had to include this) ---ayrabtu.c--- #include #include int main(int argc, char *argv[]) { char *allyourram; char arebelongtous[] = "all your ram are belong to us"; while (1) { allyourram = malloc(30); sprintf(allyourram, "%s", arebelongtous); } return(0); } ---EOF---