<div dir="ltr">Hi,<br>I am trying to run a DPDK(20.11) application using memory sanitizer. I have taken the patch from upstream branch:  <a href="https://github.com/DPDK/dpdk/commit/6cc51b1293ceac4a77d4bf7ac91a8bbd59e1f78c">https://github.com/DPDK/dpdk/commit/6cc51b1293ceac4a77d4bf7ac91a8bbd59e1f78c</a><br>and made a build with -fsanitize=address. The gcc version is: gcc 6.3.0 . But the application doesn't abort when an invalid memory access is made.  Starting the application with below:<br><br>./dpdk-app -l 2-4 -a 0000:00:05.0 -a 0000:00:06.0 -a 0000:00:07.0 -a 0000:00:08.0 --socket-mem=3072<br><br>an invalid memory access from an application does not abort.<br><br>Ex:  From the application doing below doesn't abort:<br><br>char *p = rte_zmalloc(NULL, 9, 0);<br><br>rte_free(p);<br><br>*p = 'a';<br><br>Am I missing something here.?<br><br>is DPDK ASAN supposed to be used only in 21.11 release onwards.? Really appreciate your help on this as we are trying debug a possible memory corruption with DPDK application and thought DPDK memory sanitizer support will be of great help<br><br>Thanks for the help,<br>Bhargav<br></div>