Re: [PATCH] mm/util.c: Add error logs for commitment overflow

From: pintu
Date: Sun Oct 18 2020 - 23:02:48 EST


On 2020-10-05 12:50, Michal Hocko wrote:
On Fri 02-10-20 21:53:37, pintu@xxxxxxxxxxxxxx wrote:
On 2020-10-02 17:47, Michal Hocko wrote:

> > __vm_enough_memory: commitment overflow: ppid:150, pid:164,
> > pages:62451
> > fork failed[count:0]: Cannot allocate memory
>
> While I understand that fork failing due to overrcomit heuristic is non
> intuitive and I have seen people scratching heads due to this in the
> past I am not convinced this is a right approach to tackle the problem.

Dear Michal,
First, thank you so much for your review and comments.
I totally agree with you.

> First off, referencing pids is not really going to help much if process
> is short lived.

Yes, I agree with you.
But I think this is most important mainly for short lived processes itself.
Because, when this situation occurs, no one knows who could be the culprit.

Pid will not tell you much for those processes, right?

However, user keeps dumping "ps" or "top" in background to reproduce once
again.

I do not think this would be an effective way to catch the problem.
Especially with _once reporting. My experience with these reports is
that a reporter notices a malfunctioning (usually more complex)
workload. In some cases ENOMEM from fork is reported into the log by the
userspace.

For others it is strace -f that tells us that fork is failing and a
test with OVERCOMMIT_ALWAYS usually confirms the theory that this is
the culprit. But a rule of thumb is that it is almost always overcommit
to blame. Why? An undocumented secret is that ENOMEM resulting from an
actual memory allocation in the fork/clone path is close to impossible
because kernel does all it can to satisfy them (an even invokes OOM
killer). There are exceptions (e.g. like high order allocation) but
those should be very rare in that path.

At this time, we can easily match the pid, process-name (at least in most
cases).

Maybe our definitions of short lived processes differ but in my book
those are pretty hard to catch in flight.

> Secondly, __vm_enough_memory is about any address space
> allocation. Why would you be interested in parent when doing mmap?
>

Yes agree, we can remove ppid from here.
I thought it might be useful at least in case of fork (or short lived
process).

I suspect you have missed my point here. Let me clarify a bit more.
__vm_enough_memory is called from much more places than fork.
Essentially any mmap, brk etc are going though this. This is where
parent pid certainly doesn't make any sense. In fork this is a different
case because your forked process pid on its own doesn't make much sense
as it is going to die very quickly anyway. This is when parent is likely
a more important information.

That being said the content really depends on the specific path and that
suggestes that you are trying to log at a wrong layer.

Another question is whether we really need a logging done by the kernel.
Ratelimiting would be tricky to get right and we do not want to allow an
easy way to swamp logs either.
As already mentioned ENOMEM usually means overcommit failure. Maybe we
want to be more explicit this in the man page?


Thank you so much for your feedback.
First of all I am sorry for my delayed response.

As I understand, the conclusion here is that:
a) The pr_err_once is not helpful and neither pr_err_ratelimited ?
Even with this below logs:
+ pr_err_ratelimited("vm memory overflow: pid:%d, name: %s, pages:%ld\n",
+ current->pid, current->comm, pages);

b) This can be invoked from many places so we are adding the logging at wrong layer?
If so, any other better places which can be explored?

c) Adding logging at kernel layer is not the right approach to tackle this problem ?

d) Another thing we can do is, update the man page with more detailed information about this commitment overflow ?

e) May be returning ENOMEM (Cannot allocate memory) from VM path is slightly misleading for user space folks even though there are enough memory?
=> Either we can introduce ENOVMEM (Cannot create virtual memory mapping)
=> Or, update the documentation with approach to further debug this issue?

If there are any more suggestions to easily catch this issue please let us know, we can explore further.


Thanks,
Pintu