Re: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-28 Thread Tyler Retzlaff
On Wed, Feb 28, 2024 at 05:27:54PM +, Konstantin Ananyev wrote: > > > > On Wed, Feb 28, 2024 at 01:34:59PM +, Konstantin Ananyev wrote: > > > > > > > > > > > On Mon, Feb 26, 2024 at 9:20 PM Tyler Retzlaff > > > > wrote: > > > > > > > > > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE

RE: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-28 Thread Konstantin Ananyev
> On Wed, Feb 28, 2024 at 01:34:59PM +, Konstantin Ananyev wrote: > > > > > > > > On Mon, Feb 26, 2024 at 9:20 PM Tyler Retzlaff > > > wrote: > > > > > > > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions > > > > which allow a prefix and arguments to be inserted into the

Re: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-28 Thread Tyler Retzlaff
On Wed, Feb 28, 2024 at 01:34:59PM +, Konstantin Ananyev wrote: > > > > > On Mon, Feb 26, 2024 at 9:20 PM Tyler Retzlaff > > wrote: > > > > > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions > > > which allow a prefix and arguments to be inserted into the log line > > >

RE: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-28 Thread Konstantin Ananyev
> > On Mon, Feb 26, 2024 at 9:20 PM Tyler Retzlaff > wrote: > > > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions > > which allow a prefix and arguments to be inserted into the log line > > without the need to use the ## args variadic argument pack extension. > > > > Signed

Re: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-28 Thread David Marchand
On Mon, Feb 26, 2024 at 9:20 PM Tyler Retzlaff wrote: > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions > which allow a prefix and arguments to be inserted into the log line > without the need to use the ## args variadic argument pack extension. > > Signed-off-by: Tyler Retzl

RE: [PATCH v3 02/16] bpf: stop using variadic argument pack extension

2024-02-27 Thread Konstantin Ananyev
> Subject: [PATCH v3 02/16] bpf: stop using variadic argument pack extension > > Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions > which allow a prefix and arguments to be inserted into the log line > without the need to use the ## args variadic argument pack extension. > >