Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread Lin, Xueqin
; dev@dpdk.org; Lin, Xueqin > > Subject: Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization > > On Tue, Oct 19, 2021 at 4:50 PM Peng, ZhihongX > wrote: > > The v12 version has been submitted, and patch 3 and 4 has been acked. > > > > V10 information: > >

Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread Peng, ZhihongX
> -Original Message- > From: Mcnamara, John > Sent: Tuesday, October 19, 2021 11:18 PM > To: Peng, ZhihongX ; > david.march...@redhat.com; Burakov, Anatoly > ; Ananyev, Konstantin > ; step...@networkplumber.org; > Dumitrescu, Cristian ; Richardson, Bruce > > Cc: dev@dpdk.org; Lin, Xueqin

Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread David Marchand
On Tue, Oct 19, 2021 at 4:50 PM Peng, ZhihongX wrote: > The v12 version has been submitted, and patch 3 and 4 has been acked. > > V10 information: > > I have compiled passed on the x86/arm/ppc platforms, directory targets as > below : > build-arm64-bluefield build-arm64-host-clang build-clang-

Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread Mcnamara, John
> > diff --git a/doc/guides/prog_guide/asan.rst > > b/doc/guides/prog_guide/asan.rst new file mode 100644 index > > 00..969676ebe8 > > --- /dev/null > > +++ b/doc/guides/prog_guide/asan.rst > > @@ -0,0 +1,40 @@ > > +.. SPDX-License-Identifier: BSD-3-Clause > > + Copyright(c) 2021 Intel

Re: [dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread Peng, ZhihongX
Hi, David The v12 version has been submitted, and patch 3 and 4 has been acked. V10 information: I have compiled passed on the x86/arm/ppc platforms, directory targets as below : build-arm64-bluefield build-arm64-host-clang build-clang-shared build-gcc-shared build-ppc64le-power8 build-ar

[dpdk-dev] [PATCH v12 1/4] Enable ASan Address Sanitization

2021-10-19 Thread zhihongx . peng
From: Zhihong Peng `AddressSanitizer `_ (ASan) is a widely-used debugging tool to detect memory access errors. It helps detect issues like use-after-free, various kinds of buffer overruns in C/C++ programs, and other similar errors, as w