From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by dpdk.org (Postfix) with ESMTP id 93CDC156 for ; Tue, 5 Nov 2013 11:09:35 +0100 (CET) Received: by mail-wi0-f179.google.com with SMTP id hm4so1807981wib.0 for ; Tue, 05 Nov 2013 02:10:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=TvKusmWE/tD3AE5AQ47WgmSXqm2MrPRrhKQnluq78Rg=; b=mVE4c7eMzgVg+EHap5sM5Hcgoy0u/QsZvcptvYNfy4IIa+W/ahge+p1AUzB6NmJuFE wvoA1xTNglduuK073gE+pe7If/URTdLjIaPibZa2uYae0mrady0lLEtB8/xsSq+gOSCz ztAArkxr76qRZicIiAFDk8drIevXjPE7RIgKf8fm44zPmKlwH6VcSzIPv8VEi4FL7qr0 q96AzxmTjCok6byCBxuhcGtTNzkf87/PZNaop1u1wp7Wx3ojydnBzaR9dBF7MvVYLGJ9 kI8LJBAuEwP9nDttlnLRnNAsa8WdDg3z0Q+LIcukrOVD+vLcSNOEElTRN6ACySM3KRa6 0H6w== X-Gm-Message-State: ALoCoQmRT3KV63YEiKrzUFPe3XD+7wcfDeO/+MpLe0UYppF1MKxPJqFFrvFfUSNmgZ1cRn1mmNw/ X-Received: by 10.180.198.115 with SMTP id jb19mr15966365wic.28.1383646228588; Tue, 05 Nov 2013 02:10:28 -0800 (PST) Received: from [10.16.0.195] (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id b7sm12674305wiz.8.2013.11.05.02.10.27 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Nov 2013 02:10:27 -0800 (PST) Message-ID: <5278C412.4000204@6wind.com> Date: Tue, 05 Nov 2013 11:10:26 +0100 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131005 Icedove/17.0.9 MIME-Version: 1.0 To: Alexander Belyakov References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] Surprisingly high TCP ACK packets drop counter 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: Tue, 05 Nov 2013 10:09:35 -0000 Hi, > Disabling RSC (DPDK 1.3) indeed brings ACK flood forwarding > performance to 14,5+ Mpps. No negative side affects were discovered > so far, but we're still testing. The role of RSC is to reassemble input TCP segments, so it is possible that the number of TCP packets sent to the DPDK is lower but some packets may contain more data. Can you confirm that? In my opinion, this mechanism should be disabled by default because it could break PMTU discovery on a router. However it could be useful for somebody doing TCP termination only. Regards, Olivier