On Sun, Feb 4, 2018 at 7:30 AM, Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> wrote: > > I agree with your arguments. A consequence of those arguments is that > function-based tracing should be expected to be used by kernel engineers > and experts who can adapt their scripts to follow code changes, and tune > the script based on their specific kernel version and configuration. Honestly, I think that's largely the case already. The main source of tracing is done by experts at big cloud companies, I bet. People who do it for performance reasons, or to find some anomaly. They're pretty intimate with the kernel. There _are_ "generic MIS" uses for tracing, and I think those are places where we may want architectural trace points. Things like gathering IO statistics etc. I personally think that one of the pain points with tracing has been exactly the fact that there are two *completely* different uses, and they have *completely* different requirements. There's the expert user, who basically wants tracepoints almost everywhere, and who is doing some really deep analysis of some random area. Then there's the "I just want an overview" MIS people, who care about things like "I want a histogram of packets sent according to criteria XYZ", who want some highlevel block IO performance, or who just want random system-wide statistics. One group really needs to tie in to _anything_, and by definition is going to delve deep into some very specific corner of the kernel, because they might be chasing a subtle bug and want to have traces to just _find_ it. The other group is looking for a much higher-level thing, and isn't necessarily a kernel hacker, and just wants to know IO latencies or something for statistics. I think the function-based events is for that first group. We do not want to have actual explicit trace events for that group, because that group might want them _everywhere_. That first group might want to know the latency of a packet or block command through one particular chain. The second group might want explicit trace points exactly because that group doesn't even care *how* a packet is sent or received, or what the path through the block layer is. It just wants to know "packet sent" or "latency between IO request and completion" or things like that. The first group cares about a particular kernel implementation and has the expertise to line things up for the particular kernel that is being deployed on a hundred thousand machines. The second group doesn't want to care about a particular kernel, just wants tools that work across them. This is why I pushed Steven towards this function-based events things. Because I'm *hoping* that this can actually resolve that conflict between the two groups. Function-based events are for the first group, while actual explicit trace points are for the second. (Obviously it's not entirely black-and-white, but I do think there is a pretty big difference between the two groups. And the first group will obviously use the explicit trace points _too_, generally to narrow down where they want to go with the function-based one). We'll see. Maybe I'm entirely wrong. But I'm hoping that the function-based one will end up being helpful. Linus -- To unsubscribe from this list: send the line "unsubscribe linux-trace-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html