linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* __alloc_pages: 0-order allocation failed.
@ 2001-09-04 13:11 Martin MOKREJŠ
  2001-09-04 16:12 ` Daniel Phillips
  0 siblings, 1 reply; 59+ messages in thread
From: Martin MOKREJŠ @ 2001-09-04 13:11 UTC (permalink / raw)
  To: linux-kernel

Hi,
  I'm getting the above error on 2.4.9 kernel with kernel HIGHMEM option
enabled to 2GB, 2x Intel PentiumIII. The machine has 1GB RAM
physically. Althougj I've found many report to linux-kernel list during
past months, not a real solution. Maybe only:
http://www.alsa-project.org/archive/alsa-devel/msg08629.html

  I hope it's not related to memory chunks allocated twice, so I think
it's another problem in 2.4.9, right?

Linux version 2.4.9 (user@host) (gcc version 2.95.2 20000220 (Debian GNU/Linux)) #4 SMP Thu Aug 30 15:10:26 CEST 2001
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
 BIOS-e820: 000000000009f400 - 000000000009f800 (reserved)
 BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 0000000040000000 (usable)
 BIOS-e820: 00000000fec00000 - 00000000fec02000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
128MB HIGHMEM available.
Scan SMP from c0000000 for 1024 bytes.
Scan SMP from c009fc00 for 1024 bytes.
Scan SMP from c00f0000 for 65536 bytes.
found SMP MP-table at 000ff780
hm, page 000ff000 reserved twice.
hm, page 00100000 reserved twice.
hm, page 000f0000 reserved twice.
hm, page 000f1000 reserved twice.
On node 0 totalpages: 262144
zone(0): 4096 pages.
zone(1): 225280 pages.
zone(2): 32768 pages.

shell$ free
             total       used       free     shared    buffers     cached
Mem:       1028480     992840      35640          0      20832     821524
-/+ buffers/cache:     150484     877996
Swap:      2097136     100868    1996268


  The machine is running apache 1.3.20 and mysql-3.23.41 only, and is
not loaded yet. :( Any ideas? Thanks.
-- 
Martin Mokrejs - PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs
MIPS / Institute for Bioinformatics <http://mips.gsf.de>
GSF - National Research Center for Environment and Health
Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany



^ permalink raw reply	[flat|nested] 59+ messages in thread
* __alloc_pages: 0-order allocation failed
@ 2001-09-24  2:02 Jacek Popławski
  2001-09-24 11:12 ` Marcelo Tosatti
  2001-09-24 12:58 ` Christian Bornträger
  0 siblings, 2 replies; 59+ messages in thread
From: Jacek Popławski @ 2001-09-24  2:02 UTC (permalink / raw)
  To: linux-kernel

I just installed 2.4.10, and...

__alloc_pages: 0-order allocation failed (gfp=0x1d2/0) from c0126c2e
__alloc_pages: 0-order allocation failed (gfp=0x1d2/0) from c0126c2e
__alloc_pages: 0-order allocation failed (gfp=0x1d2/0) from c0126c2e
VM: killing process donkey_s
__alloc_pages: 0-order allocation failed (gfp=0x1f0/0) from c0126c2e
__alloc_pages: 0-order allocation failed (gfp=0x1d2/0) from c0126c2e
VM: killing process screen
__alloc_pages: 0-order allocation failed (gfp=0x1d2/0) from c0126c2e
VM: killing process bash
(...)

I am changing kernels often, but never seen that kind of message. Last kernel I
had before 2.4.10 was 2.4.10-pre4.

PS. donkey_s is application which eats a lot of memory, but I have 384MB RAM
and 100MB swap.

^ permalink raw reply	[flat|nested] 59+ messages in thread
* __alloc_pages: 0-order allocation failed
@ 2006-05-31 12:09 Oliver König
  2006-06-01 12:19 ` Jes Sorensen
  0 siblings, 1 reply; 59+ messages in thread
From: Oliver König @ 2006-05-31 12:09 UTC (permalink / raw)
  To: linux-kernel

I run Debian 3.1 (Sarge) with Debian-Kernel 2.4.27-3-686-smp on Dell 
Poweredge 2850 with the following setup/config:

Model: Dell Poweredge 2850
CPU: 2x3.0 GHz
RAM: 2 GB
SWAP: 1 GB
Raid 1 with Dell PowerEdge Expandable RAID controller 4 (SCSI)
Kernel: 2.4.27-3-686-smp (CONFIG_HIGHMEM4G=y)
Web server: apache2
SQL server: mysql4.1
MTA: exim4

Occasionally all of a sudden the load average increases from around 1 
to 50-150. Primarily apache2 and also mysql are then consuming most of the CPU 
and memory. I checked the hardware with the Dell 32-bit diagnostic but could 
not find any errors. /var/log/message produces the following or similar 
output:

May 24 09:06:44 server kernel: VM: killing process cron
May 24 09:06:44 server kernel: __alloc_pages: 0-order allocation failed 
(gfp=0x1d2/0)
May 24 09:06:44 server last message repeated 6 times
May 24 09:06:44 server kernel: VM: killing process apache2
May 24 09:06:56 server logger: Hole TAFSYNOP-Wetterdaten...
May 24 09:11:09 server kernel: __alloc_pages: 0-order allocation failed 
(gfp=0x1d2/0)
[..]

The server is then so slow tom react that the only way to get rid of the 
problem is to reset the server.

What can we do to fix the problem?
Thanks.
Oliver

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2006-06-01 12:19 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-04 13:11 __alloc_pages: 0-order allocation failed Martin MOKREJŠ
2001-09-04 16:12 ` Daniel Phillips
2001-09-07 12:53   ` Martin MOKREJŠ
2001-09-07 13:06   ` Martin MOKREJŠ
2001-09-07 20:43     ` Daniel Phillips
2001-09-07 21:00     ` Daniel Phillips
2001-09-12 13:06       ` Martin MOKREJŠ
2001-09-19 14:21         ` __alloc_pages: 0-order allocation failed still in -pre12 Martin MOKREJŠ
2001-09-19 15:03           ` Martin MOKREJŠ
2001-09-19 15:16           ` Rik van Riel
2001-09-19 15:51             ` Martin MOKREJŠ
2001-09-19 22:34           ` Shane Wegner
2001-09-19 22:45             ` Andrea Arcangeli
2001-09-20  2:31               ` Shane Wegner
2001-09-20  2:36                 ` Andrea Arcangeli
2001-09-20  2:36                 ` Shane Wegner
2001-09-20  2:52                   ` Andrea Arcangeli
2001-09-20 15:02                     ` Randy.Dunlap
2001-09-21  1:54                       ` Keith Owens
2001-09-20  9:57                 ` Cannot compile 2.4.10pre12aa1 with 2.95.2 on Debian Martin MOKREJŠ
2001-09-20 10:10                   ` Magnus Naeslund(f)
2001-09-20 10:26                     ` Martin MOKREJŠ
2001-09-20 10:26                     ` Magnus Naeslund(f)
2001-09-20 10:59                     ` Perf improvements in 2.4.10pre12aa1 Martin MOKREJŠ
2001-09-20 15:28                       ` Martin MOKREJŠ
2001-09-20 15:40                         ` Martin MOKREJŠ
2001-09-20 10:24                   ` [PATCH] Make kernel build numbers work again (was: Re: Cannot compile 2.4.10pre12aa1 with 2.95.2 on Debian) Russell King
2001-09-20 12:54                     ` Alan Cox
2001-09-19 22:39           ` __alloc_pages: 0-order allocation failed still in -pre12 Andrea Arcangeli
2001-09-24  2:02 __alloc_pages: 0-order allocation failed Jacek Popławski
2001-09-24 11:12 ` Marcelo Tosatti
2001-09-24  8:13   ` Paul Larson
2001-09-24 12:38     ` Marcelo Tosatti
2001-09-24 11:35       ` Paul Larson
2001-09-24 15:12         ` Marcelo Tosatti
2001-09-24 19:48           ` tpepper
2001-09-26 13:48         ` Andrea Arcangeli
2001-09-24 15:33       ` Christian Bornträger
2001-09-25 22:09       ` Andrea Arcangeli
2001-09-25 21:25         ` Marcelo Tosatti
2001-09-25 23:05           ` Andrea Arcangeli
2001-09-26 18:15             ` tpepper
2001-09-26 18:29               ` Andrea Arcangeli
2001-09-25 22:16         ` Christian Bornträger
2001-09-25 23:01           ` Andrea Arcangeli
2001-09-25 23:10             ` Christian Bornträger
2001-09-25 23:19               ` Andrea Arcangeli
2001-09-25 23:24             ` Christian Bornträger
2001-09-25 23:46               ` Andrea Arcangeli
2001-09-26  7:29                 ` Christian Bornträger
2001-09-24  9:01   ` Paul Larson
2001-09-24 15:54   ` Olaf Hering
2001-09-24 16:06     ` Olaf Hering
2001-09-24 21:03   ` Jacek Popławski
2001-09-24 21:11     ` Jacek Popławski
2001-09-24 12:58 ` Christian Bornträger
2001-09-24 13:05   ` Arjan van de Ven
2006-05-31 12:09 Oliver König
2006-06-01 12:19 ` Jes Sorensen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).