linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
       [not found] <5uzvD-8tr-19@gated-at.bofh.it>
@ 2006-01-14 11:02 ` Nick Craig-Wood
  2006-01-14 13:53   ` Jim MacBaine
  0 siblings, 1 reply; 7+ messages in thread
From: Nick Craig-Wood @ 2006-01-14 11:02 UTC (permalink / raw)
  To: Jim MacBaine, linux-kernel

In linux.kernel, you wrote:
>  the OOM killer just killed some of my processes while the system
>  still had >2.5 GB of free swap. I'm running vanilla 2.6.15 on my
>  desktop.  The machine is a single Athlon64, 1 GB RAM, 3 GB swap,
>  x86_64 kernel, (mostly) i386 userland.  A few days ago I have set
>  /proc/sys/vm/swappiness to 0 to see whether it would increase the
>  interactive performance.

I have to say I've noticed the same thing.

On my home workstation I do a lot of stuff with very large video
files, so set swappiness to 0 some time ago so using these large files
would stop all the applications getting pushed out into swap.

However I've noticed that ocassionally the kernel has killed large
memory processes (eg firefox!) even when there was lots of swap free.

Recently, I found I just could not use gimp to edit a very large image
(about 800MB on a 1 GB machine) without the OOM killer killing it.
When I reset swappiness to 60 I could then use gimp fine.

This doesn't seem like correct behaviour to me!  (Though I note the
caveat I read somewhere that swappiness probably doesn't do what I
think it does - it probably doesn't!)

-- 
Nick Craig-Wood <nick@craig-wood.com> -- http://www.craig-wood.com/nick

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

* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
  2006-01-14 11:02 ` /proc/sys/vm/swappiness == 0 makes OOM killer go beserk Nick Craig-Wood
@ 2006-01-14 13:53   ` Jim MacBaine
  2006-01-14 15:45     ` Denis Vlasenko
  0 siblings, 1 reply; 7+ messages in thread
From: Jim MacBaine @ 2006-01-14 13:53 UTC (permalink / raw)
  To: linux-kernel; +Cc: Nick Craig-Wood

On 1/14/06, Nick Craig-Wood <nick@craig-wood.com> wrote:

> On my home workstation I do a lot of stuff with very large video
> files, so set swappiness to 0 some time ago so using these large files
> would stop all the applications getting pushed out into swap.

My motivation was similar: My desktop usually runs 24 hrs and I leave
large applications which I use from time to time always open. Like
OpenOffice, Firefox, Emacs with large buffers, etc.  In the night, the
machine performs two disk-intensive tasks.  First a backup then
updatedb. And every morning about 650 MB of 1 GB RAM is used for
caches and all my application need to be swapped in before I can use
them.

Of course, the increase of disk cache is reasonable for those tasks,
but honestly, I don't care whether the updatedb process takes 10 or 20
minutes in the night. But I do care if switching between applications
needs >10 seconds in the morning.

Would it be possible to trigger paging in specific applications from
userspace? So I might run something like

echo -n firefox-bin > /proc/sys/vm/page-in
echo -n soffice-bin > /proc/sys/vm/page-in
...

after my nightly cron jobs have filled the memory with disk cache data
that won't be useful anymore, because in my daily work I rarely touch
10% of the filesystem.

Regards,
Jim

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

* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
  2006-01-14 13:53   ` Jim MacBaine
@ 2006-01-14 15:45     ` Denis Vlasenko
  0 siblings, 0 replies; 7+ messages in thread
From: Denis Vlasenko @ 2006-01-14 15:45 UTC (permalink / raw)
  To: Jim MacBaine; +Cc: linux-kernel, Nick Craig-Wood

On Saturday 14 January 2006 15:53, Jim MacBaine wrote:
> On 1/14/06, Nick Craig-Wood <nick@craig-wood.com> wrote:
> 
> > On my home workstation I do a lot of stuff with very large video
> > files, so set swappiness to 0 some time ago so using these large files
> > would stop all the applications getting pushed out into swap.
> 
> My motivation was similar: My desktop usually runs 24 hrs and I leave
> large applications which I use from time to time always open. Like
> OpenOffice, Firefox, Emacs with large buffers, etc.  In the night, the
> machine performs two disk-intensive tasks.  First a backup then
> updatedb. And every morning about 650 MB of 1 GB RAM is used for
> caches and all my application need to be swapped in before I can use
> them.
> 
> Of course, the increase of disk cache is reasonable for those tasks,
> but honestly, I don't care whether the updatedb process takes 10 or 20
> minutes in the night. But I do care if switching between applications
> needs >10 seconds in the morning.
>
> Would it be possible to trigger paging in specific applications from
> userspace? So I might run something like
> 
> echo -n firefox-bin > /proc/sys/vm/page-in
> echo -n soffice-bin > /proc/sys/vm/page-in
> ...

Crude, but may work:

swapoff -a
swapon -a

> after my nightly cron jobs have filled the memory with disk cache data
> that won't be useful anymore, because in my daily work I rarely touch
> 10% of the filesystem.
--
vda

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

* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
  2006-01-13 16:43   ` Jim MacBaine
@ 2006-01-13 18:04     ` Ram Gupta
  0 siblings, 0 replies; 7+ messages in thread
From: Ram Gupta @ 2006-01-13 18:04 UTC (permalink / raw)
  To: Jim MacBaine; +Cc: linux-kernel

On 1/13/06, Jim MacBaine <jmacbaine@gmail.com> wrote:
> On 1/13/06, Ram Gupta <ram.gupta5@gmail.com> wrote:
> It _would_ be ok if swappiness == 0 would mean that the kernel will
> not swap at all. That's not the case. Even without an excessive use of
> tmpfs the kernel found ~250 MB of unused memory which it swapped out
> during the last days with swappiness == 0.
>
> Regards,
> Jim
>

I correct myself. swappiness == 0 does not mean that kernel will not try to
 swap at all but this value decreases the swapping.
swap_tendency = mapped_ratio / 2 + distress + vm_swappiness;

swap_tendency depends on swappiness and affects the memory reclaimation.

Regards
Ram Gupta

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

* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
  2006-01-13 16:32 ` Ram Gupta
@ 2006-01-13 16:43   ` Jim MacBaine
  2006-01-13 18:04     ` Ram Gupta
  0 siblings, 1 reply; 7+ messages in thread
From: Jim MacBaine @ 2006-01-13 16:43 UTC (permalink / raw)
  To: Ram Gupta; +Cc: linux-kernel

On 1/13/06, Ram Gupta <ram.gupta5@gmail.com> wrote:

> This is ok. When the swappiness variable  is set to zero kernel does
> not try to swap out processes. So once all memory is used up by
> processes it can not free up memory by swapping and hence had to kill
> process.

It _would_ be ok if swappiness == 0 would mean that the kernel will
not swap at all. That's not the case. Even without an excessive use of
tmpfs the kernel found ~250 MB of unused memory which it swapped out
during the last days with swappiness == 0.

Regards,
Jim

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

* Re: /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
  2006-01-13 15:55 Jim MacBaine
@ 2006-01-13 16:32 ` Ram Gupta
  2006-01-13 16:43   ` Jim MacBaine
  0 siblings, 1 reply; 7+ messages in thread
From: Ram Gupta @ 2006-01-13 16:32 UTC (permalink / raw)
  To: Jim MacBaine; +Cc: linux-kernel

On 1/13/06, Jim MacBaine <jmacbaine@gmail.com> wrote:
> Hello,
>
> the OOM killer just killed some of my processes while the system still
> had >2.5 GB of free swap. I'm running vanilla 2.6.15 on my desktop.
> The machine is a single Athlon64, 1 GB RAM, 3 GB swap, x86_64 kernel,

This is ok. When the swappiness variable  is set to zero kernel does
not try to swap out processes. So once all memory is used up by
processes it can not free up memory by swapping and hence had to kill
process.

Regards
Ram Gupta

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

* /proc/sys/vm/swappiness == 0 makes OOM killer go beserk
@ 2006-01-13 15:55 Jim MacBaine
  2006-01-13 16:32 ` Ram Gupta
  0 siblings, 1 reply; 7+ messages in thread
From: Jim MacBaine @ 2006-01-13 15:55 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 835 bytes --]

Hello,

the OOM killer just killed some of my processes while the system still
had >2.5 GB of free swap. I'm running vanilla 2.6.15 on my desktop.
The machine is a single Athlon64, 1 GB RAM, 3 GB swap, x86_64 kernel,
(mostly) i386 userland.  A few days ago I have set
/proc/sys/vm/swappiness to 0 to see whether it would increase the
interactive performance. This was successful to some extent but with
side effects as I just saw:

I was compiling QT4 in /tmp which is a tmpfs, size 2.5 GB, of which
~1.0 GB were used at that moment. This was when the OOM killer decided
to kill some (appearently random) processes.

I was able to reproduce this behaviour a few minutes later.  After
setting /proc/sys/vm/swappiness to 10 everything is ok again. I have
attached the kernel messages of the oom killer.

Regards,
Jim

[-- Attachment #2: 01-syslog.txt --]
[-- Type: text/plain, Size: 26211 bytes --]

Jan 13 14:39:32 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:62
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219844 inactive:1011 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871284kB inactive:4044kB present:1017768kB pages_scanned:1018871 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0x200d2, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:33 localhost kernel: 5063 reserved pages
Jan 13 14:39:33 localhost kernel: 130083 pages shared
Jan 13 14:39:33 localhost kernel: 13895 pages swap cached
Jan 13 14:39:33 localhost kernel: Out of Memory: Killed process 3718 (firefox-bin).
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:63
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219800 inactive:1055 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8403 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871108kB inactive:4220kB present:1017768kB pages_scanned:1018927 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:33 localhost kernel: 5063 reserved pages
Jan 13 14:39:33 localhost kernel: 130083 pages shared
Jan 13 14:39:33 localhost kernel: 13895 pages swap cached
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:64
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219794 inactive:1061 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8404 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871084kB inactive:4244kB present:1017768kB pages_scanned:1018983 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:33 localhost kernel: Mem-info:
Jan 13 14:39:33 localhost kernel: DMA per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:33 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:64
Jan 13 14:39:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:33 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:33 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:33 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:33 localhost kernel: Active:219794 inactive:1061 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:33 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8404 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:33 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871084kB inactive:4244kB present:1017768kB pages_scanned:1018983 all_unreclaimable? yes
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:33 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:33 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:33 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:33 localhost kernel: Normal: empty
Jan 13 14:39:33 localhost kernel: HighMem: empty
Jan 13 14:39:33 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:33 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:33 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:33 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:33 localhost kernel: 5063 reserved pages
Jan 13 14:39:33 localhost kernel: 130083 pages shared
Jan 13 14:39:33 localhost kernel: 13895 pages swap cached
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:33 localhost kernel: 5063 reserved pages
Jan 13 14:39:33 localhost kernel: 130083 pages shared
Jan 13 14:39:33 localhost kernel: 13895 pages swap cached
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:33 localhost kernel: 5063 reserved pages
Jan 13 14:39:33 localhost kernel: 130083 pages shared
Jan 13 14:39:33 localhost kernel: 13895 pages swap cached
Jan 13 14:39:33 localhost kernel: 262064 pages of RAM
Jan 13 14:39:34 localhost kernel: 5063 reserved pages
Jan 13 14:39:34 localhost kernel: 130083 pages shared
Jan 13 14:39:34 localhost kernel: 13895 pages swap cached
Jan 13 14:39:34 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 14:39:34 localhost kernel: Mem-info:
Jan 13 14:39:34 localhost kernel: DMA per-cpu:
Jan 13 14:39:34 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 14:39:34 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 14:39:34 localhost kernel: DMA32 per-cpu:
Jan 13 14:39:34 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:64
Jan 13 14:39:34 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:56
Jan 13 14:39:34 localhost kernel: Normal per-cpu: empty
Jan 13 14:39:34 localhost kernel: HighMem per-cpu: empty
Jan 13 14:39:34 localhost kernel: Free pages:        8008kB (0kB HighMem)
Jan 13 14:39:34 localhost kernel: Active:219794 inactive:1061 dirty:0 writeback:0 unstable:0 free:2002 slab:14732 mapped:218887 pagetables:6139
Jan 13 14:39:34 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8092kB inactive:0kB present:12732kB pages_scanned:8404 all_unreclaimable? yes
Jan 13 14:39:34 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 14:39:34 localhost kernel: DMA32 free:3988kB min:4008kB low:5008kB high:6012kB active:871084kB inactive:4244kB present:1017768kB pages_scanned:1018983 all_unreclaimable? yes
Jan 13 14:39:34 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:34 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:34 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:34 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 14:39:34 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 14:39:34 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 14:39:34 localhost kernel: DMA32: 5*4kB 6*8kB 3*16kB 3*32kB 9*64kB 3*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 3988kB
Jan 13 14:39:34 localhost kernel: Normal: empty
Jan 13 14:39:34 localhost kernel: HighMem: empty
Jan 13 14:39:34 localhost kernel: Swap cache: add 883961, delete 870066, find 924670/961587, race 0+0
Jan 13 14:39:34 localhost kernel: Free swap  = 2914940kB
Jan 13 14:39:34 localhost kernel: Total swap = 3410080kB
Jan 13 14:39:34 localhost kernel: Free swap:       2914940kB
Jan 13 14:39:34 localhost kernel: 262064 pages of RAM
Jan 13 14:39:34 localhost kernel: 5063 reserved pages
Jan 13 14:39:34 localhost kernel: 130083 pages shared
Jan 13 14:39:34 localhost kernel: 13895 pages swap cached
Jan 13 14:39:34 localhost kernel: 262064 pages of RAM
Jan 13 14:39:34 localhost kernel: 5063 reserved pages
Jan 13 14:39:34 localhost kernel: 130083 pages shared
Jan 13 14:39:34 localhost kernel: 13895 pages swap cached
Jan 13 14:39:34 localhost kernel: 262064 pages of RAM
Jan 13 14:39:34 localhost kernel: 5063 reserved pages
Jan 13 14:39:34 localhost kernel: 130083 pages shared
Jan 13 14:39:34 localhost kernel: 13895 pages swap cached
Jan 13 14:39:34 localhost kernel: Out of Memory: Killed process 3757 (firefox-bin).
Jan 13 14:39:34 localhost kernel: 262064 pages of RAM
Jan 13 14:39:34 localhost kernel: 5063 reserved pages
Jan 13 14:39:34 localhost kernel: 130083 pages shared
Jan 13 14:39:34 localhost kernel: 13895 pages swap cached

[-- Attachment #3: 02-syslog.txt --]
[-- Type: text/plain, Size: 13284 bytes --]

Jan 13 15:04:32 localhost kernel: oom-killer: gfp_mask=0x200d2, order=0
Jan 13 15:04:33 localhost kernel: Mem-info:
Jan 13 15:04:33 localhost kernel: DMA per-cpu:
Jan 13 15:04:33 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 15:04:33 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 15:04:33 localhost kernel: DMA32 per-cpu:
Jan 13 15:04:33 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:32
Jan 13 15:04:33 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:49
Jan 13 15:04:33 localhost kernel: Normal per-cpu: empty
Jan 13 15:04:34 localhost kernel: HighMem per-cpu: empty
Jan 13 15:04:34 localhost kernel: Free pages:        8320kB (0kB HighMem)
Jan 13 15:04:34 localhost kernel: Active:212221 inactive:1666 dirty:0 writeback:0 unstable:0 free:2080 slab:17323 mapped:212030 pagetables:9522
Jan 13 15:04:34 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8056kB inactive:0kB present:12732kB pages_scanned:9833 all_unreclaimable? yes
Jan 13 15:04:34 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 15:04:34 localhost kernel: DMA32 free:4300kB min:4008kB low:5008kB high:6012kB active:840828kB inactive:6664kB present:1017768kB pages_scanned:970229 all_unreclaimable? yes
Jan 13 15:04:34 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:34 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 15:04:35 localhost kernel: DMA32: 85*4kB 9*8kB 1*16kB 9*32kB 10*64kB 1*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 4300kB
Jan 13 15:04:35 localhost kernel: Normal: empty
Jan 13 15:04:35 localhost kernel: HighMem: empty
Jan 13 15:04:35 localhost kernel: Swap cache: add 1106805, delete 1092312, find 991386/1041271, race 0+0
Jan 13 15:04:35 localhost kernel: Free swap  = 2500676kB
Jan 13 15:04:35 localhost kernel: Total swap = 3410080kB
Jan 13 15:04:35 localhost kernel: Free swap:       2500676kB
Jan 13 15:04:35 localhost kernel: 262064 pages of RAM
Jan 13 15:04:35 localhost kernel: 5063 reserved pages
Jan 13 15:04:35 localhost kernel: 161996 pages shared
Jan 13 15:04:35 localhost kernel: 14493 pages swap cached
Jan 13 15:04:35 localhost kernel: Out of Memory: Killed process 9698 (klauncher).
Jan 13 15:04:35 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 15:04:35 localhost kernel: Mem-info:
Jan 13 15:04:35 localhost kernel: DMA per-cpu:
Jan 13 15:04:35 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 15:04:35 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 15:04:35 localhost kernel: DMA32 per-cpu:
Jan 13 15:04:35 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:106
Jan 13 15:04:35 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:49
Jan 13 15:04:35 localhost kernel: Normal per-cpu: empty
Jan 13 15:04:35 localhost kernel: HighMem per-cpu: empty
Jan 13 15:04:35 localhost kernel: Free pages:        8320kB (0kB HighMem)
Jan 13 15:04:35 localhost kernel: Active:212152 inactive:1698 dirty:0 writeback:1 unstable:0 free:2080 slab:17323 mapped:211946 pagetables:9496
Jan 13 15:04:35 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8056kB inactive:0kB present:12732kB pages_scanned:9833 all_unreclaimable? yes
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 15:04:35 localhost kernel: DMA32 free:4300kB min:4008kB low:5008kB high:6012kB active:840552kB inactive:6792kB present:1017768kB pages_scanned:984815 all_unreclaimable? yes
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 15:04:35 localhost kernel: DMA32: 85*4kB 9*8kB 1*16kB 9*32kB 10*64kB 1*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 4300kB
Jan 13 15:04:35 localhost kernel: Normal: empty
Jan 13 15:04:35 localhost kernel: HighMem: empty
Jan 13 15:04:35 localhost kernel: Swap cache: add 1106833, delete 1092354, find 991386/1041275, race 0+0
Jan 13 15:04:35 localhost kernel: Free swap  = 2501080kB
Jan 13 15:04:35 localhost kernel: Total swap = 3410080kB
Jan 13 15:04:35 localhost kernel: Free swap:       2501080kB
Jan 13 15:04:35 localhost kernel: 262064 pages of RAM
Jan 13 15:04:35 localhost kernel: 5063 reserved pages
Jan 13 15:04:35 localhost kernel: 161239 pages shared
Jan 13 15:04:35 localhost kernel: 14479 pages swap cached
Jan 13 15:04:35 localhost kernel: Out of Memory: Killed process 9739 (artsd).
Jan 13 15:04:35 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 15:04:35 localhost kernel: Mem-info:
Jan 13 15:04:35 localhost kernel: DMA per-cpu:
Jan 13 15:04:35 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 15:04:35 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 15:04:35 localhost kernel: DMA32 per-cpu:
Jan 13 15:04:35 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:107
Jan 13 15:04:35 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:49
Jan 13 15:04:35 localhost kernel: Normal per-cpu: empty
Jan 13 15:04:35 localhost kernel: HighMem per-cpu: empty
Jan 13 15:04:35 localhost kernel: Free pages:        8320kB (0kB HighMem)
Jan 13 15:04:35 localhost kernel: Active:212152 inactive:1698 dirty:0 writeback:1 unstable:0 free:2080 slab:17323 mapped:211946 pagetables:9496
Jan 13 15:04:35 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8056kB inactive:0kB present:12732kB pages_scanned:9833 all_unreclaimable? yes
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 15:04:35 localhost kernel: DMA32 free:4300kB min:4008kB low:5008kB high:6012kB active:840552kB inactive:6792kB present:1017768kB pages_scanned:984869 all_unreclaimable? yes
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:35 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:35 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 15:04:36 localhost kernel: DMA32: 85*4kB 9*8kB 1*16kB 9*32kB 10*64kB 1*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 4300kB
Jan 13 15:04:36 localhost kernel: Normal: empty
Jan 13 15:04:36 localhost kernel: HighMem: empty
Jan 13 15:04:36 localhost kernel: Swap cache: add 1106833, delete 1092354, find 991386/1041275, race 0+0
Jan 13 15:04:36 localhost kernel: Free swap  = 2501080kB
Jan 13 15:04:36 localhost kernel: Total swap = 3410080kB
Jan 13 15:04:36 localhost kernel: Free swap:       2501080kB
Jan 13 15:04:36 localhost kernel: 262064 pages of RAM
Jan 13 15:04:36 localhost kernel: 5063 reserved pages
Jan 13 15:04:36 localhost kernel: 161239 pages shared
Jan 13 15:04:36 localhost kernel: 14479 pages swap cached
Jan 13 15:04:36 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 15:04:36 localhost kernel: Mem-info:
Jan 13 15:04:36 localhost kernel: DMA per-cpu:
Jan 13 15:04:36 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 15:04:36 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 15:04:36 localhost kernel: DMA32 per-cpu:
Jan 13 15:04:36 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:107
Jan 13 15:04:36 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:49
Jan 13 15:04:36 localhost kernel: Normal per-cpu: empty
Jan 13 15:04:36 localhost kernel: HighMem per-cpu: empty
Jan 13 15:04:36 localhost kernel: Free pages:        8320kB (0kB HighMem)
Jan 13 15:04:36 localhost kernel: Active:212152 inactive:1698 dirty:0 writeback:1 unstable:0 free:2080 slab:17323 mapped:211946 pagetables:9496
Jan 13 15:04:36 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8056kB inactive:0kB present:12732kB pages_scanned:9833 all_unreclaimable? yes
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 15:04:36 localhost kernel: DMA32 free:4300kB min:4008kB low:5008kB high:6012kB active:840552kB inactive:6792kB present:1017768kB pages_scanned:984923 all_unreclaimable? yes
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 15:04:36 localhost kernel: DMA32: 85*4kB 9*8kB 1*16kB 9*32kB 10*64kB 1*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 4300kB
Jan 13 15:04:36 localhost kernel: Normal: empty
Jan 13 15:04:36 localhost kernel: HighMem: empty
Jan 13 15:04:36 localhost kernel: Swap cache: add 1106833, delete 1092354, find 991386/1041275, race 0+0
Jan 13 15:04:36 localhost kernel: Free swap  = 2501080kB
Jan 13 15:04:36 localhost kernel: Total swap = 3410080kB
Jan 13 15:04:36 localhost kernel: Free swap:       2501080kB
Jan 13 15:04:36 localhost kernel: oom-killer: gfp_mask=0xd0, order=0
Jan 13 15:04:36 localhost kernel: Mem-info:
Jan 13 15:04:36 localhost kernel: DMA per-cpu:
Jan 13 15:04:36 localhost kernel: cpu 0 hot: low 0, high 0, batch 1 used:0
Jan 13 15:04:36 localhost kernel: cpu 0 cold: low 0, high 0, batch 1 used:0
Jan 13 15:04:36 localhost kernel: DMA32 per-cpu:
Jan 13 15:04:36 localhost kernel: cpu 0 hot: low 0, high 186, batch 31 used:107
Jan 13 15:04:36 localhost kernel: cpu 0 cold: low 0, high 62, batch 15 used:49
Jan 13 15:04:36 localhost kernel: Normal per-cpu: empty
Jan 13 15:04:36 localhost kernel: HighMem per-cpu: empty
Jan 13 15:04:36 localhost kernel: Free pages:        8320kB (0kB HighMem)
Jan 13 15:04:36 localhost kernel: Active:212152 inactive:1698 dirty:0 writeback:1 unstable:0 free:2080 slab:17323 mapped:211946 pagetables:9496
Jan 13 15:04:36 localhost kernel: DMA free:4020kB min:48kB low:60kB high:72kB active:8056kB inactive:0kB present:12732kB pages_scanned:9833 all_unreclaimable? yes
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 993 993 993
Jan 13 15:04:36 localhost kernel: DMA32 free:4300kB min:4008kB low:5008kB high:6012kB active:840552kB inactive:6792kB present:1017768kB pages_scanned:984923 all_unreclaimable? yes
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: Normal free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: HighMem free:0kB min:128kB low:128kB high:128kB active:0kB inactive:0kB present:0kB pages_scanned:0 all_unreclaimable? no
Jan 13 15:04:36 localhost kernel: lowmem_reserve[]: 0 0 0 0
Jan 13 15:04:36 localhost kernel: DMA: 1*4kB 0*8kB 1*16kB 3*32kB 1*64kB 0*128kB 1*256kB 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4020kB
Jan 13 15:04:36 localhost kernel: DMA32: 85*4kB 9*8kB 1*16kB 9*32kB 10*64kB 1*128kB 1*256kB 1*512kB 0*1024kB 1*2048kB 0*4096kB = 4300kB
Jan 13 15:04:36 localhost kernel: Normal: empty
Jan 13 15:04:36 localhost kernel: HighMem: empty
Jan 13 15:04:36 localhost kernel: Swap cache: add 1106833, delete 1092354, find 991386/1041275, race 0+0
Jan 13 15:04:36 localhost kernel: Free swap  = 2501080kB
Jan 13 15:04:36 localhost kernel: Total swap = 3410080kB
Jan 13 15:04:36 localhost kernel: Free swap:       2501080kB
Jan 13 15:04:36 localhost kernel: 262064 pages of RAM
Jan 13 15:04:36 localhost kernel: 5063 reserved pages
Jan 13 15:04:36 localhost kernel: 161240 pages shared
Jan 13 15:04:36 localhost kernel: 14487 pages swap cached
Jan 13 15:04:36 localhost kernel: 262064 pages of RAM
Jan 13 15:04:36 localhost kernel: 5063 reserved pages
Jan 13 15:04:36 localhost kernel: 160303 pages shared
Jan 13 15:04:36 localhost kernel: 14337 pages swap cached
Jan 13 15:04:36 localhost kernel: Out of Memory: Killed process 9743 (kwin).

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

end of thread, other threads:[~2006-01-14 15:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <5uzvD-8tr-19@gated-at.bofh.it>
2006-01-14 11:02 ` /proc/sys/vm/swappiness == 0 makes OOM killer go beserk Nick Craig-Wood
2006-01-14 13:53   ` Jim MacBaine
2006-01-14 15:45     ` Denis Vlasenko
2006-01-13 15:55 Jim MacBaine
2006-01-13 16:32 ` Ram Gupta
2006-01-13 16:43   ` Jim MacBaine
2006-01-13 18:04     ` Ram Gupta

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).