From: Stephen Hemminger <stephen@networkplumber.org>
To: Bingbin Chen <chen.bingbin@zte.com.cn>
Cc: wang.junlong1@zte.com.cn, yang.yonggang@zte.com.cn, dev@dpdk.org
Subject: Re: [PATCH v6 00/14] net/zxdh: add network processor ops
Date: Thu, 27 Mar 2025 11:12:05 -0700 [thread overview]
Message-ID: <20250327111205.026b6e9b@hermes.local> (raw)
In-Reply-To: <20250321073200.2015711-1-chen.bingbin@zte.com.cn>
On Fri, 21 Mar 2025 15:31:46 +0800
Bingbin Chen <chen.bingbin@zte.com.cn> wrote:
> v6:
> - Use byte stream to process bar channel return messages
> and modify some issues to ensure proper functionality.
>
> v5:
> - the VF read/write table function is fixed.
>
> v4:
> - change some tables to const.
> - use %u instead of %d.
> - delete cast of ret_zmalloc() return.
> - resolve code functionality issues.
>
> V3:
> - resolve code style.
> - resolve spin lock build issue.
> - rebase code baseline.
> - modify parameters of the plcr function.
>
> V2:
> - resolve code style and github-robot build issue.
> - eliminate commit warning.
> - remove unnecessary initialization, which first usage will set.
> - replace mutex lock with spinlock.
>
> V1:
> - updated network processor driver.
> - improve insert/delete/get table code funcs.
>
> Bingbin Chen (14):
> net/zxdh: add network processor registers ops
> net/zxdh: support compatibility check
> net/zxdh: add agent channel
> net/zxdh: modify dtb queue ops
> net/zxdh: add tables dump address ops
> net/zxdh: add eram tables ops
> net/zxdh: get flow tables resources
> net/zxdh: support hash resources configuration
> net/zxdh: implement tables initialization
> net/zxdh: support hash tables write and delete ops
> net/zxdh: get hash table entry result
> net/zxdh: delete all hash entries
> net/zxdh: add acl tables ops
> net/zxdh: optimize msg processing ops and modify some issues
>
> drivers/net/zxdh/zxdh_common.h | 100 +
> drivers/net/zxdh/zxdh_ethdev.c | 88 +-
> drivers/net/zxdh/zxdh_ethdev.h | 1 +
> drivers/net/zxdh/zxdh_ethdev_ops.c | 109 +-
> drivers/net/zxdh/zxdh_ethdev_ops.h | 35 +
> drivers/net/zxdh/zxdh_msg.c | 381 +-
> drivers/net/zxdh/zxdh_msg.h | 99 +-
> drivers/net/zxdh/zxdh_mtr.c | 50 +-
> drivers/net/zxdh/zxdh_mtr.h | 5 +
> drivers/net/zxdh/zxdh_np.c | 11631 +++++++++++++++++++++++----
> drivers/net/zxdh/zxdh_np.h | 1243 ++-
> drivers/net/zxdh/zxdh_pci.c | 24 +-
> drivers/net/zxdh/zxdh_pci.h | 2 +-
> drivers/net/zxdh/zxdh_rxtx.c | 12 +-
> drivers/net/zxdh/zxdh_tables.c | 67 +-
> drivers/net/zxdh/zxdh_tables.h | 68 +-
> 16 files changed, 11983 insertions(+), 1932 deletions(-)
>
Applied to next-net with a couple of small additions:
1. Added Bingbing Chen to mailmap
2. Removed unnecessary usage of VLA and enabled warning
next prev parent reply other threads:[~2025-03-27 18:12 UTC|newest]
Thread overview: 114+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-10 1:44 [PATCH v1 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-02-10 1:46 ` [PATCH v1 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-02-10 17:25 ` Stephen Hemminger
2025-02-10 1:47 ` [PATCH v1 03/14] net/zxdh: add agent channel Bingbin Chen
2025-02-10 17:28 ` Stephen Hemminger
2025-02-10 17:30 ` Stephen Hemminger
2025-02-10 17:31 ` Stephen Hemminger
2025-02-10 18:23 ` Stephen Hemminger
2025-02-10 1:47 ` [PATCH v1 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-02-10 17:31 ` Stephen Hemminger
2025-02-10 1:48 ` [PATCH v1 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-02-10 17:33 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-02-10 1:50 ` [PATCH v1 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-02-10 17:35 ` Stephen Hemminger
2025-02-10 17:35 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-02-10 17:36 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-02-10 17:40 ` Stephen Hemminger
2025-02-10 17:43 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-02-10 17:45 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-02-10 17:46 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-02-10 17:47 ` Stephen Hemminger
2025-02-10 1:50 ` [PATCH v1 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-02-10 1:50 ` [PATCH v1 14/14] net/zxdh: clean stat values Bingbin Chen
2025-02-10 17:50 ` Stephen Hemminger
2025-02-10 17:50 ` Stephen Hemminger
2025-02-10 18:19 ` Stephen Hemminger
2025-02-22 7:22 ` [PATCH v2 00/14] add network processor ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 03/14] net/zxdh: add agent channel Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-02-22 7:22 ` [PATCH v2 14/14] net/zxdh: clean stat values Bingbin Chen
2025-02-22 17:34 ` Stephen Hemminger
2025-03-05 8:13 ` [PATCH v3 00/14] net/zxdh: add network processor ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 00/14] net/zxdh: add network processor ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 00/14] net/zxdh: add network processor ops Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 03/14] net/zxdh: add agent channel Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-03-19 8:57 ` [PATCH v5 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-03-19 8:58 ` [PATCH v5 14/14] net/zxdh: fix debugging errors Bingbin Chen
2025-03-20 19:50 ` Stephen Hemminger
2025-03-21 3:07 ` Bingbin Chen
2025-03-19 9:31 ` [v5,00/14] net/zxdh: add network processor ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 00/14] " Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 01/14] net/zxdh: add network processor registers ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 03/14] net/zxdh: add agent channel Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-03-21 7:31 ` [PATCH v6 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-03-21 7:32 ` [PATCH v6 14/14] net/zxdh: optimize msg processing ops and modify some issues Bingbin Chen
2025-04-08 13:34 ` Stephen Hemminger
2025-03-27 18:12 ` Stephen Hemminger [this message]
2025-03-17 14:57 ` [PATCH v4 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 03/14] net/zxdh: add agent channel Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-03-17 14:57 ` [PATCH v4 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-03-17 14:58 ` [PATCH v4 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-03-17 14:58 ` [PATCH v4 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-03-17 14:58 ` [PATCH v4 14/14] net/zxdh: fix debugging errors Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 02/14] net/zxdh: support compatibility check Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 03/14] net/zxdh: add agent channel Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 04/14] net/zxdh: modify dtb queue ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 05/14] net/zxdh: add tables dump address ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 06/14] net/zxdh: add eram tables ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 07/14] net/zxdh: get flow tables resources Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 08/14] net/zxdh: support hash resources configuration Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 09/14] net/zxdh: implement tables initialization Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 10/14] net/zxdh: support hash tables write and delete ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 11/14] net/zxdh: get hash table entry result Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 12/14] net/zxdh: delete all hash entries Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 13/14] net/zxdh: add acl tables ops Bingbin Chen
2025-03-05 8:13 ` [PATCH v3 14/14] net/zxdh: modify parameters of the plcr function Bingbin Chen
2025-03-10 23:19 ` [PATCH v1 01/14] net/zxdh: add network processor registers ops 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=20250327111205.026b6e9b@hermes.local \
--to=stephen@networkplumber.org \
--cc=chen.bingbin@zte.com.cn \
--cc=dev@dpdk.org \
--cc=wang.junlong1@zte.com.cn \
--cc=yang.yonggang@zte.com.cn \
/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.