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 4CFB55A44 for ; Thu, 9 Jul 2015 02:06:57 +0200 (CEST) Received: by wiga1 with SMTP id a1so298615123wig.0 for ; Wed, 08 Jul 2015 17:06:57 -0700 (PDT) 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=pRznhHO6UDLhiMezeHYIC3P6N/D37kGwSe9FTP8hdwA=; b=jqGwEbjiG0NMdXo1116WkghhIfW2zZb8oh0X7Tqa4UkkDKDYVj7D33/+nxjtRJtojg 1PXyaDEgc7hgy9bkTRQJD0hFzbHRPPlLpYCnqQR7FxyoR+kPN+8p2E1MlEcCLnjd49xn rLgcINEIQofPzYkvnRROLfHJBvBtFK9TR3iMGNhlS4//KilYFKjUWjhRthc9zTFaeFkT QTxrpqQSAXHpzwaUZUivwT5SltDoAWF7EbC0cejZoutabUQ5izujnkvp56VFx2ZtgrOZ iN+i2MOKbaIcIUXmODDLQTkt39mZ29eWs1X60dUGR+zHwfgB5/iFYqtJ0pp8DO6MiU6X guOQ== X-Gm-Message-State: ALoCoQlmbMOd/AjJ1ogfNWamNMqry0+UnoliFhRSS7L0zURwOtL2VXv2JO/Mlq87HHbKY9KXZ7Pj X-Received: by 10.180.21.169 with SMTP id w9mr25917521wie.73.1436400417121; Wed, 08 Jul 2015 17:06:57 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id ea2sm5316445wib.22.2015.07.08.17.06.55 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Jul 2015 17:06:56 -0700 (PDT) From: Thomas Monjalon To: Stephen Hemminger Date: Thu, 09 Jul 2015 02:05:51 +0200 Message-ID: <1823826.YffNaF54mj@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1429637564-5656-6-git-send-email-stephen@networkplumber.org> References: <1429637564-5656-1-git-send-email-stephen@networkplumber.org> <1429637564-5656-6-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, Stas Egorov , Stephen Hemminger , alexmay@microsoft.com Subject: Re: [dpdk-dev] [PATCH v4 5/7] hv: poll mode driver 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, 09 Jul 2015 00:06:57 -0000 2015-04-21 10:32, Stephen Hemminger: > From: Stephen Hemminger > > This is new Poll Mode driver for using hyper-v virtual network > interface. > > Signed-off-by: Stas Egorov > Signed-off-by: Stephen Hemminger > --- > lib/Makefile | 1 + > lib/librte_pmd_hyperv/Makefile | 28 + > lib/librte_pmd_hyperv/hyperv.h | 169 ++++ > lib/librte_pmd_hyperv/hyperv_drv.c | 1653 +++++++++++++++++++++++++++++++++ > lib/librte_pmd_hyperv/hyperv_drv.h | 558 +++++++++++ > lib/librte_pmd_hyperv/hyperv_ethdev.c | 332 +++++++ > lib/librte_pmd_hyperv/hyperv_logs.h | 69 ++ > lib/librte_pmd_hyperv/hyperv_rxtx.c | 403 ++++++++ > lib/librte_pmd_hyperv/hyperv_rxtx.h | 35 + > mk/rte.app.mk | 4 + > 10 files changed, 3252 insertions(+) Please split in separate patches: - setup - Rx - Tx - link state - stats - promisc