From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1D827A328D for ; Tue, 22 Oct 2019 22:28:12 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CAB421BEEA; Tue, 22 Oct 2019 22:28:10 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 1274B1BEDC for ; Tue, 22 Oct 2019 22:28:08 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Oct 2019 13:28:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,217,1569308400"; d="scan'208";a="397813818" Received: from win-dpdk-pallavi.jf.intel.com (HELO localhost.localdomain) ([10.166.188.58]) by fmsmga005.fm.intel.com with ESMTP; 22 Oct 2019 13:28:07 -0700 From: Pallavi Kadam To: dev@dpdk.org, thomas@monjalon.net, Harini.Ramakrishnan@microsoft.com Cc: keith.wiles@intel.com, bruce.richardson@intel.com, david.marchand@redhat.com, jerinjacobk@gmail.com, ranjit.menon@intel.com, antara.ganesh.kolar@intel.com, pallavi.kadam@intel.com Date: Tue, 22 Oct 2019 13:02:18 -0700 Message-Id: <20191022200227.1920-1-pallavi.kadam@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20190926202924.6876-1-pallavi.kadam@intel.com> References: <20190926202924.6876-1-pallavi.kadam@intel.com> Subject: [dpdk-dev] [PATCH v3 0/9] Windows patchset with additional EAL functionalities 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" This patchset includes additional functionalities for Windows EAL to support command-line parsing feature and EAL common code on Windows. This patchset can be applied to windpdk-next-dev branch in the draft repo. v3 Changes: Modified generic rte_vect to add Windows support. Moved RTE_CPU* definitions to OS specific file. Added SPDX tag on top of third party files. v2 Changes: syslog.h: Replaced the BSD license boilerplate to SPDX tag. Pallavi Kadam (9): eal: eal stub to support parsing feature on windows eal: syslog implementation for windows eal: add windows compatible header files eal: dirent.h implementation for windows eal: add additional function overrides in windows header files eal: getopt implementation for windows eal: add function to detect process type build: add additional common files support eal: add minimum viable code to support parsing .../common/include/arch/x86/rte_vect.h | 4 +- lib/librte_eal/windows/eal/eal.c | 185 ++++- lib/librte_eal/windows/eal/eal_thread.c | 11 + lib/librte_eal/windows/eal/getopt.c | 498 +++++++++++++ lib/librte_eal/windows/eal/include/dirent.h | 668 ++++++++++++++++++ lib/librte_eal/windows/eal/include/dlfcn.h | 21 + .../windows/eal/include/eal_filesystem.h | 99 +++ lib/librte_eal/windows/eal/include/getopt.h | 150 ++++ lib/librte_eal/windows/eal/include/pthread.h | 66 ++ lib/librte_eal/windows/eal/include/rte_os.h | 34 + lib/librte_eal/windows/eal/include/sched.h | 58 +- .../windows/eal/include/sys/queue.h | 8 + lib/librte_eal/windows/eal/include/syslog.h | 189 +++++ lib/librte_eal/windows/eal/meson.build | 9 +- 14 files changed, 1988 insertions(+), 12 deletions(-) create mode 100644 lib/librte_eal/windows/eal/getopt.c create mode 100644 lib/librte_eal/windows/eal/include/dirent.h create mode 100644 lib/librte_eal/windows/eal/include/dlfcn.h create mode 100644 lib/librte_eal/windows/eal/include/eal_filesystem.h create mode 100644 lib/librte_eal/windows/eal/include/getopt.h create mode 100644 lib/librte_eal/windows/eal/include/syslog.h -- 2.18.0.windows.1