From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by dpdk.org (Postfix) with ESMTP id 0B99D8D8D for ; Tue, 27 Oct 2015 18:53:22 +0100 (CET) Received: by wikq8 with SMTP id q8so223249602wik.1 for ; Tue, 27 Oct 2015 10:53:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=pxzNARM7aeQrYJRe1Cp82jK321aCXI8JBnhgRnXU5pI=; b=vX6uzhnB3tpDarbi6SV44cRzM3ltc/luqKi4qd5dUAo9dAXFzxBREUQXpn6T+3hwc2 pk4kjTfc1f2Nizlri55kxThgqiOyrYA7ZECJeB5mow7ulMaMNAbFkAxrH8ubfmcNfjIX JcbW+zG7TSc6TwyfTMzIZ4osltDrU+VtHlDAHpUY16tX6c+zdKEkYK8JhcVgTG0/LBW2 rhQBi8KpOdg5qwmFK0zAUAz35bju/QeDzhdhAOi0QobiRQNeYY1iyrgAsPixYzqUUSj2 2RPMxdD5qYcuiaHj2Wt0CogA33107EMJyHsMjvCqiBf1Oo1Zt1PMLasDcNAjVRnO7paM nlBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=pxzNARM7aeQrYJRe1Cp82jK321aCXI8JBnhgRnXU5pI=; b=c9wgcRRv8WadQg6XNHU5hhPdkoMUdPXFu6u91qbORVNn1bbUERwLryVkzgl7SGvZoH NYgUCzwmVeJ4SB+yROt2IkEcGyAZ1uZ5dWQSRtvH7QCB0h2XRb5MahuFhAEJrP+MqzCG ajsRy8XsXUMhvaS3fyvG0CelffxLVeZI3jwtu8Iq2XJxPBmjvDPDhs9UcBQVXRz/5WYk rv97yNOsoa5ltvNKZd+eVD80MJwomaQsQxzYUImJ2THaxvnSvUz24jtE3YiB7voIsE86 abGG2WOn1Al3FhXdTvRhvzSdTP9DZyBA21hmn3vTs7i+4JbZgWQ6a15FQdTdsw+PgGZA 5TZA== X-Gm-Message-State: ALoCoQmuAYGraoM4b4FWVuL7S0VTvaQcoaZMPbb3MG18dBj1xbombgOLMgQ++pAQUh6ZkOnUJVMf X-Received: by 10.180.74.177 with SMTP id u17mr29849841wiv.5.1445968401840; Tue, 27 Oct 2015 10:53:21 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id jh4sm41495589wjb.33.2015.10.27.10.53.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 27 Oct 2015 10:53:21 -0700 (PDT) From: Thomas Monjalon To: John Daley Date: Tue, 27 Oct 2015 18:52:12 +0100 Message-ID: <1997545.ay3DRHMNXH@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1445640444-30340-1-git-send-email-johndale@cisco.com> References: <1445640444-30340-1-git-send-email-johndale@cisco.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] enic: improve Tx packet rate 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, 27 Oct 2015 17:53:22 -0000 2015-10-23 15:47, John Daley: > For every packet sent, a completion was being requested and the > posted_index register on the nic was being updated. Instead, > request a completion and update the posted index once per burst > after all packets have been sent by the burst function. > > Signed-off-by: John Daley > Acked-by: Sujith Sankar Unfortunately, checkpatch.pl is against this patch, mainly because of the indentation. It should be easy to fix ;)