From: "wangfeifei (J)" <wangfeifei40@huawei.com>
To: Stephen Hemminger <stephen@networkplumber.org>,
Feifei Wang <wff_light@vip.163.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
"Gongfan (Eric, Chip)" <gongfan1@huawei.com>
Subject: 回复: [V12 00/18] add-hinic3-PMD-driver
Date: Wed, 24 Sep 2025 06:27:23 +0000 [thread overview]
Message-ID: <a3d1b3d0b26d4c868ef5b58e427addd4@huawei.com> (raw)
In-Reply-To: <20250923085756.3daef787@hermes.local>
> -----邮件原件-----
> 发件人: Stephen Hemminger <stephen@networkplumber.org>
> 发送时间: 2025年9月23日 23:58
> 收件人: Feifei Wang <wff_light@vip.163.com>
> 抄送: dev@dpdk.org; Gongfan (Eric, Chip) <gongfan1@huawei.com>
> 主题: Re: [V12 00/18] add-hinic3-PMD-driver
>
> On Fri, 19 Sep 2025 19:24:04 +0800
> Feifei Wang <wff_light@vip.163.com> wrote:
>
> > The hinic3 PMD (**librte_net_hinic3**) provides poll mode driver
> > support for 25Gbps/100Gbps/200Gbps Huawei SPx series Network
> Adapters.
> >
> > V12:
> > -modify get_bit function
> > -remove define but not used macro
> > -modify time_before macro
> >
> > v11:
> > -reorder code to avoid forward declarations -remove unused casts -use
> > assignment instead of memcpy -change some LOG level to DEBUG level
> > -remove unused function -remove unused check in
> > mtu_set/dev_config/valn_filter_set
> > -defer start/stop
> > -use strlpy instead snprintf
> > -remove unnecessary line breaks, fit on line
> >
> > v10:
> > -add prefix to some functions
> > -use memcpy instead of rte_memcpy for simple fixed copies -modify LOG
> > messege format -modify meson.build files -remove unused check in
> > queue_start/stop/intr -remove unused function -remove function that
> > stubbed out -modify some api log level -remove features unsuppurted
> > -modify some casts -change xstats_cal_num return type -modify stats
> > get function
> >
> > v9:
> > -resolve type conflict issue
> >
> > v8:
> > -resolve CI compile error
> > -modify mbox section
> >
> > v7:
> > -remove unused-functions
> >
> > v6:
> > -modify based on community comments
> > -remove mml files
> >
> > v5:
> > -fix build err
> >
> > v4:
> > -solve patch application conflict issue
> >
> > v3:
> > -fix checkpatchs errors issue
> >
> > v2:
> > -modify CI compile errors
> >
> > v1:
> > -modify community comments and compile issues -remove the
> compilation
> > flags in the meson build -remove (void) cur_link_machine_state -remove
> > '*** BLURE HERE ***' in cover letter
> >
> > Feifei Wang (2):
> > net/hinic3: add dev ops
> > net/hinic3: add Rx/Tx functions
> >
> > Xin Wang (7):
> > net/hinic3: add basic header files
> > net/hinic3: add support for cmdq mechanism
> > net/hinic3: add NIC event module
> > net/hinic3: add context and work queue support
> > net/hinic3: add futions for initialization
> > net/hinic3: add device initialization
> > net/hinic3: add RSS promiscuous ops
> >
> > Yi Chen (9):
> > doc: add hinic3 driver
> > net/hinic3: add hardware interfaces of BAR operation
> > net/hinic3: add eq mechanism
> > net/hinic3: add mgmt module function code
> > net/hinic3: add module about hardware operation
> > net/hinic3: add a NIC business configuration module
> > net/hinic3: add a mailbox communication module
> > net/hinic3: add flow control and FDIR module
> > drivers/net: add hinic3 PMD build and doc files
> >
> > .mailmap | 4 +-
> > MAINTAINERS | 6 +
> > doc/guides/nics/features/hinic3.ini | 60 +
> > doc/guides/nics/hinic3.rst | 47 +
> > doc/guides/nics/index.rst | 1 +
> > doc/guides/rel_notes/release_25_11.rst | 4 +
> > drivers/net/hinic3/base/hinic3_cmd.h | 135 +
> > drivers/net/hinic3/base/hinic3_cmdq.c | 962 ++++++
> > drivers/net/hinic3/base/hinic3_cmdq.h | 222 ++
> > drivers/net/hinic3/base/hinic3_compat.h | 133 +
> > drivers/net/hinic3/base/hinic3_csr.h | 104 +
> > drivers/net/hinic3/base/hinic3_eqs.c | 700 ++++
> > drivers/net/hinic3/base/hinic3_eqs.h | 92 +
> > drivers/net/hinic3/base/hinic3_hw_cfg.c | 190 ++
> > drivers/net/hinic3/base/hinic3_hw_cfg.h | 110 +
> > drivers/net/hinic3/base/hinic3_hw_comm.c | 442 +++
> > drivers/net/hinic3/base/hinic3_hw_comm.h | 365 ++
> > drivers/net/hinic3/base/hinic3_hwdev.c | 549 +++
> > drivers/net/hinic3/base/hinic3_hwdev.h | 166 +
> > drivers/net/hinic3/base/hinic3_hwif.c | 739 ++++
> > drivers/net/hinic3/base/hinic3_hwif.h | 145 +
> > drivers/net/hinic3/base/hinic3_mbox.c | 1189 +++++++
> > drivers/net/hinic3/base/hinic3_mbox.h | 181 +
> > drivers/net/hinic3/base/hinic3_mgmt.c | 340 ++
> > drivers/net/hinic3/base/hinic3_mgmt.h | 102 +
> > drivers/net/hinic3/base/hinic3_nic_cfg.c | 1785 ++++++++++
> > drivers/net/hinic3/base/hinic3_nic_cfg.h | 1517 +++++++++
> > drivers/net/hinic3/base/hinic3_nic_event.c | 400 +++
> > drivers/net/hinic3/base/hinic3_nic_event.h | 38 +
> > drivers/net/hinic3/base/hinic3_wq.c | 139 +
> > drivers/net/hinic3/base/hinic3_wq.h | 109 +
> > drivers/net/hinic3/base/meson.build | 16 +
> > drivers/net/hinic3/hinic3_ethdev.c | 3565
> ++++++++++++++++++++
> > drivers/net/hinic3/hinic3_ethdev.h | 164 +
> > drivers/net/hinic3/hinic3_fdir.c | 1364 ++++++++
> > drivers/net/hinic3/hinic3_fdir.h | 398 +++
> > drivers/net/hinic3/hinic3_flow.c | 1476 ++++++++
> > drivers/net/hinic3/hinic3_flow.h | 196 ++
> > drivers/net/hinic3/hinic3_nic_io.c | 802 +++++
> > drivers/net/hinic3/hinic3_nic_io.h | 171 +
> > drivers/net/hinic3/hinic3_rx.c | 1057 ++++++
> > drivers/net/hinic3/hinic3_rx.h | 354 ++
> > drivers/net/hinic3/hinic3_tx.c | 1025 ++++++
> > drivers/net/hinic3/hinic3_tx.h | 314 ++
> > drivers/net/hinic3/meson.build | 30 +
> > drivers/net/meson.build | 1 +
> > 46 files changed, 21908 insertions(+), 1 deletion(-) create mode
> > 100644 doc/guides/nics/features/hinic3.ini
> > create mode 100644 doc/guides/nics/hinic3.rst create mode 100644
> > drivers/net/hinic3/base/hinic3_cmd.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_cmdq.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_cmdq.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_compat.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_csr.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_eqs.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_eqs.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_hw_cfg.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_hw_cfg.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_hw_comm.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_hw_comm.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_hwdev.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_hwdev.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_hwif.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_hwif.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_mbox.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_mbox.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_mgmt.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_mgmt.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_nic_cfg.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_nic_cfg.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_nic_event.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_nic_event.h
> > create mode 100644 drivers/net/hinic3/base/hinic3_wq.c
> > create mode 100644 drivers/net/hinic3/base/hinic3_wq.h
> > create mode 100644 drivers/net/hinic3/base/meson.build
> > create mode 100644 drivers/net/hinic3/hinic3_ethdev.c
> > create mode 100644 drivers/net/hinic3/hinic3_ethdev.h
> > create mode 100644 drivers/net/hinic3/hinic3_fdir.c create mode
> > 100644 drivers/net/hinic3/hinic3_fdir.h create mode 100644
> > drivers/net/hinic3/hinic3_flow.c create mode 100644
> > drivers/net/hinic3/hinic3_flow.h create mode 100644
> > drivers/net/hinic3/hinic3_nic_io.c
> > create mode 100644 drivers/net/hinic3/hinic3_nic_io.h
> > create mode 100644 drivers/net/hinic3/hinic3_rx.c create mode
> 100644
> > drivers/net/hinic3/hinic3_rx.h create mode 100644
> > drivers/net/hinic3/hinic3_tx.c create mode 100644
> > drivers/net/hinic3/hinic3_tx.h create mode 100644
> > drivers/net/hinic3/meson.build
> >
>
> Queued to next-net. Thank you for following up on all the review
[Feifei] Hi, Stephen, Thanks a lot for your timely and useful comments!
Next, we will update the last version to make some doc modifications.
Again, thanks for your kindly review!
next prev parent reply other threads:[~2025-09-24 6:27 UTC|newest]
Thread overview: 384+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-18 9:05 [RFC 00/18] add hinic3 PMD driver Feifei Wang
2025-04-18 9:05 ` [RFC 01/18] net/hinic3: add intro doc for hinic3 Feifei Wang
2025-04-18 9:05 ` [RFC 02/18] net/hinic3: add basic header files Feifei Wang
2025-04-18 9:05 ` [RFC 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-04-18 9:05 ` [RFC 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-04-18 9:05 ` [RFC 05/18] net/hinic3: add NIC event module Feifei Wang
2025-04-18 9:05 ` [RFC 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-04-18 9:05 ` [RFC 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-04-18 9:05 ` [RFC 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-04-18 9:05 ` [RFC 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-04-18 9:05 ` [RFC 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-04-18 9:05 ` [RFC 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-04-18 9:05 ` [RFC 12/18] net/hinic3: add device initailization Feifei Wang
2025-04-18 9:05 ` [RFC 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-26 21:29 ` Stephen Hemminger
2025-06-26 21:30 ` Stephen Hemminger
2025-06-26 21:32 ` Stephen Hemminger
2025-04-18 9:06 ` [RFC 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-26 21:40 ` Stephen Hemminger
2025-06-26 21:41 ` Stephen Hemminger
2025-04-18 9:06 ` [RFC 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-04-18 9:06 ` [RFC 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-04-18 9:06 ` [RFC 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-04-18 18:25 ` Stephen Hemminger
2025-04-18 18:27 ` Stephen Hemminger
2025-04-18 18:28 ` Stephen Hemminger
2025-04-18 18:30 ` Stephen Hemminger
2025-04-18 9:06 ` [RFC 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-04-18 17:22 ` Stephen Hemminger
2025-04-19 2:52 ` 回复: " wangfeifei (J)
2025-05-29 8:14 ` [PATCH v1 00/18] add hinic3 pmd driver Feifei
2025-05-29 8:15 ` [PATCH v1 01/18] This patch adds some basic files to describe the hinic3 driver Feifei
2025-05-29 8:15 ` [PATCH v1 02/18] net/hinic3: add basic header files Feifei
2025-05-29 8:15 ` [PATCH v1 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei
2025-05-29 8:15 ` [PATCH v1 04/18] net/hinic3: add support for cmdq mechanism Feifei
2025-05-29 8:15 ` [PATCH v1 05/18] net/hinic3: add NIC event module Feifei
2025-05-29 8:15 ` [PATCH v1 06/18] net/hinic3: add eq mechanism function code Feifei
2025-05-29 8:15 ` [PATCH v1 07/18] net/hinic3: add mgmt module " Feifei
2025-05-29 8:15 ` [PATCH v1 08/18] net/hinic3: add module about hardware operation Feifei
2025-05-29 8:15 ` [PATCH v1 09/18] net/hinic3: add a NIC business configuration module Feifei
2025-05-29 8:15 ` [PATCH v1 10/18] net/hinic3: add context and work queue support Feifei
2025-05-29 8:15 ` [PATCH v1 11/18] net/hinic3: add a mailbox communication module Feifei
2025-05-29 8:15 ` [PATCH v1 12/18] net/hinic3: add device initialization Feifei
2025-05-29 8:15 ` [PATCH v1 13/18] net/hinic3: add dev ops Feifei
2025-05-29 8:15 ` [PATCH v1 14/18] net/hinic3: add Rx/Tx functions Feifei
2025-05-29 8:15 ` [PATCH v1 15/18] net/hinic3: add MML and EEPROM access feature Feifei
2025-05-29 8:15 ` [PATCH v1 16/18] net/hinic3: add RSS promiscuous ops Feifei
2025-05-29 8:15 ` [PATCH v1 17/18] net/hinic3: add FDIR flow control module Feifei
2025-05-29 8:15 ` [PATCH v1 18/18] drivers/net: add hinic3 PMD build and doc files Feifei
2025-04-18 18:18 ` [RFC 00/18] add hinic3 PMD driver Stephen Hemminger
2025-04-19 2:44 ` 回复: " wangfeifei (J)
2025-04-18 18:20 ` Stephen Hemminger
2025-04-18 18:32 ` Stephen Hemminger
2025-04-19 3:30 ` 回复: " wangfeifei (J)
2025-06-04 2:52 ` Stephen Hemminger
2025-06-09 16:40 ` Stephen Hemminger
2025-06-25 2:27 ` [V2 00/18] add hinic3 pmd driver Feifei Wang
2025-06-25 2:27 ` [V2 01/18] add some basic files about hinic3 driver Feifei Wang
2025-06-26 15:46 ` Stephen Hemminger
2025-06-26 15:58 ` Stephen Hemminger
2025-06-25 2:27 ` [V2 02/18] net/hinic3: add basic header files Feifei Wang
2025-06-25 2:27 ` [V2 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-06-25 2:28 ` [V2 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-06-25 2:28 ` [V2 05/18] net/hinic3: add NIC event module Feifei Wang
2025-06-25 2:28 ` [V2 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-06-25 2:28 ` [V2 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-06-25 2:28 ` [V2 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-06-25 2:28 ` [V2 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-06-25 2:28 ` [V2 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-06-25 2:28 ` [V2 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-06-25 2:28 ` [V2 12/18] net/hinic3: add device initialization Feifei Wang
2025-06-25 2:28 ` [V2 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-25 2:28 ` [V2 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-26 20:04 ` Stephen Hemminger
2025-06-25 2:28 ` [V2 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-06-25 2:28 ` [V2 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-06-25 2:28 ` [V2 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-06-26 15:59 ` Stephen Hemminger
2025-06-26 19:58 ` Stephen Hemminger
2025-06-25 2:28 ` [V2 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-06-26 15:47 ` [V2 00/18] add hinic3 pmd driver Stephen Hemminger
2025-06-26 21:41 ` Stephen Hemminger
2025-07-08 15:47 ` Stephen Hemminger
2025-06-28 7:25 ` [V3 " Feifei Wang
2025-06-28 7:25 ` [V3 01/18] add some basic files about hinic3 driver Feifei Wang
2025-06-29 17:57 ` Stephen Hemminger
2025-06-28 7:25 ` [V3 02/18] net/hinic3: add basic header files Feifei Wang
2025-06-28 7:25 ` [V3 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-06-28 7:25 ` [V3 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-06-28 7:25 ` [V3 05/18] net/hinic3: add NIC event module Feifei Wang
2025-06-28 7:25 ` [V3 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-06-28 7:25 ` [V3 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-06-28 7:25 ` [V3 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-06-28 7:25 ` [V3 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-06-28 7:25 ` [V3 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-06-28 7:25 ` [V3 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-06-28 7:25 ` [V3 12/18] net/hinic3: add device initialization Feifei Wang
2025-06-28 7:25 ` [V3 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-28 7:25 ` [V3 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-29 18:00 ` Stephen Hemminger
2025-06-28 7:25 ` [V3 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-06-28 7:25 ` [V3 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-06-28 7:25 ` [V3 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-06-28 7:25 ` [V3 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-06-28 15:04 ` Stephen Hemminger
2025-07-01 1:41 ` [V4 00/18] add hinic3 pmd driver Feifei Wang
2025-07-01 1:41 ` [V4 01/18] doc: add some basic files to describe the hinic3 driver Feifei Wang
2025-07-01 1:41 ` [V4 02/18] net/hinic3: add basic header files Feifei Wang
2025-07-01 1:41 ` [V4 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-07-01 1:41 ` [V4 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-07-01 1:41 ` [V4 05/18] net/hinic3: add NIC event module Feifei Wang
2025-07-01 1:41 ` [V4 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-07-01 1:41 ` [V4 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-07-01 1:41 ` [V4 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-07-01 1:42 ` [V4 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-07-01 1:42 ` [V4 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-07-01 1:42 ` [V4 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-07-01 1:42 ` [V4 12/18] net/hinic3: add device initialization Feifei Wang
2025-07-01 1:42 ` [V4 13/18] net/hinic3: add dev ops Feifei Wang
2025-07-01 1:42 ` [V4 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-07-01 1:42 ` [V4 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-07-01 1:42 ` [V4 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-07-01 1:42 ` [V4 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-07-01 1:42 ` [V4 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-07-01 13:53 ` [V4 00/18] add hinic3 pmd driver Stephen Hemminger
2025-07-02 2:09 ` [V5 " Feifei Wang
2025-07-02 2:09 ` [V5 01/18] doc: add some basic files to describe the hinic3 driver Feifei Wang
2025-08-21 1:25 ` fengchengwen
2025-07-02 2:09 ` [V5 02/18] net/hinic3: add basic header files Feifei Wang
2025-08-03 17:19 ` Stephen Hemminger
2025-08-21 1:51 ` fengchengwen
2025-07-02 2:09 ` [V5 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-08-21 2:13 ` fengchengwen
2025-07-02 2:09 ` [V5 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-08-21 3:03 ` fengchengwen
2025-07-02 2:09 ` [V5 05/18] net/hinic3: add NIC event module Feifei Wang
2025-08-21 3:25 ` fengchengwen
2025-07-02 2:09 ` [V5 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-08-21 4:06 ` fengchengwen
2025-07-02 2:09 ` [V5 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-07-02 2:09 ` [V5 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-08-21 6:20 ` fengchengwen
2025-07-02 2:09 ` [V5 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-08-21 6:34 ` fengchengwen
2025-07-02 2:09 ` [V5 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-08-21 6:41 ` fengchengwen
2025-07-02 2:09 ` [V5 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-08-21 6:48 ` fengchengwen
2025-07-02 2:09 ` [V5 12/18] net/hinic3: add device initialization Feifei Wang
2025-08-21 6:58 ` fengchengwen
2025-07-02 2:09 ` [V5 13/18] net/hinic3: add dev ops Feifei Wang
2025-08-03 17:24 ` Stephen Hemminger
2025-08-21 7:43 ` fengchengwen
2025-07-02 2:09 ` [V5 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-08-21 8:05 ` fengchengwen
2025-07-02 2:09 ` [V5 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-08-21 8:13 ` fengchengwen
2025-07-02 2:09 ` [V5 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-08-21 8:22 ` fengchengwen
2025-07-02 2:09 ` [V5 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-08-21 8:38 ` fengchengwen
2025-07-02 2:09 ` [V5 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-08-21 8:44 ` fengchengwen
2025-07-02 14:55 ` [V5 00/18] add hinic3 pmd driver Stephen Hemminger
2025-07-07 3:27 ` 回复: " wangfeifei (J)
2025-07-07 3:32 ` Stephen Hemminger
2025-07-07 7:39 ` 回复: " wangfeifei (J)
2025-08-30 12:39 ` Feifei Wang
2025-08-30 12:39 ` [V5 01/18] doc: add some basic files to describe the hinic3 driver Feifei Wang
2025-08-30 12:39 ` [V5 02/18] net/hinic3: add basic header files Feifei Wang
2025-08-30 12:39 ` [V5 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-08-30 12:39 ` [V5 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-08-30 12:39 ` [V5 05/18] net/hinic3: add NIC event module Feifei Wang
2025-08-30 12:39 ` [V5 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-08-30 12:39 ` [V5 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-08-30 12:39 ` [V5 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-08-30 12:39 ` [V5 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-08-30 12:39 ` [V5 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-08-30 12:39 ` [V5 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-08-30 12:39 ` [V5 12/18] net/hinic3: add device initialization Feifei Wang
2025-08-30 12:39 ` [V5 13/18] net/hinic3: add dev ops Feifei Wang
2025-08-30 12:39 ` [V5 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-08-30 12:39 ` [V5 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-08-30 12:39 ` [V5 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-08-30 12:39 ` [V5 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-08-30 12:39 ` [V5 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-08-30 12:43 ` [V6 00/17] add-hinic3-PMD-driver Feifei Wang
2025-08-30 12:43 ` [V6 01/17] doc: add hinic3 driver Feifei Wang
2025-08-30 12:43 ` [V6 02/17] net/hinic3: add basic header files Feifei Wang
2025-08-30 12:43 ` [V6 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-08-30 12:43 ` [V6 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-08-30 12:43 ` [V6 05/17] net/hinic3: add NIC event module Feifei Wang
2025-08-30 12:43 ` [V6 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-08-30 12:43 ` [V6 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-08-30 12:43 ` [V6 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-08-30 12:43 ` [V6 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-08-30 12:43 ` [V6 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-08-30 12:43 ` [V6 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-08-30 12:43 ` [V6 12/17] net/hinic3: add device initialization Feifei Wang
2025-08-30 12:43 ` [V6 13/17] net/hinic3: add dev ops Feifei Wang
2025-08-30 12:43 ` [V6 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-08-30 12:43 ` [V6 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-08-30 12:43 ` [V6 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-08-30 12:43 ` [V6 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-08-30 15:38 ` [V6 00/17] add-hinic3-PMD-driver Stephen Hemminger
2025-08-30 15:42 ` Stephen Hemminger
2025-09-01 11:10 ` [V7 " Feifei Wang
2025-09-01 11:10 ` [V7 01/17] doc: add hinic3 driver Feifei Wang
2025-09-01 11:10 ` [V7 02/17] net/hinic3: add basic header files Feifei Wang
2025-09-01 11:10 ` [V7 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-01 11:10 ` [V7 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-01 11:10 ` [V7 05/17] net/hinic3: add NIC event module Feifei Wang
2025-09-01 11:10 ` [V7 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-09-01 11:10 ` [V7 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-09-01 11:10 ` [V7 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-09-01 11:10 ` [V7 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-01 11:10 ` [V7 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-09-01 11:10 ` [V7 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-01 11:10 ` [V7 12/17] net/hinic3: add device initialization Feifei Wang
2025-09-01 11:10 ` [V7 13/17] net/hinic3: add dev ops Feifei Wang
2025-09-01 11:10 ` [V7 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-01 11:10 ` [V7 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-01 11:10 ` [V7 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-01 11:10 ` [V7 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-02 4:01 ` [V7 00/17] add-hinic3-PMD-driver Feifei Wang
2025-09-02 4:01 ` [V7 01/17] doc: add hinic3 driver Feifei Wang
2025-09-02 4:01 ` [V7 02/17] net/hinic3: add basic header files Feifei Wang
2025-09-02 4:01 ` [V7 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-02 4:01 ` [V7 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-02 4:01 ` [V7 05/17] net/hinic3: add NIC event module Feifei Wang
2025-09-02 4:01 ` [V7 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-09-02 4:01 ` [V7 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-09-02 4:01 ` [V7 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-09-02 4:01 ` [V7 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-02 4:01 ` [V7 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-09-02 4:01 ` [V7 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-02 4:01 ` [V7 12/17] net/hinic3: add device initialization Feifei Wang
2025-09-02 4:01 ` [V7 13/17] net/hinic3: add dev ops Feifei Wang
2025-09-02 4:01 ` [V7 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-02 4:01 ` [V7 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-02 4:01 ` [V7 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-02 4:01 ` [V7 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-06 4:12 ` [V7 00/17] add-hinic3-PMD-driver Stephen Hemminger
2025-09-08 1:42 ` 回复: " wangfeifei (J)
2025-09-08 13:52 ` [V8 " Feifei Wang
2025-09-08 13:52 ` [V8 01/17] doc: add hinic3 driver Feifei Wang
2025-09-08 13:52 ` [V8 02/17] net/hinic3: add basic header files Feifei Wang
2025-09-08 13:52 ` [V8 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-08 13:52 ` [V8 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-08 13:52 ` [V8 05/17] net/hinic3: add NIC event module Feifei Wang
2025-09-08 13:52 ` [V8 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-09-08 13:52 ` [V8 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-09-08 13:52 ` [V8 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-09-08 13:52 ` [V8 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-08 13:52 ` [V8 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-09-08 13:52 ` [V8 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-08 13:52 ` [V8 12/17] net/hinic3: add device initialization Feifei Wang
2025-09-08 13:52 ` [V8 13/17] net/hinic3: add dev ops Feifei Wang
2025-09-08 13:52 ` [V8 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-08 13:52 ` [V8 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-08 13:52 ` [V8 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-08 13:52 ` [V8 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-08 23:12 ` [V8 00/17] add-hinic3-PMD-driver Stephen Hemminger
2025-09-09 7:31 ` [V9 " Feifei Wang
2025-09-09 7:31 ` [V9 01/17] doc: add hinic3 driver Feifei Wang
2025-09-09 7:31 ` [V9 02/17] net/hinic3: add basic header files Feifei Wang
2025-09-09 7:31 ` [V9 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-09 7:31 ` [V9 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-09 7:31 ` [V9 05/17] net/hinic3: add NIC event module Feifei Wang
2025-09-09 7:31 ` [V9 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-09-09 7:31 ` [V9 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-09-09 7:31 ` [V9 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-09-09 7:31 ` [V9 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-09 7:31 ` [V9 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-09-09 7:31 ` [V9 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-09 7:31 ` [V9 12/17] net/hinic3: add device initialization Feifei Wang
2025-09-09 7:31 ` [V9 13/17] net/hinic3: add dev ops Feifei Wang
2025-09-09 7:31 ` [V9 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-09 7:31 ` [V9 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-09 7:31 ` [V9 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-09 7:31 ` [V9 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-09 22:42 ` [V9 00/17] add-hinic3-PMD-driver Stephen Hemminger
2025-09-10 12:46 ` 回复: " wangfeifei (J)
2025-09-10 13:44 ` [V10 " Feifei Wang
2025-09-10 13:44 ` [V10 01/17] doc: add hinic3 driver Feifei Wang
2025-09-10 13:44 ` [V10 02/17] net/hinic3: add basic header files Feifei Wang
2025-09-10 13:44 ` [V10 03/17] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-10 13:44 ` [V10 04/17] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-10 13:44 ` [V10 05/17] net/hinic3: add NIC event module Feifei Wang
2025-09-10 13:44 ` [V10 06/17] net/hinic3: add eq mechanism Feifei Wang
2025-09-10 13:44 ` [V10 07/17] net/hinic3: add mgmt module function code Feifei Wang
2025-09-10 13:44 ` [V10 08/17] net/hinic3: add module about hardware operation Feifei Wang
2025-09-10 13:44 ` [V10 09/17] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-10 13:44 ` [V10 10/17] net/hinic3: add context and work queue support Feifei Wang
2025-09-10 13:44 ` [V10 11/17] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-10 13:44 ` [V10 12/17] net/hinic3: add device initialization Feifei Wang
2025-09-10 13:44 ` [V10 13/17] net/hinic3: add dev ops Feifei Wang
2025-09-12 16:25 ` Stephen Hemminger
2025-09-10 13:44 ` [V10 14/17] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-10 13:44 ` [V10 15/17] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-10 13:44 ` [V10 16/17] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-10 13:44 ` [V10 17/17] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-17 10:15 ` [V11 00/18] add-hinic3-PMD-driver Feifei Wang
2025-09-17 10:15 ` [V11 01/18] doc: add hinic3 driver Feifei Wang
2025-09-17 10:15 ` [V11 02/18] net/hinic3: add basic header files Feifei Wang
2025-09-18 16:06 ` Stephen Hemminger
2025-09-18 16:13 ` Stephen Hemminger
2025-09-17 10:15 ` [V11 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-17 10:15 ` [V11 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-17 10:15 ` [V11 05/18] net/hinic3: add NIC event module Feifei Wang
2025-09-17 10:15 ` [V11 06/18] net/hinic3: add eq mechanism Feifei Wang
2025-09-17 10:15 ` [V11 07/18] net/hinic3: add mgmt module function code Feifei Wang
2025-09-17 10:15 ` [V11 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-09-17 10:15 ` [V11 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-17 10:15 ` [V11 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-09-17 10:15 ` [V11 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-17 10:15 ` [V11 12/18] net/hinic3: add futions for initialization Feifei Wang
2025-09-17 10:15 ` [V11 13/18] net/hinic3: add dev ops Feifei Wang
2025-09-19 7:57 ` 回复: " wangfeifei (J)
2025-09-17 10:15 ` [V11 14/18] net/hinic3: add device initialization Feifei Wang
2025-09-17 10:15 ` [V11 15/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-17 10:15 ` [V11 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-17 10:15 ` [V11 17/18] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-17 10:15 ` [V11 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-19 11:24 ` [V12 00/18] add-hinic3-PMD-driver Feifei Wang
2025-09-19 11:24 ` [V12 01/18] doc: add hinic3 driver Feifei Wang
2025-09-19 11:24 ` [V12 02/18] net/hinic3: add basic header files Feifei Wang
2025-09-19 11:24 ` [V12 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-19 11:24 ` [V12 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-19 11:24 ` [V12 05/18] net/hinic3: add NIC event module Feifei Wang
2025-09-19 11:24 ` [V12 06/18] net/hinic3: add eq mechanism Feifei Wang
2025-09-19 11:24 ` [V12 07/18] net/hinic3: add mgmt module function code Feifei Wang
2025-09-19 11:24 ` [V12 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-09-19 11:24 ` [V12 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-19 11:24 ` [V12 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-09-19 11:24 ` [V12 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-19 11:24 ` [V12 12/18] net/hinic3: add futions for initialization Feifei Wang
2025-09-19 11:24 ` [V12 13/18] net/hinic3: add dev ops Feifei Wang
2025-09-19 11:24 ` [V12 14/18] net/hinic3: add device initialization Feifei Wang
2025-09-19 11:24 ` [V12 15/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-19 11:24 ` [V12 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-19 11:24 ` [V12 17/18] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-19 11:24 ` [V12 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-23 15:57 ` [V12 00/18] add-hinic3-PMD-driver Stephen Hemminger
2025-09-24 6:27 ` wangfeifei (J) [this message]
2025-09-24 7:51 ` [V13 " Feifei Wang
2025-09-24 7:51 ` [V13 01/18] doc: add hinic3 driver Feifei Wang
2025-09-24 7:51 ` [V13 02/18] net/hinic3: add basic header files Feifei Wang
2025-09-24 7:51 ` [V13 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-24 7:51 ` [V13 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-24 7:51 ` [V13 05/18] net/hinic3: add NIC event module Feifei Wang
2025-09-24 7:51 ` [V13 06/18] net/hinic3: add eq mechanism Feifei Wang
2025-09-24 7:51 ` [V13 07/18] net/hinic3: add mgmt module function code Feifei Wang
2025-09-24 7:51 ` [V13 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-09-24 7:51 ` [V13 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-24 7:51 ` [V13 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-09-24 7:51 ` [V13 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-24 7:51 ` [V13 12/18] net/hinic3: add futions for initialization Feifei Wang
2025-09-24 7:52 ` [V13 13/18] net/hinic3: add dev ops Feifei Wang
2025-09-24 7:52 ` [V13 14/18] net/hinic3: add device initialization Feifei Wang
2025-09-24 7:52 ` [V13 15/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-24 7:52 ` [V13 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-24 7:52 ` [V13 17/18] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-24 7:52 ` [V13 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-26 2:47 ` [V14 00/18] add-hinic3-PMD-driver Feifei Wang
2025-09-26 2:47 ` [V14 01/18] doc: add hinic3 driver Feifei Wang
2025-09-26 2:47 ` [V14 02/18] net/hinic3: add basic header files Feifei Wang
2025-09-26 2:47 ` [V14 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-09-26 2:47 ` [V14 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-09-26 2:47 ` [V14 05/18] net/hinic3: add NIC event module Feifei Wang
2025-09-26 2:47 ` [V14 06/18] net/hinic3: add eq mechanism Feifei Wang
2025-09-26 2:47 ` [V14 07/18] net/hinic3: add mgmt module function code Feifei Wang
2025-09-26 2:47 ` [V14 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-09-26 2:47 ` [V14 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-09-26 2:47 ` [V14 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-09-26 2:47 ` [V14 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-09-26 2:47 ` [V14 12/18] net/hinic3: add futions for initialization Feifei Wang
2025-09-26 2:47 ` [V14 13/18] net/hinic3: add dev ops Feifei Wang
2025-09-26 2:47 ` [V14 14/18] net/hinic3: add device initialization Feifei Wang
2025-09-26 2:47 ` [V14 15/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-09-26 2:47 ` [V14 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-09-26 2:47 ` [V14 17/18] net/hinic3: add flow control and FDIR module Feifei Wang
2025-09-26 2:47 ` [V14 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-09-26 4:46 ` [V14 00/18] add-hinic3-PMD-driver 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=a3d1b3d0b26d4c868ef5b58e427addd4@huawei.com \
--to=wangfeifei40@huawei.com \
--cc=dev@dpdk.org \
--cc=gongfan1@huawei.com \
--cc=stephen@networkplumber.org \
--cc=wff_light@vip.163.com \
/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 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).