Changeset 1a5fe4f in mainline for kernel/generic/src/main
- Timestamp:
- 2018-11-09T18:09:55Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1892d2c
- Parents:
- 3875f106 (diff), ef4218f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jakub Jermář <jakub@…> (2018-11-09 18:09:55)
- git-committer:
- GitHub <noreply@…> (2018-11-09 18:09:55)
- Location:
- kernel/generic/src/main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r3875f106 r1a5fe4f 79 79 #include <synch/waitq.h> 80 80 #include <synch/spinlock.h> 81 #include <synch/workqueue.h>82 #include <synch/rcu.h>83 81 84 82 #define ALIVE_CHARS 4 … … 109 107 110 108 interrupts_disable(); 111 112 /* Start processing RCU callbacks. RCU is fully functional afterwards. */113 rcu_kinit_init();114 115 /*116 * Start processing work queue items. Some may have been queued during boot.117 */118 workq_global_worker_init();119 109 120 110 #ifdef CONFIG_SMP -
kernel/generic/src/main/main.c
r3875f106 r1a5fe4f 78 78 #include <synch/waitq.h> 79 79 #include <synch/futex.h> 80 #include <synch/workqueue.h>81 #include <smp/smp_call.h>82 80 #include <arch/arch.h> 83 81 #include <arch.h> … … 274 272 ARCH_OP(post_cpu_init); 275 273 276 smp_call_init();277 workq_global_init();278 274 clock_counter_init(); 279 275 timeout_init(); … … 381 377 void main_ap_separated_stack(void) 382 378 { 383 smp_call_init();384 385 379 /* 386 380 * Configure timeouts for this cpu.
Note:
See TracChangeset
for help on using the changeset viewer.
