Re: Out of memory management in embedded systems

Previous thread: Re: software unplug and plug USB by Tomasz Chmielewski on Friday, September 28, 2007 - 5:17 am. (9 messages)

Next thread: [PATCH 0/6] Use one zonelist per node instead of multiple zonelists v8 by Mel Gorman on Friday, September 28, 2007 - 7:23 am. (22 messages)
From: Daniel Spång
Date: Friday, September 28, 2007 - 5:55 am

Applications with dynamic input and dynamic memory usage have some
issues with the current overcommitting kernel. A high memory usage
situation eventually results in that a process is killed by the OOM
killer. This is especially evident in swapless embedded systems with
limited memory and no swap available.

Some kind of notification to the application that the available memory
is scarce and let the application free up some memory (e.g., by
flushing caches), could be used to improve the situation and avoid the
OOM killer. I am currently not aware of any general solution to this
problem, but I have found some approaches that might (or might not)
work:

o Turn off overcommit. Results in a waste of memory.

o Nokia uses a lowmem security module to signal on predetermined
thresholds. Currently available in the -omap tree. But this requires
manual tuning of the thresholds.
http://www.linuxjournal.com/article/8502

o Using madvise() with MADV_FREE to get the kernel to free mmaped
memory, typically application caches, when the kernel needs the
memory.

o A OOM handler that the application registers with the kernel, and
that the kernel executes before the OOM-killer steps in.

Does it exist any other solutions to this problem?

Daniel
-

From: linux-os (Dick Johnson)
Date: Friday, September 28, 2007 - 6:09 am

But an embedded system contains all the software that will
ever be executed on that system! If it is properly designed,
it can never run out of memory because everything it will
ever do is known at design time.

This should never be an issue with an embedded system.
If you have such a system issue, then you have
application(s) that have memory leaks because of
improper design or coding. For instance, there is
a common open-source web-server that is used in some
embedded systems. It has memory leaks. The solution,
if the server can't be fixed, is to execute a supervisor
process which periodically shuts it down and restarts
it --ugly, but effective if the developers refuse to
accept patches.

You shouldn't expect a kernel to be modified to "fix"
broken application code.

Cheers,
Dick Johnson
Penguin : Linux version 2.6.22.1 on an i686 machine (5588.29 BogoMips).
My book : http://www.AbominableFirebug.com/
_

****************************************************************
The information transmitted in this message is confidential and may be privileged.  Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited.  If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.

Thank you.
-

From: Daniel Spång
Date: Friday, September 28, 2007 - 6:30 am

Not if its input is not known beforehand. Take a browser in a mobile
phone as an example, it does not know at design time how big the web
pages are. On the other hand we want to use as much memory as
possible, for cache etc., a method that involves the kernel would
simplify this and avoids setting manual limits.

Daniel
-

From: linux-os (Dick Johnson)
Date: Friday, September 28, 2007 - 7:04 am

Any networked appliance can (will) throw data away if there are
no resources available.

The length of a web-page is not relevent, nor is the length
of any external data. Your example will buffer whatever it
can and not read anything more from the external source until
it has resources available unless it is broken.


Cheers,
Dick Johnson
Penguin : Linux version 2.6.22.1 on an i686 machine (5588.29 BogoMips).
My book : http://www.AbominableFirebug.com/
_

****************************************************************
The information transmitted in this message is confidential and may be privileged.  Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited.  If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.

Thank you.
-

From: Daniel Spång
Date: Friday, September 28, 2007 - 7:14 am

And how do you determine when no resources are availabe? We are using
overcommit here so malloc() will always return non null.
-

From: linux-os (Dick Johnson)
Date: Friday, September 28, 2007 - 8:16 am

A networked appliance using embedded software is not your daddy's
Chevrolet. Any task that is permanent needs to allocate all its
resources when it starts. That's how it knows how much there are,
and incidentally, it doesn't do it blindly. The system designer
must know how much memory is available in the system and how much
is allocated to the kernel.

The fact that you can give a fictitious value to malloc() is not
relevant. If you don't provide resources for malloc(), like
(ultimately) a swap file, then you can't assume that it can do
any design work for you.

An embedded system is NOT an ordinary system that happens to
boot from flash. An embedded system requires intelligent design.

It is important to understand how a virtual memory system
operates. The basics are that the kernel only "knows" that
a new page needs to be allocated when it encounters a trap
called a "page fault." If you don't have any memory resources
to free up (read no swap file to write a seldom-used task's
working set), then you are screwed --pure and simple. So,
if you don't provide any resources to actually use virtual
memory, then you need to make certain that virtual memory
and physical memory are, for all practical purposes, the same.

With embedded servers, it's usually very easy to limit the
number of connections allowed, therefore the amount of
dynamic resources that must be provided. With clients
it should be equally easy, but generic software won't
work because, for instance, Mozilla doesn't keep track
of the number of "windows" you have up and the number
of connections you have. HOWEVER, remember that malloc()
is a library call. You can substitute your own using
LD_PRELOAD, they keeps track of everything if you must
use generic software.


Cheers,
Dick Johnson
Penguin : Linux version 2.6.22.1 on an i686 machine (5588.29 BogoMips).
My book : http://www.AbominableFirebug.com/
_

****************************************************************
The information transmitted in this ...
From: Daniel Spång
Date: Friday, September 28, 2007 - 1:58 pm

We might be talking about slightly different systems. I agree that
systems that are really embedded, in the classic meaning often with
real time constraints, should be designed as you suggests. But there
are a lot of other systems that almost actually are ordinary systems
but with limited memory and often without demand paging. This could be
a set top box, a  video game console or a mobile phone that run
dynamic applications.

Actually this is not only about applications allocating an unknown
amount of dynamic memory. A similar situation could also appear when
we run an unknown number of applications at once, each allocating just
a static amount of memory and then later starts to touching it.

For those systems I think we need a method to dynamically decrease the
working set of a process when memory is scarce, and not just accept
that we "are screwed" and let the OOM killer solve the problem.
-

From: Abhishek Sagar
Date: Saturday, September 29, 2007 - 12:48 pm

In certain cases, I guess it could be a problem in the embedded
environment. Especially while running general purpose applications
with carefully designed real-time tasks. An OOM in such a case is
unacceptable.

The whole problem looks like an extension of page frame reclamation in
user space. If the user application's cache was owned by the kernel
(something like vmsplice with SPLICE_F_GIFT?), and the application
managed it accordingly, then they could probably be brought under the
purview of kernel's memory reclamation. This would mean that
applications wouldn't need to be triggered on low memory, and leave
memory freeing to the kernel (simpler and uniform). Perhaps it is even
possible to do this in the kernel currently somehow...?

--
Abhishek Sagar

-

From: Rik van Riel
Date: Friday, September 28, 2007 - 7:17 am

On Fri, 28 Sep 2007 10:04:23 -0400

That is exactly what Daniel proposed in his first email.

I think his idea makes sense.

-- 
"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it." - Brian W. Kernighan
-

From: Eric Dumazet
Date: Friday, September 28, 2007 - 7:36 am

On Fri, 28 Sep 2007 10:17:11 -0400

IBM AIX uses SIGDANGER, that kernel can raise in OOM conditions to warn
processes that are willing to handle this signal (default action for the
 SIGDANGER signal is to ignore the signal)

-

From: Rik van Riel
Date: Friday, September 28, 2007 - 8:15 am

On Fri, 28 Sep 2007 16:36:34 +0200

I suspect that SIGDANGER is not the right approach, because glibc
memory arenas cannot be manipulated from inside a signal handler.

Also, "nearly OOM" is not the only such signal we would want to
send to userspace programs. It would also be useful to inform
userspace programs when we are about to start swapping something
out, so userspace can discard cached data instead of having to
wait for disk IO in the future.

A unix signal cannot encapsulate two different messages, while
something like a "/dev/lowmem" device can simply be added into
the program's main poll() loop and give many different messages.

-- 
"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it." - Brian W. Kernighan
-

From: Nicholas Miell
Date: Friday, September 28, 2007 - 4:00 pm

SIGDANGER could stick useful information in siginfo_t's si_code field
and be delivered via a signalfd.

-- 
Nicholas Miell <nmiell@comcast.net>

-

From: Daniel Phillips
Date: Friday, September 28, 2007 - 6:59 pm

In order to earn the right to fix this problem by inventing new Linux, 
first you need to post a traceback and a cat of /proc/meminfo to prove 
the OOM is a true one, as opposed to a second order effect of a 
writeout lockup.

Regards,

Daniel
-

Previous thread: Re: software unplug and plug USB by Tomasz Chmielewski on Friday, September 28, 2007 - 5:17 am. (9 messages)

Next thread: [PATCH 0/6] Use one zonelist per node instead of multiple zonelists v8 by Mel Gorman on Friday, September 28, 2007 - 7:23 am. (22 messages)