aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/mem.h
diff options
context:
space:
mode:
authorBenoît Ganne <bganne@cisco.com>2020-04-22 09:02:48 +0200
committerDave Barach <openvpp@barachs.net>2020-04-22 13:03:08 +0000
commit08d01376de5abf2e93c562ee5e24cf62ce1be3ff (patch)
tree5ff125fbf2d79ef432f9f56041fb76e4c00a6fcb /src/vppinfra/mem.h
parent74ee18b0b33aad974705ae16739a86c48f3b966b (diff)
misc: asan: do not poison memory after munmap()
It is a bad idea to poison memory after munmap because the address space can be reused (eg. for global data of dlopen()ed object) and ASan model allows access by default. Moreover, access to a stale address space will fault. Type: fix Change-Id: I356de422f255447d9d50a3a71fb0c2eaa790d731 Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vppinfra/mem.h')
-rw-r--r--src/vppinfra/mem.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vppinfra/mem.h b/src/vppinfra/mem.h
index f254601043c..06694ccadeb 100644
--- a/src/vppinfra/mem.h
+++ b/src/vppinfra/mem.h
@@ -338,7 +338,6 @@ always_inline void
clib_mem_vm_free (void *addr, uword size)
{
munmap (addr, size);
- CLIB_MEM_POISON (addr, size);
}
always_inline void *