Home
last modified time | relevance | path

Searched refs:bytes_alloc (Results 1 – 7 of 7) sorted by relevance

/linux-4.1.27/include/trace/events/
Dkmem.h16 size_t bytes_alloc,
19 TP_ARGS(call_site, ptr, bytes_req, bytes_alloc, gfp_flags),
25 __field( size_t, bytes_alloc )
33 __entry->bytes_alloc = bytes_alloc;
41 __entry->bytes_alloc,
48 size_t bytes_req, size_t bytes_alloc, gfp_t gfp_flags),
50 TP_ARGS(call_site, ptr, bytes_req, bytes_alloc, gfp_flags)
56 size_t bytes_req, size_t bytes_alloc, gfp_t gfp_flags),
58 TP_ARGS(call_site, ptr, bytes_req, bytes_alloc, gfp_flags)
66 size_t bytes_alloc,
[all …]
/linux-4.1.27/tools/perf/
Dbuiltin-kmem.c45 u64 bytes_alloc; member
63 int bytes_req, int bytes_alloc, int cpu) in insert_alloc_stat() argument
84 data->bytes_alloc += bytes_alloc; in insert_alloc_stat()
95 data->bytes_alloc = bytes_alloc; in insert_alloc_stat()
106 int bytes_req, int bytes_alloc) in insert_caller_stat() argument
127 data->bytes_alloc += bytes_alloc; in insert_caller_stat()
138 data->bytes_alloc = bytes_alloc; in insert_caller_stat()
153 bytes_alloc = perf_evsel__intval(evsel, sample, "bytes_alloc"); in perf_evsel__process_alloc_event() local
155 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, sample->cpu) || in perf_evsel__process_alloc_event()
156 insert_caller_stat(call_site, bytes_req, bytes_alloc)) in perf_evsel__process_alloc_event()
[all …]
/linux-4.1.27/tools/perf/scripts/python/
Dcheck-perf-trace.py41 common_callchain, call_site, ptr, bytes_req, bytes_alloc, argument
50 (call_site, ptr, bytes_req, bytes_alloc,
/linux-4.1.27/tools/perf/scripts/perl/
Dcheck-perf-trace.pl47 $call_site, $ptr, $bytes_req, $bytes_alloc,
57 $call_site, $ptr, $bytes_req, $bytes_alloc,
/linux-4.1.27/Documentation/trace/
Devents-kmem.txt17 kmalloc call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s
18 kmalloc_node call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d
30 kmem_cache_alloc call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s
31 kmem_cache_alloc_node call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d
Devents.txt397 bytes_req == 256' and 'kmem:kmalloc if bytes_alloc == 256' (they
/linux-4.1.27/kernel/trace/
Dring_buffer.c4723 unsigned long bytes_alloc; member
4806 data->bytes_alloc += event_len; in rb_write_something()
4951 total_alloc = data->bytes_alloc + data->bytes_alloc_nested; in test_ringbuffer()