v9:<br />  - fix 'v8 3/9' patch use PCI bus API,<br />    and common PCI constants according to David Marchand's comments.<br /> <br />v8:<br />  - fix flexible arrays、Waddress-of-packed-member error.<br />  - all structs、enum、define ,etc use zxdh/ZXDH_ prefixed.<br />  - use zxdh_try/release_lock,and move loop into zxdh_timedlock,<br />    make hardware lock follow spinlock pattern.<br /> <br />v7:<br />  - add release notes and modify zxdh.rst issues.<br />  - avoid use pthread and use rte_spinlock_lock.<br />  - using the prefix ZXDH_ before some definitions.<br />  - resole issues according to thomas's comments.<br /> <br />v6:<br />  - Resolve ci/intel compilation issues.<br />  - fix meson.build indentation in earlier patch.<br /> <br />V5:<br />  - split driver into multiple patches,part of the zxdh driver,<br />    later provide dev start/stop,queue_setup,npsdk_init,mac,vlan,rss ,etc.<br />  - fix errors reported by scripts.<br />  - move the product link in zxdh.rst.<br />  - fix meson check use RTE_ARCH_X86_64/RTE_ARCH_ARM64.<br />  - modify other comments according to Ferruh's comments.<br /> <br />Junlong Wang (9):<br />  net/zxdh: add zxdh ethdev pmd driver<br />  net/zxdh: add logging implementation<br />  net/zxdh: add zxdh device pci init implementation<br />  net/zxdh: add msg chan and msg hwlock init<br />  net/zxdh: add msg chan enable implementation<br />  net/zxdh: add zxdh get device backend infos<br />  net/zxdh: add configure zxdh intr implementation<br />  net/zxdh: add zxdh dev infos get ops<br />  net/zxdh: add zxdh dev configure ops<br /> <br /> MAINTAINERS                            |   6 +<br /> doc/guides/nics/features/zxdh.ini      |   9 +<br /> doc/guides/nics/index.rst              |   1 +<br /> doc/guides/nics/zxdh.rst               |  31 +<br /> doc/guides/rel_notes/release_24_11.rst |   4 +<br /> drivers/net/meson.build                |   1 +<br /> drivers/net/zxdh/meson.build           |  22 +<br /> drivers/net/zxdh/zxdh_common.c         | 385 ++++++++++<br /> drivers/net/zxdh/zxdh_common.h         |  42 ++<br /> drivers/net/zxdh/zxdh_ethdev.c         | 994 +++++++++++++++++++++++++<br /> drivers/net/zxdh/zxdh_ethdev.h         | 102 +++<br /> drivers/net/zxdh/zxdh_logs.h           |  40 +<br /> drivers/net/zxdh/zxdh_msg.c            | 986 ++++++++++++++++++++++++<br /> drivers/net/zxdh/zxdh_msg.h            | 229 ++++++<br /> drivers/net/zxdh/zxdh_pci.c            | 402 ++++++++++<br /> drivers/net/zxdh/zxdh_pci.h            | 175 +++++<br /> drivers/net/zxdh/zxdh_queue.c          | 123 +++<br /> drivers/net/zxdh/zxdh_queue.h          | 281 +++++++<br /> drivers/net/zxdh/zxdh_rxtx.h           |  55 ++<br /> 19 files changed, 3888 insertions(+)<br /> create mode 100644 doc/guides/nics/features/zxdh.ini<br /> create mode 100644 doc/guides/nics/zxdh.rst<br /> create mode 100644 drivers/net/zxdh/meson.build<br /> create mode 100644 drivers/net/zxdh/zxdh_common.c<br /> create mode 100644 drivers/net/zxdh/zxdh_common.h<br /> create mode 100644 drivers/net/zxdh/zxdh_ethdev.c<br /> create mode 100644 drivers/net/zxdh/zxdh_ethdev.h<br /> create mode 100644 drivers/net/zxdh/zxdh_logs.h<br /> create mode 100644 drivers/net/zxdh/zxdh_msg.c<br /> create mode 100644 drivers/net/zxdh/zxdh_msg.h<br /> create mode 100644 drivers/net/zxdh/zxdh_pci.c<br /> create mode 100644 drivers/net/zxdh/zxdh_pci.h<br /> create mode 100644 drivers/net/zxdh/zxdh_queue.c<br /> create mode 100644 drivers/net/zxdh/zxdh_queue.h<br /> create mode 100644 drivers/net/zxdh/zxdh_rxtx.h<br /> <br />--  <br />2.27.0<br />