Re: [dpdk-dev] [PATCH v2 0/4] add net mrvl pmd driver

2017-09-28 Thread Amit Tomer
>> This patch series introduces the net driver for Marvell Armada 7k/8k >> SoCs along with documentation. Wondering, if it could be tested on Marvell Armada 3700 based ESPRESSObin board ? Thanks Amit

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-12 Thread Amit Tomer
Hello, I run l2fwd from inside docker with following logs: But, don't see Port statistics gets updated ? #/home/ubuntu/dpdk# sudo docker run -i -t -v /home/ubuntu/dpdk/usvhost:/usr/src/dpdk/usvhost l4 EAL: Detected lcore 0 as core 0 on socket 0 EAL: Detected lcore 1 as core 1 on socket 0 EAL: De

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-12 Thread Amit Tomer
Hello, > Have you applied all three fixes discussed here? I am running it with, only RFC patches applied with "--no-huge" in l2fwd. Thanks Amit.

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-12 Thread Amit Tomer
Hello, > In vhost-switch, it judges if a virtio device is ready for processing after > receiving > a pkt from virtio device. So you'd better construct a pkt, and send it out > firstly > in l2fwd. I tried to ping the socket interface from host for the same purpose but it didn't work. Could you pl

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-13 Thread Amit Tomer
Hello, > > You can use below patch for l2fwd to send out an arp packet when it gets > started. I tried to send out arp packet using this patch but buffer allocation for arp packets itself gets failed: m = rte_pktmbuf_alloc(mp); Return a NULL Value. Thanks, Amit.

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-14 Thread Amit Tomer
Hello, > Can you send out how you start this l2fwd program? This is how, I run l2fwd program. CMD ["/usr/src/dpdk/examples/l2fwd/build/l2fwd", "-c", "0x3", "-n", "4","--no-pci", ,"--no-huge","--vdev=eth_cvio0,queue_num=256,rx=1,tx=1,cq=0,path=/usr/src/dpdk/usvhost", "--", "-p", "0x1"] I tried p

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-14 Thread Amit Tomer
Hello, > > Not necessary. But if you want to use hugepages inside Docker, use -v option > to map a hugetlbfs into containers. I modified Docker command line in order to make use of Hugetlbfs: CMD ["/usr/src/dpdk/examples/l2fwd/build/l2fwd", "-c", "0x3", "-n", "4","--no-pci", "--socket-mem","512"

[dpdk-dev] [PATCH 0/4] virtio support for container

2016-01-20 Thread Amit Tomer
Hello, > For this case, please use --single-file option because it creates much more > than 8 fds, which can be handled by vhost-user sendmsg(). Thanks, I'm able to verify it by sending ARP packet from container to host on arm64. But sometimes, I do see following message while running l2fwd in co