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 96A97A2EDB for ; Sat, 7 Sep 2019 00:34:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1131A1F402; Sat, 7 Sep 2019 00:34:00 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 3E41C1C135 for ; Sat, 7 Sep 2019 00:33:55 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Sep 2019 15:33:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,474,1559545200"; d="scan'208";a="208372424" Received: from win-dpdk-pallavi.jf.intel.com (HELO localhost.localdomain) ([10.166.188.58]) by fmsmga004.fm.intel.com with ESMTP; 06 Sep 2019 15:33:52 -0700 From: Pallavi Kadam To: dev@dpdk.org, thomas@monjalon.net Cc: Harini.Ramakrishnan@microsoft.com, ranjit.menon@intel.com, keith.wiles@intel.com, bruce.richardson@intel.com, antara.ganesh.kolar@intel.com, pallavi.kadam@intel.com Date: Fri, 6 Sep 2019 15:09:48 -0700 Message-Id: <20190906220957.7892-1-pallavi.kadam@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 Subject: [dpdk-dev] [PATCH 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 to 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. 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 lib/librte_eal/common/include/rte_lcore.h | 5 + lib/librte_eal/windows/eal/eal.c | 185 ++++- lib/librte_eal/windows/eal/eal_thread.c | 11 + lib/librte_eal/windows/eal/getopt.c | 132 ++++ lib/librte_eal/windows/eal/getopt_long.c | 196 ++++++ lib/librte_eal/windows/eal/include/dirent.h | 666 ++++++++++++++++++ lib/librte_eal/windows/eal/include/dlfcn.h | 21 + .../windows/eal/include/eal_filesystem.h | 99 +++ lib/librte_eal/windows/eal/include/getopt.h | 59 ++ lib/librte_eal/windows/eal/include/pthread.h | 66 ++ lib/librte_eal/windows/eal/include/rte_os.h | 28 + lib/librte_eal/windows/eal/include/rte_vect.h | 9 + lib/librte_eal/windows/eal/include/sched.h | 58 +- .../windows/eal/include/sys/queue.h | 8 + lib/librte_eal/windows/eal/include/syslog.h | 213 ++++++ lib/librte_eal/windows/eal/meson.build | 10 +- 16 files changed, 1755 insertions(+), 11 deletions(-) create mode 100644 lib/librte_eal/windows/eal/getopt.c create mode 100644 lib/librte_eal/windows/eal/getopt_long.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/rte_vect.h create mode 100644 lib/librte_eal/windows/eal/include/syslog.h -- 2.18.0.windows.1