From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 73798A0C41; Fri, 8 Oct 2021 08:55:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6016040E3C; Fri, 8 Oct 2021 08:55:51 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id AFA7B40E28 for ; Fri, 8 Oct 2021 08:55:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1633676149; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=C0gnAD5HxACq29krY6HsdJ96AHnwlyT1YefA5eYOfRk=; b=ICt25EAECTRrHP/GhBOP4JZqZqAuA/ldrSMZnQUhEMTPAGOr1eEFWMJ+ZTGqrGAvYMKzsS mKHPKpEmoePp9ReiWNQjfj3bMTSmZp3m2SvEotZd45MpgfR99y5H7Gd/eb2T9/gRQXV2W2 bSjvOXKDp37KEmWoxS8ATzFkZdCIeHE= Received: from mail-lf1-f71.google.com (mail-lf1-f71.google.com [209.85.167.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-496-7o0T8o1zPwCfBT9nJOFdPQ-1; Fri, 08 Oct 2021 02:55:46 -0400 X-MC-Unique: 7o0T8o1zPwCfBT9nJOFdPQ-1 Received: by mail-lf1-f71.google.com with SMTP id z29-20020a195e5d000000b003fd437f0e07so3489974lfi.20 for ; Thu, 07 Oct 2021 23:55:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=C0gnAD5HxACq29krY6HsdJ96AHnwlyT1YefA5eYOfRk=; b=Y4tA1lnUInzZX7OFpPLhNhzQJFBS5w4N7SXLgPjcM8tEHqNxqDRfiqIJH6slsoOFW8 mjMK+bWi0EPMuX2ARtEgwHu8Kq7+Lqb+1hY7AS+uEPr68JUA5v3cQhOUXAHnU7goX/ci F4Qfy+/ohJbslltrDPLiJTg0V/2SyapmuVyr2m9X4g7U2eiytNTrVj+d93NjxDs2CyvT 2BnoqxgMWmWfyGpTIWK3F3YUXGcWZd2NXS4FvLazm4VMKUApplNmPyHnrx4rI2JCDTNm LoUp9WdxdajDq5SZodNbZupBKKbkqunAj+BKWzy+l5YieQ7UelQrLEUcT4BDg7zS/xfA grfw== X-Gm-Message-State: AOAM532qOVJIkeMO24C8H+JqFWq9Bqd7j2o+Eg48LbNJLZ/mIJKIborS zwiiC/yFvZgeNiMiYS63PogWfDQQ9vuJeVaYvZ7qew6ezYpC3EDZr76qGjFIEV/IEQQ8AFxCztC 8VRTVT74rS8xePpFsMlk= X-Received: by 2002:a2e:b528:: with SMTP id z8mr1728390ljm.55.1633676144547; Thu, 07 Oct 2021 23:55:44 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwnUe9OsfDYFTnGJ+zibZvAY1NyPepb1Mk8+TSaKEQ/rrMF/ZAlP+Sw2DBIrFcVBQnL8tUvdFBQ94tC1vhWv/U= X-Received: by 2002:a2e:b528:: with SMTP id z8mr1728379ljm.55.1633676144355; Thu, 07 Oct 2021 23:55:44 -0700 (PDT) MIME-Version: 1.0 References: <20211007202451.90271-1-u9012063@gmail.com> In-Reply-To: From: David Marchand Date: Fri, 8 Oct 2021 08:55:33 +0200 Message-ID: To: William Tu Cc: dev , Dmitry Kozlyuk , Pallavi Kadam , "Wang, Haiyue" Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] net/e1000: build on Windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Oct 8, 2021 at 8:54 AM David Marchand wrote: > > On Thu, Oct 7, 2021 at 10:25 PM William Tu wrote: > > > > This patch enables building the e1000 driver for Windows. > > I tested using two Windows VM on top of VMware Fusion, > > creating two e1000 devices with device ID 0x10D3, > > verifying rx/tx works correctly using dpdk-testpmd.exe > > rxonly and txonly mode. > > > > Signed-off-by: William Tu > > Please, Cc: driver maintainers when touching one. And I pressed Send before adding Haiyue... fixed. -- David Marchand