From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f179.google.com (mail-pd0-f179.google.com [209.85.192.179]) by dpdk.org (Postfix) with ESMTP id 4A1692E89 for ; Wed, 5 Nov 2014 01:36:44 +0100 (CET) Received: by mail-pd0-f179.google.com with SMTP id g10so14736800pdj.38 for ; Tue, 04 Nov 2014 16:46:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=WGktvtihuwRpTjQFPozqDPeiSgMavCosvJVGWbmOSLk=; b=Hqsp3rXuOYFQCA/ZIxqKOPdFgdiLC/XlzV7pCi/HIBgtffrh1tdOkGx4jRn5B9bKpG CMvsD5AsAJzsSdG5X7W6RIywwScpQjCzBJsPuMK7+npSNxKFVvuxnWScA01sIx854SqE rjtMV8CPDb8jRtAQqLnv6Wcf2LJlE1HLHxsIC5Qpt/r1yHwbKGZhyh3rmfzE+oXLJ10D O+WLapmRvrmu69thAdQx/ns/FlmXDY1wa5emgZTFrscIe2M/KC88Ern8d8Si/D6RQ6vX L2mdIcUUsGsr0IlNsk18DZxYPx01elWq0yjq1ZzkwBMiugNx0FNkxsZHtb8BvfXwTDsc ewMw== X-Received: by 10.66.138.47 with SMTP id qn15mr53596313pab.82.1415148363995; Tue, 04 Nov 2014 16:46:03 -0800 (PST) Received: from [192.168.10.58] ([122.49.119.83]) by mx.google.com with ESMTPSA id dl1sm1488529pbc.16.2014.11.04.16.46.01 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Nov 2014 16:46:03 -0800 (PST) Message-ID: <545972BF.9080100@gmail.com> Date: Wed, 05 Nov 2014 09:43:43 +0900 From: Gyumin User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: [dpdk-dev] Intel 82599 tx_conf setting 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: Wed, 05 Nov 2014 00:36:44 -0000 Hi I've read the Intel 82599 official manual and I found that optimal PTHRESH is the tx descriptor buffer size - N (N is CPU cache line divided by 16). 1. I guess the size of the tx descriptor buffer is 128. Isn't it right? Where is the size of the tx descriptor buffer in the official manual? 2. What it means that the TX_PTHRESH=36 in the testpmd.c? If the size of tx descriptor buffer is 128 then optimal thresholds to minimize latency are pthresh=4(cache line / 16), hthresh=0 and wthresh=0. Is there something I missed? Thanks.