Re: [dpdk-dev] [PATCH] net/hns3: fix mailbox communication with HW

2021-10-29 Thread Ferruh Yigit
On 10/28/2021 12:52 PM, Min Hu (Connor) wrote: Mailbox is the communication mechanism between SW and HW. There exist two approaches for SW to recongnize mailbox message from HW. One way is using match_id, the other is to compare the message code. The two approaches are independent and used in dif

Re: [dpdk-dev] [PATCH] net/hns3: fix mailbox communication with HW

2021-10-29 Thread Thomas Monjalon
29/10/2021 05:25, Min Hu (Connor): > Hi, Thomos, Ferruh, > As this patch is to fix a critical bug for hns3 PMD, we hope this patch > could be merged into 21.11. No reason to not take a fix. > Please check it out. Thanks. You sent it yesterday, no need to ping on it. > 在 2021/10/28

Re: [dpdk-dev] [PATCH] net/hns3: fix mailbox communication with HW

2021-10-28 Thread Min Hu (Connor)
Hi, Thomos, Ferruh, As this patch is to fix a critical bug for hns3 PMD, we hope this patch could be merged into 21.11. Please check it out. Thanks. 在 2021/10/28 19:52, Min Hu (Connor) 写道: Mailbox is the communication mechanism between SW and HW. There exist two approaches for SW to

[dpdk-dev] [PATCH] net/hns3: fix mailbox communication with HW

2021-10-28 Thread Min Hu (Connor)
Mailbox is the communication mechanism between SW and HW. There exist two approaches for SW to recongnize mailbox message from HW. One way is using match_id, the other is to compare the message code. The two approaches are independent and used in different scenarios. But for the second approache,