From: Piotr Trojanek <ptroja@elproma.com.pl>
To: linux-mtd@lists.infradead.org
Subject: Re: Memory management problem?
Date: Wed, 2 Oct 2002 15:37:35 +0200 [thread overview]
Message-ID: <20021002133735.GB12433@elproma.com.pl> (raw)
In-Reply-To: <3D9A1D2B.1040501@YottaYotta.com>
there are two issues about out of memory:
1) you get malloc() with null
2) kernel decides to kill something
1: this should be checked in program code
2: look in /usr/src/linux/mm/oom.c
On Tue, Oct 01, 2002 at 04:09:47PM -0600, Chris Morrow wrote:
>
> I'm running into a problem where the linux kernel is running
> out of memory and starts killing processes in an attempt to
> recover. The environment is as follows.
>
> A CDB89712 based system with 16 Meg. sdram and 16 meg CFI flash.
> Linux-2.4.19-rmk1 with linux-2.4.19-pre10-shared-zlib patch.
>
> First, on another system I create a number of files with random
> contents and calculate their md5sums as follows;
>
> #!/bin/sh
>
> rm randFile*
>
> numFiles=40
> blockSize=1024
> blocksPerFile=100
>
> proc createFiles () {
> numFiles=$1
> blockSize=$2
> blockPerFile=$3
> fileSize=$(($blocksPerFile * $blockSize))
> while [ $numFiles -gt 0 ]; do
> echo "creating file $numFiles"
> dd if=/dev/urandom of=randFile.$numFiles \
> bs=$blockSize count=$blocksPerFile
> let $((numFiles--))
> done
> }
>
> createFiles 40 1024 100
>
> tar cf rand.tar randFile*
> md5sum randFile* > rand-md5sum
>
> Next, run the following on the test machine.
>
> #!/bin/sh
>
> while true; do
> date
> tar -xvf /home/yotta/crm/junk/jffs2test/rand.tar
> /home/yotta/crm/junk/jffs2test/verify.sh
> done
>
>
> After about 3 iterations, the kernel will start killing
> processes.
>
> There are some "deflateInit failed" warning messages during
> the run.
>
> Keeping the total size of the files to about 4 meg but changing
> the size of the individual files, I have seen the memory
> problem.
>
> Anybody got any ideas?
>
> --
> Chris Morrow YottaYotta Inc. email: cmorrow@yottayotta.com
> phone: (780) 989 6814 web: http: //www.yottayotta.com
>
>
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
--
Z powazaniem,
Piotr Trojanek
Zespol Informatyki
ELPROMA Elektronika
prev parent reply other threads:[~2002-10-02 13:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-01 22:09 Memory management problem? Chris Morrow
2002-10-01 23:32 ` David Woodhouse
2002-10-02 13:37 ` Piotr Trojanek [this message]
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=20021002133735.GB12433@elproma.com.pl \
--to=ptroja@elproma.com.pl \
--cc=linux-mtd@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.