21/11/2022 21:40, ok...@kernel.org: > --- a/drivers/net/tap/rte_eth_tap.c > +++ b/drivers/net/tap/rte_eth_tap.c > @@ -2340,6 +2340,10 @@ rte_pmd_tun_probe(struct rte_vdev_device *dev) > struct rte_eth_dev *eth_dev; > > name = rte_vdev_device_name(dev); > + if (!name) {
Please it is preferred to check against NULL, because name is not a boolean, thanks. I know it's longer but it is more explicit. Thanks for the fixes in this series.