04/07/2019 19:14, Stephen Hemminger:
> On Fri, 14 Jun 2019 11:39:17 +0200
> David Marchand <[email protected]> wrote:
> 
> >     /* Supports only RTE_KDRV_NIC_UIO */
> > +   if (pdev->kdrv != RTE_KDRV_NIC_UIO)
> > +           RTE_LOG(DEBUG, EAL, "Unsupported kernel driver? Defaulting to 
> > IOVA as 'PA'\n");
> 
> Maybe NOTICE level, rather than DEBUG which is usually suppressed.

DEBUG may be enough here, as it is not something unexpected.
The IOVA choice will be printed in INFO level:
       RTE_LOG(INFO, EAL, "Selected IOVA mode '%s'\n",
               rte_eal_iova_mode() == RTE_IOVA_PA ? "PA" : "VA");



Reply via email to