Re: [PATCH v9 05/17] examples/vhost: fix free function mismatch

2024-10-08 Thread Chenbo Xia
> On Oct 9, 2024, at 00:47, Stephen Hemminger > wrote: > > External email: Use caution opening links or attachments > > > The pointer bdev is allocated with rte_zmalloc() and then > incorrectly freed with free() which will lead pool corruption. > > Bugzilla ID: 1553 > Fixes: c19beb3f38cd ("

[PATCH v9 05/17] examples/vhost: fix free function mismatch

2024-10-08 Thread Stephen Hemminger
The pointer bdev is allocated with rte_zmalloc() and then incorrectly freed with free() which will lead pool corruption. Bugzilla ID: 1553 Fixes: c19beb3f38cd ("examples/vhost_blk: introduce vhost storage sample") Cc: sta...@dpdk.org Signed-off-by: Stephen Hemminger Acked-by: Chengwen Feng ---