Skip to content

Commit

Permalink
percpu: improve percpu_alloc_percpu event trace
Browse files Browse the repository at this point in the history
Added bytes_alloc and gfp_flags fields to the output of the
percpu_alloc_percpu ftrace event. This is required to track
memcg-accounted percpu allocations.

Signed-off-by: Vasily Averin <vvs@openvz.org>
  • Loading branch information
Vasily Averin authored and intel-lab-lkp committed May 6, 2022
1 parent c87857e commit dee6876
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
17 changes: 12 additions & 5 deletions include/trace/events/percpu.h
Expand Up @@ -6,13 +6,16 @@
#define _TRACE_PERCPU_H

#include <linux/tracepoint.h>
#include <trace/events/mmflags.h>

TRACE_EVENT(percpu_alloc_percpu,

TP_PROTO(bool reserved, bool is_atomic, size_t size,
size_t align, void *base_addr, int off, void __percpu *ptr),
size_t align, void *base_addr, int off,
void __percpu *ptr, size_t bytes_alloc, gfp_t gfp_flags),

TP_ARGS(reserved, is_atomic, size, align, base_addr, off, ptr),
TP_ARGS(reserved, is_atomic, size, align, base_addr, off, ptr,
bytes_alloc, gfp_flags),

TP_STRUCT__entry(
__field( bool, reserved )
Expand All @@ -22,8 +25,9 @@ TRACE_EVENT(percpu_alloc_percpu,
__field( void *, base_addr )
__field( int, off )
__field( void __percpu *, ptr )
__field( size_t, bytes_alloc )
__field( gfp_t, gfp_flags )
),

TP_fast_assign(
__entry->reserved = reserved;
__entry->is_atomic = is_atomic;
Expand All @@ -32,12 +36,15 @@ TRACE_EVENT(percpu_alloc_percpu,
__entry->base_addr = base_addr;
__entry->off = off;
__entry->ptr = ptr;
__entry->bytes_alloc = bytes_alloc;
__entry->gfp_flags = gfp_flags;
),

TP_printk("reserved=%d is_atomic=%d size=%zu align=%zu base_addr=%p off=%d ptr=%p",
TP_printk("reserved=%d is_atomic=%d size=%zu align=%zu base_addr=%p off=%d ptr=%p bytes_alloc=%zu gfp_flags=%s",
__entry->reserved, __entry->is_atomic,
__entry->size, __entry->align,
__entry->base_addr, __entry->off, __entry->ptr)
__entry->base_addr, __entry->off, __entry->ptr,
__entry->bytes_alloc, show_gfp_flags(__entry->gfp_flags))
);

TRACE_EVENT(percpu_free_percpu,
Expand Down
8 changes: 4 additions & 4 deletions mm/percpu-internal.h
Expand Up @@ -113,7 +113,6 @@ static inline int pcpu_chunk_map_bits(struct pcpu_chunk *chunk)
return pcpu_nr_pages_to_map_bits(chunk->nr_pages);
}

#ifdef CONFIG_MEMCG_KMEM
/**
* pcpu_obj_full_size - helper to calculate size of each accounted object
* @size: size of area to allocate in bytes
Expand All @@ -123,13 +122,14 @@ static inline int pcpu_chunk_map_bits(struct pcpu_chunk *chunk)
*/
static inline size_t pcpu_obj_full_size(size_t size)
{
size_t extra_size;
size_t extra_size = 0;

extra_size = size / PCPU_MIN_ALLOC_SIZE * sizeof(struct obj_cgroup *);
#ifdef CONFIG_MEMCG_KMEM
extra_size += size / PCPU_MIN_ALLOC_SIZE * sizeof(struct obj_cgroup *);
#endif

return size * num_possible_cpus() + extra_size;
}
#endif /* CONFIG_MEMCG_KMEM */

#ifdef CONFIG_PERCPU_STATS

Expand Down
3 changes: 2 additions & 1 deletion mm/percpu.c
Expand Up @@ -1885,7 +1885,8 @@ static void __percpu *pcpu_alloc(size_t size, size_t align, bool reserved,
kmemleak_alloc_percpu(ptr, size, gfp);

trace_percpu_alloc_percpu(reserved, is_atomic, size, align,
chunk->base_addr, off, ptr);
chunk->base_addr, off, ptr,
pcpu_obj_full_size(size), gfp);

pcpu_memcg_post_alloc_hook(objcg, chunk, off, size);

Expand Down

0 comments on commit dee6876

Please sign in to comment.