Re: [dpdk-dev] [PATCH v2 5/9] net/hns3: extract a common file

2021-11-05 Thread Ferruh Yigit
On 11/5/2021 2:46 AM, Min Hu (Connor) wrote: @@ -1047,28 +1031,20 @@ hns3_test_and_clear_bit(unsigned int nr, volatile uint64_t *addr) return __atomic_fetch_and(addr, ~mask, __ATOMIC_RELAXED) & mask; } +uint32_t hns3_get_speed_capa(struct hns3_hw *hw); + This looks git rebase err

[dpdk-dev] [PATCH v2 5/9] net/hns3: extract a common file

2021-11-04 Thread Min Hu (Connor)
From: Huisong Li This patch extracts a common file to store the common code for PF and VF driver. Signed-off-by: Huisong Li Signed-off-by: Min Hu (Connor) --- drivers/net/hns3/hns3_cmd.c | 2 +- drivers/net/hns3/hns3_common.c| 427 + drivers/net/hns3/hn