nuttx/drivers/net
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
..
dm90x0.c Fix typos in comments 2020-03-03 09:11:57 -06:00
enc28j60.c Rename clock_systime[r|spec] to clock_systime_[ticks|timespec] 2020-05-10 14:35:50 -06:00
enc28j60.h Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
encx24j600.c Rename clock_systime[r|spec] to clock_systime_[ticks|timespec] 2020-05-10 14:35:50 -06:00
encx24j600.h Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
ftmac100.c Fix typos in comments 2020-03-03 09:11:57 -06:00
Kconfig Introduce CONFIG_DEFAULT_TASK_STACKSIZE 2020-03-26 22:30:13 -05:00
lan91c111.c Fix typos in comments 2020-03-03 09:11:57 -06:00
lan91c111.h Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
loopback.c Fix typos in comments 2020-03-03 09:11:57 -06:00
Make.defs Remove NETDEV_LOOPBACK option, NET_LOOPBACK is enough 2020-02-02 08:25:06 -06:00
phy_notify.c Check return from nxsem_wait_initialize() 2020-03-31 20:12:21 +01:00
rpmsgdrv.c Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
skeleton.c Fix typos in comments 2020-03-03 09:11:57 -06:00
slip.c sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
telnet.c drivers/mkrd.c 2020-08-04 13:00:53 -05:00
tun.c Char drivers should return -ENOTTY if CMD is not recognized 2020-06-06 14:51:02 -03:00