Re: [PATCH 2/3] tracetool: introduce generate_unconditional

2025-06-18 Thread Tanish Desai
> Please fix the word wrap on the commit at 78 chars. I will send v2 with this fix > stray newline In tracetool/backend, every function is followed by two newline characters. On Wed, Jun 18, 2025 at 4:12 AM Alex Bennée wrote: > Tanish Desai writes: > > > This patch separates the generation logi

Re: [PATCH 2/3] tracetool: introduce generate_unconditional

2025-06-17 Thread Alex Bennée
Tanish Desai writes: > This patch separates the generation logic of trace_foo() for the UST and > DTrace backends from other backends. > The motivation is to remove the unnecessary if (true) in the _no_check > function, as UST and DTrace do not require a trace_event_get_state check > without i

[PATCH 2/3] tracetool: introduce generate_unconditional

2025-06-16 Thread Tanish Desai
This patch separates the generation logic of trace_foo() for the UST and DTrace backends from other backends. The motivation is to remove the unnecessary if (true) in the _no_check function, as UST and DTrace do not require a trace_event_get_state check without introducing a seperate function it