On Sat, Feb 3, 2018 at 9:04 AM, Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> wrote: > > The approach proposed here will introduce an expectation that internal > function signatures never change in the kernel, else it would break user-space > tools hooking on those functions. No, I really don't think so. There's two reasons for that: The first is purely about kernel development. I, and every sane kernel engineer, will simply laugh in the face of somebody who comes to us and says "hey, I had this script that did low-level function tracing on your kernel, and then you changed something, and now the random function I was tracing has a new name and different arguments". We'll just go "yeah, tough, change your script". Or more likely, not even bother to reply at all. But the bigger issue is actually simply just psychology. Exactly *because* this is all implicit, and there are no explicit trace points, it's _obvious_ to any user that there isn't something long-term dependable that they hang their hat on. Everybody *understands* that this is like a debugger: if you have a gdb script that shows some information, and then you go around and change the source code, then *obviously* you'll have to change your debugger script too. You don't keep the source code static just to make your gdb script happy., That would be silly. In contrast, the explicit tracepoints really made people believe that they have some long-term meaning. So yes, we'll make it obvious that hell no, random kernel functions are not a long-term ABI. But honestly, I don't think we even need to have a lot of "education" on this, simply because it's so obvious that anybody who thinks it's some ABI is not going to be somebody we'll have to worry about. Because the kind of person thinking "Ooh, this is a stable ABI" won't be doing interesting work anyway. That kind of person will be sitting in a corner eating paste, not doing interesting kernel tracing. 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