From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by dpdk.org (Postfix) with ESMTP id BC7BB8045 for ; Mon, 15 Dec 2014 21:20:52 +0100 (CET) Received: by mail-wg0-f45.google.com with SMTP id b13so15591882wgh.4 for ; Mon, 15 Dec 2014 12:20:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=cFclJ9YwBTX51e16Sf9xhBEruJXi7K0Dd3XxlIp83Uw=; b=TzGtqauywHkXv17qb3++ZrzbABTkqLD30/xI1l6d2TaSix8tQh/4gerU7vSsj9TxN/ JDqvgc386win4g5OyVy3XWui2Rsok5IE7vXzk1Xtaic2ZCWydnT5+KJl18vJ3VjzMTkO YZgWtrFWN2za7IfqW8ji/eaRFayeqcvfJ0+bws0rrI7VVZArN8Jl3HipK71al5GBlYT1 aXSx2AQTkWxTJ4r+0zMUfNlnn9x78hIzlzJOqbaKxUh9aZWKe044WMqfVd8W47195RrF LvU6FOMvLvITG5E9ObYhxQLTmKQY4FEY8JJbZ+d+DG2tGJQ3ZzcZsA1mhadBPOQtGwkQ w5lA== MIME-Version: 1.0 X-Received: by 10.180.82.165 with SMTP id j5mr34888291wiy.57.1418674852597; Mon, 15 Dec 2014 12:20:52 -0800 (PST) Received: by 10.194.64.9 with HTTP; Mon, 15 Dec 2014 12:20:52 -0800 (PST) Date: Mon, 15 Dec 2014 22:20:52 +0200 Message-ID: From: Helmut Sim To: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] two tso related questions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Dec 2014 20:20:52 -0000 Hi, While working on TSO based solution I faced the following two questions: 1. is there a maximum pkt_len to be used with TSO?, e.g. let's say if seg_sz is 1400 can the entire segmented pkt be 256K (higer than 64K) ?, then the driver gets a list of chanined mbufs while the first mbuf is set to TSO offload. 2. I wonder, Is there a specific reason why TSO is supported only for IXGBE and not for IGB ? the 82576 NIC supports TSO though. Is it due to a kind of tecnical barrier or is it because of priorities? It will be great if someone from the forum could address this. Thanks, Sim