On Fri, 13 Feb 2026 19:53:11 +0100 [email protected] wrote: > +__rte_internal > +int nfb_eth_common_probe(struct nfb_probe_params *params); > +__rte_internal > +int nfb_eth_common_remove(struct rte_device *dev); > +
Not sure of __rte_internal is needed on driver only functions. Other drivers don't do it. The purpose of __rte_internal is to guard against applications randomly picking up functions out of exported headers. Since this header is not exposed it should not be an issue.

