[dpdk-dev] Loading external PMD

2016-09-04 Thread faust1002
function I mean from it: > > /* shared object initializer */ > void __attribute__((constructor)) > rte_memnic_pmd_init(void) > { > rte_eth_driver_register(&rte_memnic_pmd); > } > > Eli > >> -Original Message- >> From: dev [mailto:dev-boun

[dpdk-dev] Loading external PMD

2016-09-03 Thread faust1002
Hello, I want to write my own PMD for testing and debugging purposes. I compiled it as shared library and I was going to load it using "-d" option. Unfortunately, it didn't work. I walked through DPDK source code I found out that "-d" options does hardly anything (please correct me if I am wrong