hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/include/linux/stop_machine.h
....@@ -24,7 +24,6 @@
2424 struct cpu_stop_work {
2525 struct list_head list; /* cpu_stopper->works */
2626 cpu_stop_fn_t fn;
27
- unsigned long caller;
2827 void *arg;
2928 struct cpu_stop_done *done;
3029 };
....@@ -50,8 +49,6 @@
5049 struct cpu_stop_work *work_buf,
5150 struct cpu_stop_done *done);
5251 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);
5552
5653 #else /* CONFIG_SMP */
5754
....@@ -96,8 +93,6 @@
9693
9794 return false;
9895 }
99
-
100
-static inline void print_stop_info(const char *log_lvl, struct task_struct *task) { }
10196
10297 #endif /* CONFIG_SMP */
10398