On 04/02/15 09:18, T Manikantasrinivas wrote: > root@tcs-virtual-machine:/home/tcs/drv-netif-dpdk/rump/bin# ./rump_server > -lrumpnet -lrumpnet_net -lrumpnet_netinet -lrumpdev_bpf -lrumpnet_npf > tcp://10.138.97.196:1111 > rump_sp: server bind failed > rump server init failed: Can't assign requested address
Is the address 10.138.97.196 configured on the host you are running rump_server on? > Also, We are unable to resolve the problem in loading dpdk library to rump > server, do we have some dependent libraries to load while loading dpdk > library to rump server. > > root@tcs-virtual-machine:/home/tcs/drv-netif-dpdk/rump/bin# ./rump_server > -lrumpnet -lrumpnet_net -lrumpnet_netinet -lrumpdev_bpf -lrumpnet_npf > -lrumpnet_dpdkif tcp://10.138.97.196:1111 > failed to load -libraries, last error from "rumpnet_dpdkif": > /home/tcs/drv-netif-dpdk/rump/lib/librumpnet_dpdkif.so: undefined symbol: > rte_pktmbuf_init You also need to load the dpdk libraries (see examples/Makefile.inc), rump_server does not do that automatically. Notably, dpdk and shared libraries are sort of a non-mixing idea, since usually with dpdk you want maximal processing speed, but shared libraries are inherently slower than static linking due to PIC indirection. ------------------------------------------------------------------------------ Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ rumpkernel-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rumpkernel-users
