On 23/10/14 06:46, Yaron Wahl wrote: > Thanks Antti, > > got it working at least with some basic tests
great > I had to make some changes in dpdkif_user.c to make it work in a virtualized > environment using vmxnet3 nic's Is it possible to share those changes? > I believe there is a small bug in the udp_server_echo app > > - rump_sys_sendto(s,buf,nn,0,(struct sockaddr > *)&client,clen); > + rump_sys_sendto(s, msg, nn, 0, (struct sockaddr > *)&client,clen); Looks like it, though I'm unsure what the ultimate intention of that code is; msg is limited to 500 bytes. Maybe it's better to just use buf? Can you check and submit the patch as a github pull request? Also, I recommend looking into rumprun-posix. You will both get a more familiar programming API (rump_sys_socket() becomes socket(), etc.) and it will help with configuring the network stack. http://repo.rumpkernel.org/rumprun-posix ------------------------------------------------------------------------------ _______________________________________________ rumpkernel-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rumpkernel-users
