| .. | .. |
|---|
| 24 | 24 | struct cpu_stop_work { |
|---|
| 25 | 25 | struct list_head list; /* cpu_stopper->works */ |
|---|
| 26 | 26 | cpu_stop_fn_t fn; |
|---|
| 27 | | - unsigned long caller; |
|---|
| 28 | 27 | void *arg; |
|---|
| 29 | 28 | struct cpu_stop_done *done; |
|---|
| 30 | 29 | }; |
|---|
| .. | .. |
|---|
| 50 | 49 | struct cpu_stop_work *work_buf, |
|---|
| 51 | 50 | struct cpu_stop_done *done); |
|---|
| 52 | 51 | void cpu_stop_work_wait(struct cpu_stop_work *work_buf); |
|---|
| 53 | | - |
|---|
| 54 | | -extern void print_stop_info(const char *log_lvl, struct task_struct *task); |
|---|
| 55 | 52 | |
|---|
| 56 | 53 | #else /* CONFIG_SMP */ |
|---|
| 57 | 54 | |
|---|
| .. | .. |
|---|
| 96 | 93 | |
|---|
| 97 | 94 | return false; |
|---|
| 98 | 95 | } |
|---|
| 99 | | - |
|---|
| 100 | | -static inline void print_stop_info(const char *log_lvl, struct task_struct *task) { } |
|---|
| 101 | 96 | |
|---|
| 102 | 97 | #endif /* CONFIG_SMP */ |
|---|
| 103 | 98 | |
|---|