[ovs-dev] 答复: Re: [PATCH] netdev-dpdk: Assign socket id according to device's numa id

2017-01-11 Thread xu . binbin1
Thank you for your suggestion, i will reformat the message and resubmit the patch ASAP. Aaron Conole 写于 2017/01/11 22:27:06: > 发件人: Aaron Conole > 收件人: Binbin Xu , > 抄送: d...@openvswitch.org, Ciara Loftus

[ovs-dev] 答复: Re: [PATCH] netdev: Initialize netdev's features before getting them

2016-10-12 Thread xu . binbin1
Hi Aaron, Thanks for your suggestion, I'll resubmit a patch for DPDK, and take a look at lib/netdev-bsd.c to confirm that the additional patch is needed or not. Thanks, Aaron Conole 写于 2016/10/12 21:26:14: > 发件人: Aaron Conole > 收件人: Binbin Xu

Re: [ovs-dev] [PATCH] netdev-dpdk: Optimise the initialization of "port_conf"

2016-10-11 Thread xu . binbin1
"port_conf" is a global const variables, and in function dpdk_eth_dev_queue_setup it is asigned to the local variables "conf". The jumbo_frame bit is set in the local varables, previous configuration shouldn't influence on the other port. Thanks "Kavanagh, Mark B"

Re: [ovs-dev] [CudaMailTagged] [PATCH] bond: Fix the issue of negative number of "next rebalance"

2016-09-20 Thread xu . binbin1
I just think the negative number may puzzle someone. The positive number may be better, it shows us the left time to next rebalance. Ben Pfaff 写于 2016/09/20 23:15:22: > 发件人: Ben Pfaff > 收件人: Binbin Xu , > 抄送: dev@openvswitch.org > 日期:

Re: [ovs-dev] [PATCH 1/2] netdev-vport: remove unused function

2016-08-10 Thread xu . binbin1
Can you tell me the reaseon? We don't support the kernel space tunnel and user space tunnel at the same time?? Ben Pfaff 写于 2016/08/11 00:57:04: > 发件人: Ben Pfaff > 收件人: Binbin Xu , > 抄送: dev@openvswitch.org > 日期: 2016/08/11 00:57 > 主题:

[ovs-dev] 答复: Re: 答复: Re: 答复: Re: [ovs-dev, CudaMailTagged] netdev-dpdk: unlink socket file when constructing vhostuser.

2016-08-04 Thread xu . binbin1
My opinion is that, the 'kill -9' signal can't be captured. The patch described in http://openvswitch.org/pipermail/dev/2016-February/065470.html can't fix the issue perfectly. Do we allow sb use 'kill -9' to kill OVS?? Ilya Maximets 写于 2016/08/04 20:01:50: > 发件人:

[ovs-dev] 答复: Re: 答复: Re: [ovs-dev, CudaMailTagged] netdev-dpdk: unlink socket file when constructing vhostuser.

2016-08-04 Thread xu . binbin1
Thank you. I saw the patch in the link: http://openvswitch.org/pipermail/dev/2016-February/065556.html But in the latest code of OVS, I can't find this path?? By the way, should I keep the mode of 'lib/netdev-dpdk.c' file? Ilya Maximets 写于 2016/08/04 19:33:58: >

[ovs-dev] 答复: Re: [ovs-dev, CudaMailTagged] netdev-dpdk: unlink socket file when constructing vhostuser.

2016-08-04 Thread xu . binbin1
I get the source code clone from branch origin/master in the github. In fact, I killed ovs-vswitchd process and then start it again. In this case, sockets left on the filesystem. Sorry for my description in the commit msg, it may be a puzzle to you. 发件人: Ilya Maximets

[ovs-dev] [PATACH]netdev-dpdk: remove duplicated code in netdev_dpdk_get_status

2016-07-25 Thread xu . binbin1
From caeb84217c38ccd0b2076689fd36b578c00678ad Mon Sep 17 00:00:00 2001 From: xubinbin Date: Thu, 21 Jul 2016 21:52:29 +0800 Subject: [PATCH] netdev-dpdk: remove duplicated code in netdev_dpdk_get_status Put "driver_name" into "args" twice, that's meaninglessness. So need

[ovs-dev] [PATACH]netdev-dpdk: remove duplicated code in netdev_dpdk_get_status

2016-07-21 Thread xu . binbin1
From caeb84217c38ccd0b2076689fd36b578c00678ad Mon Sep 17 00:00:00 2001 From: xubinbin Date: Thu, 21 Jul 2016 21:52:29 +0800 Subject: [PATCH] netdev-dpdk: remove duplicated code in netdev_dpdk_get_status Put "driver_name" into "args" twice, that's meaninglessness. So need