nuttx/net/netdev
2018-09-11 08:49:39 -06:00
..
Kconfig sched/wqueue: Add an option to work queue notifier so that the notification can occur on different work queues. 2018-09-11 07:22:23 -06:00
Make.defs net/netdev: Add signal notification for the case where the network goes down. 2018-09-09 10:39:25 -06:00
netdev_carrier.c
netdev_count.c
netdev_default.c netdev_findby_ipv[4|6]addr return netdev_default() as last resort but don't return loopback device if another network device is in the UP state. 2018-08-26 14:40:47 -06:00
netdev_findbyaddr.c netdev_findby_ipv[4|6]addr return netdev_default() as last resort but don't return loopback device if another network device is in the UP state. 2018-08-26 14:40:47 -06:00
netdev_findbyindex.c Fix some errors found in build testing. 2018-06-25 17:06:29 -06:00
netdev_findbyname.c
netdev_foreach.c
netdev_ifconf.c
netdev_indextoname.c
netdev_ioctl.c net/netdev: Add signal notification for the case where the network goes down. 2018-09-09 10:39:25 -06:00
netdev_lladdrsize.c
netdev_nametoindex.c
netdev_register.c net/netdev/netdev_register.c: Eliminate a newly introduced warning. 2018-08-14 13:54:10 -06:00
netdev_txnotify.c
netdev_unregister.c
netdev_verify.c
netdev.h Signals were not a good choice of IPC to implement the poll function for several reasons: In order to handle the asynchrnous poll-related event, a substantial amount of state information is needed. Signals are only capable of passing minimal amounts of data. There are also complexities with performing kernel space signal handlers in kernel space code that is better to avoid. So, instead of signals, the equivalent logic was converted to run via a callback that executes on the high-priority work queue. 2018-09-09 15:01:44 -06:00
netdown_notifier.c mm/iob: IOB free notifier should accept the work queue ID as a paramter. The notification may need to run on either the high- or low- priority work queue. sched/work: Change the default priority of the low-priority work queue to 100. 2018-09-11 08:49:39 -06:00