On Wed 13-07-16 13:21:26, Michal Hocko wrote: > On Tue 12-07-16 16:56:32, Matthias Dahl wrote: [...] > > If that support is baked into the Fedora provided kernel that is. If > > you could give me a few hints or pointers, how to properly do a allocator > > trace point and get some decent data out of it, that would be nice. > > You need to have a kernel with CONFIG_TRACEPOINTS and then enable them > via debugfs. You are interested in kmalloc tracepoint and specify a size > as a filter to only see those that are really interesting. I haven't > checked your slabinfo yet - hope to get to it later today. The largest contributors seem to be $ zcat slabinfo.txt.gz | awk '{printf "%s %d\n" , $1, $6*$15}' | head_and_tail.sh 133 | paste-with-diff.sh | sort -n -k3 initial diff [#pages] radix_tree_node 3444 2592 debug_objects_cache 388 46159 file_lock_ctx 114 138570 buffer_head 5616 238704 kmalloc-256 328 573164 bio-3 24 1118984 So it seems we are accumulating bios and 256B objects. Buffer heads as well but so much. Having over 4G worth of bios sounds really suspicious. Note that they pin pages to be written so this might be consuming the rest of the unaccounted memory! So the main question is why those bios do not get dispatched or finished. -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>