On 2015/09/30 23:05, Tomasz Kulasek wrote: > This implementation allows to set and read RSS configuration for null > device, and is used to validate right values propagation over the slaves, > in test units for dynamic RSS configuration for bonding. > > v5 changes: > - replaced memcpy with rte_memcpy > > Signed-off-by: Tomasz Kulasek <tomaszx.kulasek at intel.com> > --- > drivers/net/null/rte_eth_null.c | 116 > +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 116 insertions(+) > > diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c > index bf81b1b..b01f647 100644 > --- a/drivers/net/null/rte_eth_null.c > +++ b/drivers/net/null/rte_eth_null.c > @@ -37,6 +37,8 @@ > #include <rte_memcpy.h> > #include <rte_dev.h> > #include <rte_kvargs.h> > +#include <rte_eth_null.h> > +#include <rte_spinlock.h> > >
Hi Tomasz, We don't have "rte_eth_null.h" at this point. (The header file will be added next patch) Probably, we also need "rte_pmd_null_version.map" to compile correctly. (To make sure, please compile DPDK with "CONFIG_RTE_BUILD_SHARED_LIB=y" option.) Also, it seems 'rte_eth_null.h' should be included like below. #include "rte_eth_null.h" Without it, we cannot compile. Thanks, Tetsuya