Re: [PATCH v9 00/15] fix insecure use of memset bugs

2025-06-11 Thread Thomas Monjalon
> Stephen Hemminger (15): > eal: introduce new secure memory zero > app/test: remove unused variable > eal: add new secure free function > app/test: use unit test runner for malloc tests > app/test: add test for rte_free_sensitive > common/cnxk: remove unused variable > crypto/qat: fo

[PATCH v9 00/15] fix insecure use of memset bugs

2025-02-20 Thread Stephen Hemminger
There is an issue where calls to bzero (memset(), etc) can be eliminated due to an optimizing compiler eliminating the call to bzero() (or memset(), etc) because the arguments to the call are not subsequently used by the function. The compiler can interpret this as "no side effects", and eliminate