Re: [PATCH v3 05/18] examples/vhost: fix free function mismatch

2024-09-30 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/9/29 23:34, Stephen Hemminger wrote: > 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") > C

[PATCH v3 05/18] examples/vhost: fix free function mismatch

2024-09-29 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: jin...@intel.com Cc: sta...@dpdk.org Signed-off-by: Stephen Hemminger --- exa