nuttx/drivers/wireless/ieee802154/mrf24j40
Gregory Nutt 3cad9f498f drivers/mkrd.c
drivers/net/telnet.c
 drivers/wireless/bluetooth/bt_uart_bcm4343x.c
 drivers/wireless/ieee802154/mrf24j40/mrf24j40.c

Kernel memory was allocated using kmm_malloc() or kmm_zalloc() but freed with with the user-space allocator free().  In the FLAT build, this is bad style, but not harmful because there is only a single, heap and malloc() and kmm_malloc() map to the same function.

But that is not true in the case of the PROTECTED or KERNEL builds.  In those cases, there are separate heaps.  kmm_malloc() will allocate from the kernel heap.  free() will attempt to free the kernel memory from the user heap and will cause an assertion (or other obscure failure if assertions are disabled).
2020-08-04 13:00:53 -05:00
..
Kconfig
Make.defs build: Move INCDIROPT to common place 2020-05-18 15:02:55 -06:00
mrf24j40_getset.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
mrf24j40_getset.h Ensure all source code end with one and only one newline 2020-02-08 07:25:56 -06:00
mrf24j40_interrupt.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
mrf24j40_radif.c Replace #include <semaphore.h> to #include <nuttx/semaphore.h> 2020-02-01 08:27:30 -06:00
mrf24j40_radif.h Ensure all source code end with one and only one newline 2020-02-08 07:25:56 -06:00
mrf24j40_reg.h drivers/mrf24j40: Fixes issues with sleeping for beacon enabled networking 2017-07-13 03:18:22 -04:00
mrf24j40_regops.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
mrf24j40_regops.h Ensure all source code end with one and only one newline 2020-02-08 07:25:56 -06:00
mrf24j40.c drivers/mkrd.c 2020-08-04 13:00:53 -05:00
mrf24j40.h Replace #include <semaphore.h> to #include <nuttx/semaphore.h> 2020-02-01 08:27:30 -06:00