On Wed, Jul 3, 2024 at 9:12 AM Xueming Li <xuemi...@nvidia.com> wrote: > > Hi David, > > I get unix compilation failure when backporting this patch to 23.11 LTS, the > EAL_LOG macro is not backported to 23.11 LTS, any suggestion?
Like other logging calls in this same file, you can replace EAL_LOG(level, fmt, args); with a simple RTE_LOG(level, EAL, fmt "\n", args); Am I missing something? -- David Marchand