* [PATCH v6 0/3] net/macb: updated net macb driver.
@ 2025-04-08 6:19 liwencheng
2025-04-16 15:27 ` Stephen Hemminger
2025-04-18 3:24 ` [PATCH v7 " Wencheng Li
0 siblings, 2 replies; 3+ messages in thread
From: liwencheng @ 2025-04-08 6:19 UTC (permalink / raw)
To: dev
v6:
- Fixed build failures across different OS.
v5:
- Putting __rte_unused after the declaration.
- Correct RX-bytes and TX-bytes statistics.
- Initialize the mbuf_initializer.
- Add driver based on 25.07.
- Fixed some code style issues.
v4:
- Fix tab errors in meson.build file.
- Use RTE_LOG_LINE instead of rte_log.
- Replace %l with %PRI*64.
- Replace rte_smp_[r/w]mb with rte_[r/w]mb.
- Do not use variadic arguments in macros.
- Do not use variable-length array pkts[nb_bufs].
- Use __rte_cache_aligned only for struct or union types alignment.
- Support hardware Rx/Tx checksum offload.
- Fixed some code style issues.
v3:
- Changed functions that always return 0 and whose return value
is unused to void type, improving code simplicity and readability.
- Fixed the implicit conversion issues in the
macb_usxgmii_pcs_check_for_link and
macb_usxgmii_pcs_check_for_link functions.
- Added the missing SPDX license tags.
- Added the missing mailmap entry.
- Updated the MAINTAINERS file to include the missing information.
v2:
- Split the driver into three logically independent patches,
rather than one large patch.
- Added conditional compilation to address the issue of
macb_rxtx_vec_neon.c failing to compile in certain modes.
- Fixed some code style issues.
v1:
- updated net macb driver.
*** BLURB HERE ***
Wencheng Li (3):
net/macb: add new poll mode driver
net/macb: add NEON vectorized Rx/Tx
net/macb: add necessary docs and update related files
.mailmap | 1 +
MAINTAINERS | 6 +
doc/guides/nics/features/macb.ini | 27 +
doc/guides/nics/index.rst | 1 +
doc/guides/nics/macb.rst | 26 +
doc/guides/rel_notes/release_25_07.rst | 4 +
drivers/net/macb/base/generic_phy.c | 271 +++++
drivers/net/macb/base/generic_phy.h | 202 ++++
drivers/net/macb/base/macb_common.c | 670 ++++++++++++
drivers/net/macb/base/macb_common.h | 253 +++++
drivers/net/macb/base/macb_errno.h | 58 +
drivers/net/macb/base/macb_hw.h | 1138 +++++++++++++++++++
drivers/net/macb/base/macb_type.h | 23 +
drivers/net/macb/base/macb_uio.c | 351 ++++++
drivers/net/macb/base/macb_uio.h | 50 +
drivers/net/macb/base/meson.build | 25 +
drivers/net/macb/macb_ethdev.c | 1861 ++++++++++++++++++++++++++++++++
drivers/net/macb/macb_ethdev.h | 91 ++
drivers/net/macb/macb_log.h | 19 +
drivers/net/macb/macb_rxtx.c | 1394 ++++++++++++++++++++++++
drivers/net/macb/macb_rxtx.h | 325 ++++++
drivers/net/macb/macb_rxtx_vec_neon.c | 675 ++++++++++++
drivers/net/macb/meson.build | 22 +
drivers/net/meson.build | 1 +
24 files changed, 7494 insertions(+)
create mode 100644 doc/guides/nics/features/macb.ini
create mode 100644 doc/guides/nics/macb.rst
create mode 100644 drivers/net/macb/base/generic_phy.c
create mode 100644 drivers/net/macb/base/generic_phy.h
create mode 100644 drivers/net/macb/base/macb_common.c
create mode 100644 drivers/net/macb/base/macb_common.h
create mode 100644 drivers/net/macb/base/macb_errno.h
create mode 100644 drivers/net/macb/base/macb_hw.h
create mode 100644 drivers/net/macb/base/macb_type.h
create mode 100644 drivers/net/macb/base/macb_uio.c
create mode 100644 drivers/net/macb/base/macb_uio.h
create mode 100644 drivers/net/macb/base/meson.build
create mode 100644 drivers/net/macb/macb_ethdev.c
create mode 100644 drivers/net/macb/macb_ethdev.h
create mode 100644 drivers/net/macb/macb_log.h
create mode 100644 drivers/net/macb/macb_rxtx.c
create mode 100644 drivers/net/macb/macb_rxtx.h
create mode 100644 drivers/net/macb/macb_rxtx_vec_neon.c
create mode 100644 drivers/net/macb/meson.build
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v6 0/3] net/macb: updated net macb driver.
2025-04-08 6:19 [PATCH v6 0/3] net/macb: updated net macb driver liwencheng
@ 2025-04-16 15:27 ` Stephen Hemminger
2025-04-18 3:24 ` [PATCH v7 " Wencheng Li
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Hemminger @ 2025-04-16 15:27 UTC (permalink / raw)
To: liwencheng; +Cc: dev
On Tue, 8 Apr 2025 06:19:07 +0000
liwencheng <liwencheng@phytium.com.cn> wrote:
> v6:
> - Fixed build failures across different OS.
>
> v5:
> - Putting __rte_unused after the declaration.
> - Correct RX-bytes and TX-bytes statistics.
> - Initialize the mbuf_initializer.
> - Add driver based on 25.07.
> - Fixed some code style issues.
>
> v4:
> - Fix tab errors in meson.build file.
> - Use RTE_LOG_LINE instead of rte_log.
> - Replace %l with %PRI*64.
> - Replace rte_smp_[r/w]mb with rte_[r/w]mb.
> - Do not use variadic arguments in macros.
> - Do not use variable-length array pkts[nb_bufs].
> - Use __rte_cache_aligned only for struct or union types alignment.
> - Support hardware Rx/Tx checksum offload.
> - Fixed some code style issues.
> v3:
> - Changed functions that always return 0 and whose return value
> is unused to void type, improving code simplicity and readability.
> - Fixed the implicit conversion issues in the
> macb_usxgmii_pcs_check_for_link and
> macb_usxgmii_pcs_check_for_link functions.
> - Added the missing SPDX license tags.
> - Added the missing mailmap entry.
> - Updated the MAINTAINERS file to include the missing information.
>
> v2:
> - Split the driver into three logically independent patches,
> rather than one large patch.
> - Added conditional compilation to address the issue of
> macb_rxtx_vec_neon.c failing to compile in certain modes.
> - Fixed some code style issues.
>
> v1:
> - updated net macb driver.
>
> *** BLURB HERE ***
>
> Wencheng Li (3):
> net/macb: add new poll mode driver
> net/macb: add NEON vectorized Rx/Tx
> net/macb: add necessary docs and update related files
>
> .mailmap | 1 +
> MAINTAINERS | 6 +
> doc/guides/nics/features/macb.ini | 27 +
> doc/guides/nics/index.rst | 1 +
> doc/guides/nics/macb.rst | 26 +
> doc/guides/rel_notes/release_25_07.rst | 4 +
> drivers/net/macb/base/generic_phy.c | 271 +++++
> drivers/net/macb/base/generic_phy.h | 202 ++++
> drivers/net/macb/base/macb_common.c | 670 ++++++++++++
> drivers/net/macb/base/macb_common.h | 253 +++++
> drivers/net/macb/base/macb_errno.h | 58 +
> drivers/net/macb/base/macb_hw.h | 1138 +++++++++++++++++++
> drivers/net/macb/base/macb_type.h | 23 +
> drivers/net/macb/base/macb_uio.c | 351 ++++++
> drivers/net/macb/base/macb_uio.h | 50 +
> drivers/net/macb/base/meson.build | 25 +
> drivers/net/macb/macb_ethdev.c | 1861 ++++++++++++++++++++++++++++++++
> drivers/net/macb/macb_ethdev.h | 91 ++
> drivers/net/macb/macb_log.h | 19 +
> drivers/net/macb/macb_rxtx.c | 1394 ++++++++++++++++++++++++
> drivers/net/macb/macb_rxtx.h | 325 ++++++
> drivers/net/macb/macb_rxtx_vec_neon.c | 675 ++++++++++++
> drivers/net/macb/meson.build | 22 +
> drivers/net/meson.build | 1 +
> 24 files changed, 7494 insertions(+)
> create mode 100644 doc/guides/nics/features/macb.ini
> create mode 100644 doc/guides/nics/macb.rst
> create mode 100644 drivers/net/macb/base/generic_phy.c
> create mode 100644 drivers/net/macb/base/generic_phy.h
> create mode 100644 drivers/net/macb/base/macb_common.c
> create mode 100644 drivers/net/macb/base/macb_common.h
> create mode 100644 drivers/net/macb/base/macb_errno.h
> create mode 100644 drivers/net/macb/base/macb_hw.h
> create mode 100644 drivers/net/macb/base/macb_type.h
> create mode 100644 drivers/net/macb/base/macb_uio.c
> create mode 100644 drivers/net/macb/base/macb_uio.h
> create mode 100644 drivers/net/macb/base/meson.build
> create mode 100644 drivers/net/macb/macb_ethdev.c
> create mode 100644 drivers/net/macb/macb_ethdev.h
> create mode 100644 drivers/net/macb/macb_log.h
> create mode 100644 drivers/net/macb/macb_rxtx.c
> create mode 100644 drivers/net/macb/macb_rxtx.h
> create mode 100644 drivers/net/macb/macb_rxtx_vec_neon.c
> create mode 100644 drivers/net/macb/meson.build
>
When using Developer's Certificate of Origin, it is important to use
you legal name rather just the mail alias. If you send a follow up
use:
Signed-off-by: Wencheng Li <liwencheng@phytium.com.cn>
not:
Signed-off-by: liwencheng <liwencheng@phytium.com.cn>
That is what is causing some check-git-log.sh warnings.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v7 0/3] net/macb: updated net macb driver
2025-04-08 6:19 [PATCH v6 0/3] net/macb: updated net macb driver liwencheng
2025-04-16 15:27 ` Stephen Hemminger
@ 2025-04-18 3:24 ` Wencheng Li
1 sibling, 0 replies; 3+ messages in thread
From: Wencheng Li @ 2025-04-18 3:24 UTC (permalink / raw)
To: dev
v7:
- Use a legal name instead of an email alias.
- Do not use additional __rte_cold.
- Replace unsigned long with standard uint64_t.
- Describe the devargs used by the driver in the documentation.
- Update macb.ini.
v6:
- Fixed build failures across different OS.
v5:
- Putting __rte_unused after the declaration.
- Correct RX-bytes and TX-bytes statistics.
- Initialize the mbuf_initializer.
- Add driver based on 25.07.
- Fixed some code style issues.
v4:
- Fix tab errors in meson.build file.
- Use RTE_LOG_LINE instead of rte_log.
- Replace %l with %PRI*64.
- Replace rte_smp_[r/w]mb with rte_[r/w]mb.
- Do not use variadic arguments in macros.
- Do not use variable-length array pkts[nb_bufs].
- Use __rte_cache_aligned only for struct or union types alignment.
- Support hardware Rx/Tx checksum offload.
- Fixed some code style issues.
v3:
- Changed functions that always return 0 and whose return value
is unused to void type, improving code simplicity and readability.
- Fixed the implicit conversion issues in the
macb_usxgmii_pcs_check_for_link and
macb_usxgmii_pcs_check_for_link functions.
- Added the missing SPDX license tags.
- Added the missing mailmap entry.
- Updated the MAINTAINERS file to include the missing information.
v2:
- Split the driver into three logically independent patches,
rather than one large patch.
- Added conditional compilation to address the issue of
macb_rxtx_vec_neon.c failing to compile in certain modes.
- Fixed some code style issues.
v1:
- updated net macb driver.
*** BLURB HERE ***
Wencheng Li (3):
net/macb: add new poll mode driver
net/macb: add NEON vectorized Rx/Tx
net/macb: add necessary docs and update related files
.mailmap | 1 +
MAINTAINERS | 6 +
doc/guides/nics/features/macb.ini | 19 +
doc/guides/nics/index.rst | 1 +
doc/guides/nics/macb.rst | 180 +++
doc/guides/rel_notes/release_25_07.rst | 4 +
drivers/net/macb/base/generic_phy.c | 271 +++++
drivers/net/macb/base/generic_phy.h | 202 ++++
drivers/net/macb/base/macb_common.c | 670 ++++++++++++
drivers/net/macb/base/macb_common.h | 253 +++++
drivers/net/macb/base/macb_errno.h | 58 +
drivers/net/macb/base/macb_hw.h | 1138 +++++++++++++++++++
drivers/net/macb/base/macb_type.h | 23 +
drivers/net/macb/base/macb_uio.c | 351 ++++++
drivers/net/macb/base/macb_uio.h | 50 +
drivers/net/macb/base/meson.build | 25 +
drivers/net/macb/macb_ethdev.c | 1861 ++++++++++++++++++++++++++++++++
drivers/net/macb/macb_ethdev.h | 91 ++
drivers/net/macb/macb_log.h | 19 +
drivers/net/macb/macb_rxtx.c | 1394 ++++++++++++++++++++++++
drivers/net/macb/macb_rxtx.h | 325 ++++++
drivers/net/macb/macb_rxtx_vec_neon.c | 675 ++++++++++++
drivers/net/macb/meson.build | 22 +
drivers/net/meson.build | 1 +
24 files changed, 7640 insertions(+)
create mode 100644 doc/guides/nics/features/macb.ini
create mode 100644 doc/guides/nics/macb.rst
create mode 100644 drivers/net/macb/base/generic_phy.c
create mode 100644 drivers/net/macb/base/generic_phy.h
create mode 100644 drivers/net/macb/base/macb_common.c
create mode 100644 drivers/net/macb/base/macb_common.h
create mode 100644 drivers/net/macb/base/macb_errno.h
create mode 100644 drivers/net/macb/base/macb_hw.h
create mode 100644 drivers/net/macb/base/macb_type.h
create mode 100644 drivers/net/macb/base/macb_uio.c
create mode 100644 drivers/net/macb/base/macb_uio.h
create mode 100644 drivers/net/macb/base/meson.build
create mode 100644 drivers/net/macb/macb_ethdev.c
create mode 100644 drivers/net/macb/macb_ethdev.h
create mode 100644 drivers/net/macb/macb_log.h
create mode 100644 drivers/net/macb/macb_rxtx.c
create mode 100644 drivers/net/macb/macb_rxtx.h
create mode 100644 drivers/net/macb/macb_rxtx_vec_neon.c
create mode 100644 drivers/net/macb/meson.build
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-18 3:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-08 6:19 [PATCH v6 0/3] net/macb: updated net macb driver liwencheng
2025-04-16 15:27 ` Stephen Hemminger
2025-04-18 3:24 ` [PATCH v7 " Wencheng Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).