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 72FAF7F18 for ; Fri, 7 Nov 2014 16:42:11 +0100 (CET) Received: by mail-wi0-f179.google.com with SMTP id h11so4978503wiw.12 for ; Fri, 07 Nov 2014 07:51:43 -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=G5On2X+GpClUAfT7dqgPz0AqzX8akXtDLMOPa/UUtt8=; b=WocZxEnjgvS8XzTxk67n8C3WEd+UxkNQHScgKYpVaMTKfRjuUWnlHiIwz7uO7im4J2 7jaYuZ+Q3eBB7yhFeSQyxJPbt1E2eeOZoGd5LgHkh8Fhp36fg4MGnK1zU7opS0J5q1It vnYL+a/Y8NsgpT1EvYdLzuR3afzV62PddOn94vySfFPfmd4hx/oaKLGMr3KH008qd1DS pN0YWYRaA63tqT0l7abIYD3zckY0prOgmIAE4tLed+Sjnv3mPtZVlmj4fDJVF0M3O3la bDnazc5oO7h7a8StpoahBCCHfz2BW6v3B/0LapnatmmgTh7y5+qHAMkXM+CwmRsEJwjK 8GdQ== X-Gm-Message-State: ALoCoQm3kf+ZrRJZBQF1MhvdYAIHDDAzji9gZ3xg8vlglLvLA0ahWmIuMV8a68HN6inPy4NpkBhz X-Received: by 10.180.219.106 with SMTP id pn10mr6347666wic.63.1415375503833; Fri, 07 Nov 2014 07:51:43 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id cv7sm12275788wjc.3.2014.11.07.07.51.42 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 07 Nov 2014 07:51:43 -0800 (PST) From: Thomas Monjalon To: Sujith Sankar Date: Fri, 07 Nov 2014 16:51:24 +0100 Message-ID: <3857314.dObtBBdJqR@xps13> Organization: 6WIND User-Agent: KMail/4.14.2 (Linux/3.17.2-1-ARCH; KDE/4.14.2; x86_64; ; ) In-Reply-To: <1415390747-9532-5-git-send-email-ssujith@cisco.com> References: <1415390747-9532-1-git-send-email-ssujith@cisco.com> <1415390747-9532-5-git-send-email-ssujith@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 4/7] VNIC common code 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: Fri, 07 Nov 2014 15:42:11 -0000 2014-11-08 01:35, Sujith Sankar: > lib/librte_pmd_enic/src/cq_desc.h | 122 ++++ > lib/librte_pmd_enic/src/cq_enet_desc.h | 257 ++++++++ > lib/librte_pmd_enic/src/rq_enet_desc.h | 72 +++ > lib/librte_pmd_enic/src/vnic_cq.c | 113 ++++ > lib/librte_pmd_enic/src/vnic_cq.h | 148 +++++ > lib/librte_pmd_enic/src/vnic_dev.c | 1077 +++++++++++++++++++++++++++++++ > lib/librte_pmd_enic/src/vnic_dev.h | 198 ++++++ > lib/librte_pmd_enic/src/vnic_devcmd.h | 770 ++++++++++++++++++++++ > lib/librte_pmd_enic/src/vnic_enet.h | 74 +++ > lib/librte_pmd_enic/src/vnic_intr.c | 79 +++ > lib/librte_pmd_enic/src/vnic_intr.h | 122 ++++ > lib/librte_pmd_enic/src/vnic_nic.h | 84 +++ > lib/librte_pmd_enic/src/vnic_resource.h | 93 +++ > lib/librte_pmd_enic/src/vnic_rq.c | 242 +++++++ > lib/librte_pmd_enic/src/vnic_rq.h | 278 ++++++++ > lib/librte_pmd_enic/src/vnic_rss.c | 81 +++ > lib/librte_pmd_enic/src/vnic_rss.h | 57 ++ > lib/librte_pmd_enic/src/vnic_stats.h | 82 +++ > lib/librte_pmd_enic/src/vnic_wq.c | 241 +++++++ > lib/librte_pmd_enic/src/vnic_wq.h | 279 ++++++++ > lib/librte_pmd_enic/src/wq_enet_desc.h | 110 ++++ > 21 files changed, 4579 insertions(+) What is the status of these files? Are they copied from somewhere? Please explain in the commit log. Could you move them in a subdirectory vnic/ or base/? Please could you remove the src/ subdirectory level? Thanks -- Thomas