From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by dpdk.org (Postfix) with ESMTP id A14307E75 for ; Thu, 6 Nov 2014 23:42:11 +0100 (CET) Received: by mail-wi0-f178.google.com with SMTP id bs8so2944168wib.17 for ; Thu, 06 Nov 2014 14:51:40 -0800 (PST) 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=5C/ufmlEtzDBt9aDd9UmxyIPoPZWGP7/ErxFYi6E5bs=; b=fra1TJFcoKs3HP0LSZ3Cn+P/Z7Z1sya1cT5HJQ4q7EWwUCE2loGuaWFL/TJJJp8BPj Az10brH18bbvgDtM8ztygKMYgNLoKI9Dd52Q1MmlvsrMYTO5NxWRMzholhEAQfnnAQbh nJHVepqrhM5D/YkNbL6U/eQXA/XiwScleMmnA8EsbGFErlENgccgimaHiIddi6Z1woM1 +4klDJe7i0hNpyx2dSC9h9r+HZGn9gEhb22iv3XBoBZyEjNg1Pn1CJfuYMAQDa2oKcoz +rQ0HPz1b/Hd6rAiVS9PMYy04/kRK6sjGviqwvM1wGmqqVW6p1Zk+br8PvfFFPmxTI1Q 5MGw== X-Gm-Message-State: ALoCoQm56ZhhGGT8QFkYWYKogMxwTcRd5PnT4gUaZFobPzqwLOgqyRuismiONWbmUi50RP2dKtWW X-Received: by 10.194.2.244 with SMTP id 20mr10521096wjx.4.1415314300888; Thu, 06 Nov 2014 14:51:40 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id f6sm10000268wix.5.2014.11.06.14.51.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Nov 2014 14:51:40 -0800 (PST) From: Thomas Monjalon To: "Zhang, Helin" Date: Thu, 06 Nov 2014 23:51:21 +0100 Message-ID: <5997800.NniyjZikjn@xps13> Organization: 6WIND User-Agent: KMail/4.14.2 (Linux/3.17.2-1-ARCH; KDE/4.14.2; x86_64; ; ) In-Reply-To: <2601191342CEEE43887BDE71AB977258213A2E2C@IRSMSX105.ger.corp.intel.com> References: <1410706109-30448-1-git-send-email-helin.zhang@intel.com> <1415278430-17920-1-git-send-email-helin.zhang@intel.com> <2601191342CEEE43887BDE71AB977258213A2E2C@IRSMSX105.ger.corp.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/5] support of configurable CRC stripping in VF 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: Thu, 06 Nov 2014 22:42:11 -0000 > > To support configurable CRC stripping in both PF host > > and VF, a new operation and a new structure are added > > to carry more configurations from VF to PF host. > > > > v2 changes: > > * Put all the renaming and code style fixes into a patch. > > * Put processing crc stripping configuration in PF host > > into a single patch. > > * Put setting the crc stripping into a single patch. > > * Put the configuring crc stripping in VF into a single patch. > > * Added several more code style fixes reported by checkpatch.pl. > > > > v3 changes: > > * Added a macro of calculating memory size for configuring > > vsi queues. > > * Used array of memory in stack to replace the memory > > allocated by rte_zmalloc(). > > * Added an input parameter for configuring crc stripping in > > RX queue context. > > * Put configuring crc stripping of both PF host and VF > > into a single patch. > > * Defined below new structures for the configuring specifically. > > - struct i40e_virtchnl_rxq_ext_info; > > - struct i40e_virtchnl_queue_pair_ext_info; > > - struct i40e_virtchnl_vsi_queue_config_ext_info; > > * Renamed 'I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EX' to > > 'I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EXT'. > > > > Helin Zhang (5): > > config: remove useless i40e items in config files > > i40evf: Remove 'host_is_dpdk', and use version number instead > > i40e: renaming and code style fix > > i40e: support of configurable crc stripping in rx queue > > i40e: support of configurable VF crc stripping > > Acked-by: Konstantin Ananyev Applied Thanks -- Thomas