From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 67BEA8E79 for ; Sun, 1 Nov 2015 14:55:04 +0100 (CET) Received: by wmeg8 with SMTP id g8so40820641wme.0 for ; Sun, 01 Nov 2015 05:55:04 -0800 (PST) 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=PR74BAbaOqjgcB7grKgQwmSvomxv0UTE/TVH4k/oEMQ=; b=vlKjBzcHulvbCk2MahDVr3rkTMFcejsMW5BGVd3F1GrwAundRhAkSdCXv402qN4mvW IVYwX0Zk9YnQiTzjttaKPZU3OtXuojQxjhAvWfZjmMzBCLtWl/WVH7pigX/PIx2JzZg+ yC+ARDe+UT1nwSkDEj2NqzyghkBWljRHiRFjhopDV2McXtS6QBw0yC8ladRo7uvibmqx Psmk4pxjDvC7uAuwPZXQ7zltLlAFnBMWddKMMFHVK/XZtTGbGBjunsLuYiE4MMavh5Y7 G4JcCSlUewerPmqmu2v36VSrsahe2GCCadX9TjrgOEKSHxKyRNDWZ0HGdL8niKxzt5Kx jaAA== 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=PR74BAbaOqjgcB7grKgQwmSvomxv0UTE/TVH4k/oEMQ=; b=a1E6e1Y3W+En4LAkXpiNHPQaicaM3xbbUkwQSbsr9auokQbwA0084jnlbVujvxxuFQ cThvw6Lvoz0D+oyQH6kRlJ92zphzhrfLIqEHw93zeDFTkXVksSGFXnELcuTF+ENkGNAe 3A2FJ8HknQloFBKBZbzOhevtWFpRce17nwbj0BNdesgqfDMyKS2w6rLcTVo1KMOXaG2F IsSj3yA7l9K59RZXe9TssIoMDO2qUAT04Sn2DLQtbvcmpdTpSflnNZpNzwz6q5ONTIlw 8qd4DNTZfUQV/xrVDVXGMgbXzM0c5chWd77xsodbw3N47xDeEWt57e1oh35BT36ifpbx bK/g== X-Gm-Message-State: ALoCoQlMa+gGmhCGsFFIQwz/CBMekIQnThPAu0wgfPUIpkrMNmLeOA+URvxFcy7RU6tAIPgDHXBN X-Received: by 10.28.134.134 with SMTP id i128mr8820609wmd.50.1446386104203; Sun, 01 Nov 2015 05:55:04 -0800 (PST) Received: from xps13.localnet (134.20.90.92.rev.sfr.net. [92.90.20.134]) by smtp.gmail.com with ESMTPSA id l1sm12915326wmg.21.2015.11.01.05.55.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 01 Nov 2015 05:55:03 -0800 (PST) From: Thomas Monjalon To: Jingjing Wu Date: Sun, 01 Nov 2015 14:53:52 +0100 Message-ID: <8002408.pKJKTZQgIY@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446307051-29283-1-git-send-email-jingjing.wu@intel.com> References: <1446108827-7907-1-git-send-email-jingjing.wu@intel.com> <1446307051-29283-1-git-send-email-jingjing.wu@intel.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 v3 0/9] enable DCB feature on Intel XL710/X710 NIC 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: Sun, 01 Nov 2015 13:55:04 -0000 2015-10-31 23:57, Jingjing Wu: > The patch set enables DCB feature on Intel XL710/X710 NICs, including: > - Receive queue classification based on traffic class > - Round Robin ETS schedule (rx and tx). > - Priority flow control > To make the testpmd and ethdev lib more generic on DCB feature, this > patch set also > - adds a new API to get DCB related information on NICs. > - changes the DCB test forwarding in testpmd to be on traffic class. > - move specific validation from lib and application to drivers. > Additionally, this patch set also corrects some coding style issues. > > v2 changes: > - add a command in testpmd to display dcb info > - update testpmd guide and release note > > v3 changes: > - add API change in release note > - add new function in rte_ether_version.map > - rebase doc update to the same commit with code change Applied with acks from previous version, thanks. Please do not hesitate to keep acks when changes are minor.