On Wed, 19 Feb 2020 08:39:34 -0800 "Paul E. McKenney" <paulmck@xxxxxxxxxx> wrote: > There was some controversy over inline vs. notrace, leading me to > ask whether we should use both inline and notrace here. ;-) "inline" implicitly suggests "notrace". The reason being is that there were "surprises" when gcc decided not to inline various functions marked as "inline" which caused ftrace to break. I figured, if someone marks something as "inline" that it should not be traced regardless if gcc decided to inline it or not. -- Steve