On Tue, 2025-11-25 at 10:45 -0300, Wander Lairson Costa wrote:
> On Mon, Nov 24, 2025 at 06:46:33PM -0600, Crystal Wood wrote:
> > On Mon, 2025-11-17 at 15:41 -0300, Wander Lairson Costa wrote:
> > > diff --git a/tools/tracing/rtla/src/utils.h
> > > b/tools/tracing/rtla/src/utils.h
> > > index 160491f5de91c..f7ff548f7fba7 100644
> > > --- a/tools/tracing/rtla/src/utils.h
> > > +++ b/tools/tracing/rtla/src/utils.h
> > > @@ -13,8 +13,18 @@
> > > #define MAX_NICE 20
> > > #define MIN_NICE -19
> > >
> > > -#define container_of(ptr, type, member)({ \
> > > - const typeof(((type *)0)->member) *__mptr = (ptr); \
> > [snip]
> > > +#define container_of(ptr, type, member)({
> > > \
> > > + const typeof(((type *)0)->member) *__mptr = (ptr); \
> > > (type *)((char *)__mptr - offsetof(type, member)) ; })
> >
> > It's easier to review patches when they don't make unrelated aesthetic
> > changes...
> >
>
> It is just git messing up the diff. No actual change.
The change was to the position of the backslashes. Not a big deal, just
something that's helpful to avoid to get a cleaner diff.
-Crystal