All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>
Subject: [PATCH v5 0/9] Enable building more libraries on Windows
Date: Thu,  9 Mar 2023 13:31:19 -0800	[thread overview]
Message-ID: <20230309213128.34146-1-stephen@networkplumber.org> (raw)
In-Reply-To: <20221201014440.11896-1-stephen@networkplumber.org>

While diagnosing some Windows cross build errors;
noticed that lots of important DPDK libraries are not
being built on Windows.

Stephen Hemminger (8):
  net/null: build null PMD on Windows
  net/ring: build on Windows
  lpm: enable on Windows
  reorder: build on Windows
  ip_frag: enable build on Windows
  rib: enable on Windows
  fib: enable on Windows
  pcapng: windows compatibility

v5 - remove no longer needed rte_os_shim.h in ring

v4 - fix spelling in commnet
     enable build of lib/table as well

v3 - add rte_os_shim.h to rte_ring to fix use of
     strdup() breaking with stricter MS compiler

v2 - fix unnecessary PATH_MAX in net/ring driver

Stephen Hemminger (9):
  net/null: build null PMD on Windows
  net/ring: build on Windows
  lpm: enable on Windows
  reorder: build on Windows
  ip_frag: enable build on Windows
  rib: enable on Windows
  fib: enable on Windows
  pcapng: windows compatibility
  table: enable build on Windows

 app/test/meson.build            |  2 +-
 app/test/test_fib.c             | 22 +-----------
 app/test/test_fib6.c            | 24 ++------------
 app/test/test_fib6_perf.c       | 15 +--------
 app/test/test_fib_perf.c        | 19 ++---------
 app/test/test_ipfrag.c          | 12 -------
 app/test/test_lpm.c             | 15 +--------
 app/test/test_lpm6.c            | 12 -------
 app/test/test_lpm6_data.h       |  3 +-
 app/test/test_lpm6_perf.c       | 14 +-------
 app/test/test_lpm_perf.c        | 39 +++++++---------------
 app/test/test_reorder.c         | 11 ------
 app/test/test_rib.c             | 19 -----------
 app/test/test_rib6.c            | 24 ++------------
 drivers/net/null/meson.build    |  6 ----
 drivers/net/ring/meson.build    |  6 ----
 drivers/net/ring/rte_eth_ring.c |  3 +-
 lib/fib/meson.build             |  6 ----
 lib/fib/rte_fib.c               |  1 +
 lib/fib/rte_fib6.c              |  1 +
 lib/ip_frag/ip_frag_common.h    |  2 ++
 lib/ip_frag/meson.build         |  6 ----
 lib/lpm/meson.build             |  6 ----
 lib/pcapng/meson.build          |  6 ----
 lib/pcapng/rte_pcapng.c         | 59 +++++++++++++++++++++++++++++++--
 lib/reorder/meson.build         |  6 ----
 lib/reorder/rte_reorder.c       |  1 +
 lib/rib/meson.build             |  6 ----
 lib/rib/rte_rib.c               |  1 +
 lib/rib/rte_rib6.c              |  1 +
 lib/table/meson.build           |  6 ----
 31 files changed, 92 insertions(+), 262 deletions(-)

-- 
2.39.2


  parent reply	other threads:[~2023-03-09 21:31 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-01  1:44 [PATCH 0/8] Enable building more on Windows Stephen Hemminger
2022-12-01  1:44 ` [PATCH 1/8] net/null: build null PMD " Stephen Hemminger
2022-12-01 23:51   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 2/8] net/ring: build " Stephen Hemminger
2022-12-01 23:52   ` Tyler Retzlaff
2022-12-14 23:18   ` Kadam, Pallavi
2022-12-15  3:22     ` Stephen Hemminger
2022-12-15 17:48       ` Tyler Retzlaff
2022-12-15 18:09         ` Dmitry Kozlyuk
2022-12-01  1:44 ` [PATCH 3/8] lpm: enable " Stephen Hemminger
2022-12-01 23:53   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 4/8] reorder: build " Stephen Hemminger
2022-12-01 23:53   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 5/8] ip_frag: enable " Stephen Hemminger
2022-12-01 23:54   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 6/8] rib: enable " Stephen Hemminger
2022-12-01 23:54   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 7/8] fib: " Stephen Hemminger
2022-12-01 23:54   ` Tyler Retzlaff
2022-12-01  1:44 ` [PATCH 8/8] pcapng: windows compatability Stephen Hemminger
2022-12-01 23:55   ` Tyler Retzlaff
2023-02-07  0:19 ` [PATCH v2 0/8] Enable building more libraries on Windows Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 1/8] net/null: build null PMD " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 2/8] net/ring: build " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 3/8] lpm: enable " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 4/8] reorder: build " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 5/8] ip_frag: enable " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 6/8] rib: enable " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 7/8] fib: " Stephen Hemminger
2023-02-07  0:19   ` [PATCH v2 8/8] pcapng: windows compatibility Stephen Hemminger
2023-02-07 22:13   ` [PATCH v2 0/8] Enable building more libraries on Windows Dmitry Kozlyuk
2023-02-09  9:16     ` David Marchand
2023-02-19 17:50   ` [PATCH v3 " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 1/8] net/null: build null PMD " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 2/8] net/ring: build " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 3/8] lpm: enable " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 4/8] reorder: build " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 5/8] ip_frag: enable " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 6/8] rib: enable " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 7/8] fib: " Stephen Hemminger
2023-02-19 17:50     ` [PATCH v3 8/8] pcapng: windows compatibility Stephen Hemminger
2023-02-19 23:14   ` [PATCH v4 0/9] Enable building more libraries on Windows Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 1/9] net/null: build null PMD " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 2/9] net/ring: build " Stephen Hemminger
2023-03-09 21:10       ` David Marchand
2023-03-09 21:21         ` Stephen Hemminger
2023-03-10  9:34           ` David Marchand
2023-02-19 23:14     ` [PATCH v4 3/9] lpm: enable " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 4/9] reorder: build " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 5/9] ip_frag: enable " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 6/9] rib: enable " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 7/9] fib: " Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 8/9] pcapng: windows compatibility Stephen Hemminger
2023-02-19 23:14     ` [PATCH v4 9/9] table: enable build on Windows Stephen Hemminger
2023-03-06 21:07       ` Tyler Retzlaff
2023-03-10 14:06     ` [PATCH v4 0/9] Enable building more libraries " David Marchand
2023-03-09 21:31 ` Stephen Hemminger [this message]
2023-03-09 21:31   ` [PATCH v5 1/9] net/null: build null PMD " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 2/9] net/ring: build " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 3/9] lpm: enable " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 4/9] reorder: build " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 5/9] ip_frag: enable " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 6/9] rib: enable " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 7/9] fib: " Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 8/9] pcapng: windows compatibility Stephen Hemminger
2023-03-09 21:31   ` [PATCH v5 9/9] table: enable build on Windows Stephen Hemminger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230309213128.34146-1-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.