Re: [Patch] mm tracepoints update - use case.

From: KOSAKI Motohiro
Date: Sun Jun 21 2009 - 23:38:30 EST


Hi

> Thanks for the feedback Kosaki!
>
>
> > Scenario 1. OOM killer happend. why? and who bring it?
>
> Doesnt the showmem() and stack trace to the console when the OOM kill
> occurred show enough in the majority of cases? I realize that direct
> alloc_pages() calls are not accounted for here but that can be really
> invasive.

showmem() display _result_ of memory usage and fragmentation.
but Administrator often need to know the _reason_.

Plus, kmemtrace already trace slab allocate/free activity.
You mean you think this is really invasive?


> > Scenario 2. page allocation failure by memory fragmentation
>
> Are you talking about order>0 allocation failures here? Most of the
> slabs are single page allocations now.

Yes, order>0.
but I confused. Why do you talk about slab, not page alloc?

Note, non-x86 architecture freqently use order-1 allocation for
making stack.



> > Scenario 3. try_to_free_pages() makes very long latency. why?
>
> This is available in the mm tracepoints, they all include timestamps.

perhaps, no.
Administrator need to know the reason. not accumulated time. it's the result.

We can guess some reason
- IO congestion
- memory eating speed is fast than reclaim speed
- memory fragmentation

but it's only guess. we often need to get data.


> > Scenario 4. sar output that free memory dramatically reduced at 10 minute ago, and
> > it already recover now. What's happen?
>
> Is this really important? It would take buffering lots of data to
> figure out what happened in the past.

ok, my scenario description is a bit wrong.

if userland process explicitly consume memory or explicitely write
many data, it is true.

Is this more appropriate?

"userland process take the same action periodically, but only 10 minute ago
free memory reduced, why?"



> > - suspects
> > - kernel memory leak
>
> Other than direct callers to the page allocator isnt that covered with
> the kmemtrace stuff?

Yeah.
perhaps, kmemtrace enhance to cover page allocator is good approach.


> > - userland memory leak
>
> The mm tracepoints track all user space allocations and frees(perhaps
> too many?).

hmhm.


>
> > - stupid driver use too much memory
>
> hopefully kmemtrace will catch this?

ditto.
I agree with kmemtrace enhancement is good idea.

>
> > - userland application suddenly start to use much memory
>
> The mm tracepoints track all user space allocations and frees.

ok.


> > - what information are valuable?
> > - slab usage information (kmemtrace already does)
> > - page allocator usage information
> > - rss of all processes at oom happend
> > - why recent try_to_free_pages() can't reclaim any page?
>
> The counters in the mm tracepoints do give counts but not the reasons
> that the pagereclaim code fails.

That's very important key point. please don't ignore.



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/