[PATCH] mm-cma-add-trace-events-for-cma-allocations-and-freeings-fix

2015-04-02 Thread Stefan Strogin
Trace 'align' too in cma_alloc trace event. Signed-off-by: Stefan Strogin --- include/trace/events/cma.h | 11 +++ mm/cma.c | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/include/trace/events/cma.h b/include/trace/events/cma.h index

Re: [PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-02 Thread Stefan Strogin
Hello Joonsoo, On 02/04/15 10:33, Joonsoo Kim wrote: > Hello, > > On Wed, Apr 01, 2015 at 04:31:43PM +0300, Stefan Strogin wrote: >> Add trace events for cma_alloc() and cma_release(). >> >> The cma_alloc tracepoint is used both for successful and failed allocations, >> in case of allocation

Re: [PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-02 Thread Joonsoo Kim
Hello, On Wed, Apr 01, 2015 at 04:31:43PM +0300, Stefan Strogin wrote: > Add trace events for cma_alloc() and cma_release(). > > The cma_alloc tracepoint is used both for successful and failed allocations, > in case of allocation failure pfn=-1UL is stored and printed. > > Signed-off-by: Stefan

Re: [PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-02 Thread Joonsoo Kim
Hello, On Wed, Apr 01, 2015 at 04:31:43PM +0300, Stefan Strogin wrote: Add trace events for cma_alloc() and cma_release(). The cma_alloc tracepoint is used both for successful and failed allocations, in case of allocation failure pfn=-1UL is stored and printed. Signed-off-by: Stefan

Re: [PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-02 Thread Stefan Strogin
Hello Joonsoo, On 02/04/15 10:33, Joonsoo Kim wrote: Hello, On Wed, Apr 01, 2015 at 04:31:43PM +0300, Stefan Strogin wrote: Add trace events for cma_alloc() and cma_release(). The cma_alloc tracepoint is used both for successful and failed allocations, in case of allocation failure

[PATCH] mm-cma-add-trace-events-for-cma-allocations-and-freeings-fix

2015-04-02 Thread Stefan Strogin
Trace 'align' too in cma_alloc trace event. Signed-off-by: Stefan Strogin stefan.stro...@gmail.com --- include/trace/events/cma.h | 11 +++ mm/cma.c | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/include/trace/events/cma.h

[PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-01 Thread Stefan Strogin
Add trace events for cma_alloc() and cma_release(). The cma_alloc tracepoint is used both for successful and failed allocations, in case of allocation failure pfn=-1UL is stored and printed. Signed-off-by: Stefan Strogin --- Took out from the patch set "mm: cma: add some debug information for

[PATCH] mm: cma: add trace events for CMA allocations and freeings

2015-04-01 Thread Stefan Strogin
Add trace events for cma_alloc() and cma_release(). The cma_alloc tracepoint is used both for successful and failed allocations, in case of allocation failure pfn=-1UL is stored and printed. Signed-off-by: Stefan Strogin stefan.stro...@gmail.com --- Took out from the patch set mm: cma: add some