Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-29 Thread Peng, ZhihongX
> -Original Message- > From: Burakov, Anatoly > Sent: Monday, September 27, 2021 8:03 PM > To: Peng, ZhihongX ; Ananyev, Konstantin > ; step...@networkplumber.org > Cc: dev@dpdk.org; Lin, Xueqin > Subject: Re: [PATCH v3] Enable AddressSanitizer feature on DPDK > > On 18-Sep-21 8:41 AM, z

Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-27 Thread Burakov, Anatoly
On 18-Sep-21 8:41 AM, zhihongx.p...@intel.com wrote: From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happe

Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-22 Thread Peng, ZhihongX
> -Original Message- > From: David Marchand > Sent: Monday, September 20, 2021 6:04 PM > To: Peng, ZhihongX > Cc: Burakov, Anatoly ; Ananyev, Konstantin > ; Stephen Hemminger > ; dev ; Lin, Xueqin > > Subject: Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer

Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-20 Thread David Marchand
On Sat, Sep 18, 2021 at 9:51 AM wrote: > > From: Zhihong Peng - The title is too vague. I am not sure what the best title is, but my current idea is: mem: instrument allocator with ASan - This is a nice feature that must be announced in the release notes. - How should we spell it? Asan ? ASA

[dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-18 Thread zhihongx . peng
From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happens, large improve debug efficiency. By referring to it