On Tue, 16 Nov 2021 21:33:54 +0100 David Marchand <david.march...@redhat.com> wrote:
> act_size = rte_align32pow2(size); > - DRV_LOG(WARNING, "Size 0x%" PRIX32 " is not power of 2, will " > + DRV_LOG(DEBUG, "Size 0x%" PRIX32 " is not power of 2, will " > "be aligned to 0x%" PRIX32 ".", size, act_size); Splitting log message mid sentence is bad practice, why not fix it? DRV_LOG(DEBUG, "Size %#" PRIX32 " is not power of 2, will be aligned to %#" PRIX32 size, act_size);