From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B06CCC0044D for ; Tue, 17 Mar 2020 00:50:19 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 650AF20679 for ; Tue, 17 Mar 2020 00:50:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 650AF20679 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0E79A1C06A; Tue, 17 Mar 2020 01:50:18 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 0D5B21C068 for ; Tue, 17 Mar 2020 01:50:15 +0100 (CET) IronPort-SDR: 9M7iHjMdXSSmeVia9MnCkFtE/1mznrdMOvrWP7Fqpd7y4W4r8eW+gt5OFgFWVuU+dwZnTAmSHf hOL+zGaOU74A== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2020 17:50:14 -0700 IronPort-SDR: 1hXBV9NiVsXLEkPDRRB6AMMt0P3LYcWYybWzt2UOjJPpYJ+YaeDHqO67fAiawy3ch6060YxSXk fKLaDU/Lfjdg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,562,1574150400"; d="scan'208";a="355208454" Received: from win-dpdk-pallavi.jf.intel.com (HELO localhost.localdomain) ([10.166.188.75]) by fmsmga001.fm.intel.com with ESMTP; 16 Mar 2020 17:50:13 -0700 From: Pallavi Kadam To: dev@dpdk.org, thomas@monjalon.net Cc: ranjit.menon@intel.com, talshn@mellanox.com, pallavi.kadam@intel.com Date: Mon, 16 Mar 2020 17:48:00 -0700 Message-Id: <20200317004802.11424-1-pallavi.kadam@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 Subject: [dpdk-dev] [PATCH 0/2] Support librte_pci on Windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Includes Windows specific EAL changes and meson changes to support pci lib on Windows. Added mman.c and mman.h to support common code. These files are under MIT license and need exception. note: license/exceptions.txt will be modified once exception is approved. Pallavi Kadam (2): eal: mman implementation for windows build: add module definitions and pci lib support lib/librte_eal/rte_eal_exports.def | 2 + lib/librte_eal/windows/eal/include/sys/mman.h | 84 ++++++++ lib/librte_eal/windows/eal/meson.build | 1 + lib/librte_eal/windows/eal/mman.c | 181 ++++++++++++++++++ lib/meson.build | 2 +- 5 files changed, 269 insertions(+), 1 deletion(-) create mode 100644 lib/librte_eal/windows/eal/include/sys/mman.h create mode 100644 lib/librte_eal/windows/eal/mman.c -- 2.18.0.windows.1