On Mon, 30 Dec 2024 14:54:02 +0800 Jie Hai <[email protected]> wrote:
> From: Jie Hai <[email protected]> > To: <[email protected]>, <[email protected]>, <[email protected]>, > <[email protected]>, <[email protected]> > CC: <[email protected]>, <[email protected]>, <[email protected]>, > <[email protected]> > Subject: [PATCH 0/3] net/hns3: bugfix on hns3 > Date: Mon, 30 Dec 2024 14:54:02 +0800 > X-Mailer: git-send-email 2.22.0 > > The patchset fixes some codes. > > Dengdui Huang (1): > net/hns3: fix simple Tx path incorrect free the mbuf > > Jie Hai (2): > net/hns3: remove pvid info dump for VF > net/hns3: rename RAS module > > drivers/net/hns3/hns3_dump.c | 4 ++++ > drivers/net/hns3/hns3_intr.c | 4 ++-- > drivers/net/hns3/hns3_intr.h | 2 +- > drivers/net/hns3/hns3_rxtx.c | 2 +- > 4 files changed, 8 insertions(+), 4 deletions(-) While reviewing these, I noticed that hns3 driver is open coding its own version of rte_pktmbuf_alloc(). That was a mistake, if a future changes to rte_mbuf.c change the allocation logic, the driver will break.

