Re: [dpdk-dev] [PATCH] eal: prefix telemetry initialization message

2021-03-25 Thread Thomas Monjalon
09/03/2021 15:03, Bruce Richardson: > On Tue, Mar 09, 2021 at 10:59:52AM +, Bruce Richardson wrote: > > On Mon, Mar 08, 2021 at 11:23:38PM +0100, Thomas Monjalon wrote: > > > If the telemetry library initialization has some issue, > > > the error message is returned in a string > > > (to avoid

Re: [dpdk-dev] [PATCH] eal: prefix telemetry initialization message

2021-03-09 Thread Bruce Richardson
On Tue, Mar 09, 2021 at 10:59:52AM +, Bruce Richardson wrote: > On Mon, Mar 08, 2021 at 11:23:38PM +0100, Thomas Monjalon wrote: > > If the telemetry library initialization has some issue, > > the error message is returned in a string > > (to avoid circular dependency with EAL log system). > >

Re: [dpdk-dev] [PATCH] eal: prefix telemetry initialization message

2021-03-09 Thread Bruce Richardson
On Mon, Mar 08, 2021 at 11:23:38PM +0100, Thomas Monjalon wrote: > If the telemetry library initialization has some issue, > the error message is returned in a string > (to avoid circular dependency with EAL log system). > > In order to make clear where the message comes from, > a prefix is added.

[dpdk-dev] [PATCH] eal: prefix telemetry initialization message

2021-03-08 Thread Thomas Monjalon
If the telemetry library initialization has some issue, the error message is returned in a string (to avoid circular dependency with EAL log system). In order to make clear where the message comes from, a prefix is added. Before: EAL: message After:EAL: telemetry: message Signed-off-by: Tho