Home
last modified time | relevance | path

Searched refs:total_alloc (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/tools/vm/
Dslabinfo.c421 unsigned long total_alloc; in slab_stats() local
428 total_alloc = s->alloc_fastpath + s->alloc_slowpath; in slab_stats()
431 if (!total_alloc) in slab_stats()
439 s->alloc_fastpath * 100 / total_alloc, in slab_stats()
442 total_alloc - s->alloc_fastpath, s->free_slowpath, in slab_stats()
443 (total_alloc - s->alloc_fastpath) * 100 / total_alloc, in slab_stats()
447 s->alloc_slab * 100 / total_alloc, in slab_stats()
452 (s->deactivate_to_head + s->deactivate_to_tail) * 100 / total_alloc, in slab_stats()
456 s->alloc_from_partial * 100 / total_alloc, in slab_stats()
461 s->cpu_partial_alloc * 100 / total_alloc, in slab_stats()
[all …]
/linux-4.1.27/kernel/trace/
Dring_buffer.c4938 unsigned long total_alloc; in test_ringbuffer() local
4951 total_alloc = data->bytes_alloc + data->bytes_alloc_nested; in test_ringbuffer()
4960 pr_info(" alloced bytes: %ld\n", total_alloc); in test_ringbuffer()
4999 if (RB_WARN_ON(buffer, total_len != total_alloc || in test_ringbuffer()