From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Yu Subject: Any benefit of using DPDK's makefiles instead of using Date: Fri, 17 Jan 2014 00:40:26 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 To: "dev-VfR2kkLFssw@public.gmane.org" Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Anyone knows how to turn off TSO in DPDK+SR-IOV in KVM guest VM ? I want the packets sending out of the KVM host not to have TSO by the hardware. I imagine that I need to do the following: 1. turn off TSO in the guest before starting DPDK using ethtool -K ethX tso off After DPDK is started, the device will be removed. I think the command ethtool will call ethtool function in the ixgbevf.ko in the kernel to turn TSO off. Am I correct ? 2. turn off TSO on the host using ethtool -K ethX tso off Do I need to do the second one ? Would the first one propagate down to the host ? James