nuttx/drivers/wireless
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
..
bluetooth drivers/mkrd.c 2020-08-04 13:00:53 -05:00
ieee80211 build: Don't need use $(DELIM) in include statement 2020-05-24 08:24:13 -06:00
ieee802154 drivers/mkrd.c 2020-08-04 13:00:53 -05:00
lpwan build: Don't need use $(DELIM) in include statement 2020-05-24 08:24:13 -06:00
spirit build: Don't need use $(DELIM) in include statement 2020-05-24 08:24:13 -06:00
cc1101.c Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
gs2200m.c drivers: wireless: Fix null pointer dereference in gs2200m.c 2020-07-28 23:02:20 -05:00
ISM1_868MHzGFSK100kbps.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
ISM2_433MHzMSK500kbps.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
ISM2_905MHzGFSK250kbps.c drivers/wireless: Run all wireless drivers through tools/nxstyle, correcting as many complaints as possible. 2019-12-05 11:49:12 -06:00
Kconfig drivers: wireless: Add 'select SCHED_LPWORK' to WL_GS2200M 2020-07-19 21:11:46 -05:00
Make.defs build: Don't need use $(DELIM) in include statement 2020-05-24 08:24:13 -06:00
nrf24l01.c sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
nrf24l01.h