On Mon, 1 Jul 2024 23:01:17 +0300 Shani Peretz <shper...@nvidia.com> wrote:
> +/** > + * General device name comparison. Will compare by using the specific bus > + * compare function or by comparing the names directly. > + * > + * @param dev > + * Device handle. > + * @param name > + * Name to compare against. > + * @return > + * 0 if the device matches the name. Nonzero otherwise. > + */ > +__rte_experimental > +int > +rte_cmp_dev_name(const struct rte_device *dev, const void *name); Why is this not rte_internal instead of experimental? Why is the name arguement void * instead of char *? And there are other questions in the mail thread. That is why it has not gotten accepted.