diff options
Diffstat (limited to 'include/linux/smpboot.h')
-rw-r--r-- | include/linux/smpboot.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/smpboot.h b/include/linux/smpboot.h index e6109a6cd8f6..12910cf19869 100644 --- a/include/linux/smpboot.h +++ b/include/linux/smpboot.h | |||
@@ -24,9 +24,6 @@ struct smpboot_thread_data; | |||
24 | * parked (cpu offline) | 24 | * parked (cpu offline) |
25 | * @unpark: Optional unpark function, called when the thread is | 25 | * @unpark: Optional unpark function, called when the thread is |
26 | * unparked (cpu online) | 26 | * unparked (cpu online) |
27 | * @pre_unpark: Optional unpark function, called before the thread is | ||
28 | * unparked (cpu online). This is not guaranteed to be | ||
29 | * called on the target cpu of the thread. Careful! | ||
30 | * @cpumask: Internal state. To update which threads are unparked, | 27 | * @cpumask: Internal state. To update which threads are unparked, |
31 | * call smpboot_update_cpumask_percpu_thread(). | 28 | * call smpboot_update_cpumask_percpu_thread(). |
32 | * @selfparking: Thread is not parked by the park function. | 29 | * @selfparking: Thread is not parked by the park function. |
@@ -42,7 +39,6 @@ struct smp_hotplug_thread { | |||
42 | void (*cleanup)(unsigned int cpu, bool online); | 39 | void (*cleanup)(unsigned int cpu, bool online); |
43 | void (*park)(unsigned int cpu); | 40 | void (*park)(unsigned int cpu); |
44 | void (*unpark)(unsigned int cpu); | 41 | void (*unpark)(unsigned int cpu); |
45 | void (*pre_unpark)(unsigned int cpu); | ||
46 | cpumask_var_t cpumask; | 42 | cpumask_var_t cpumask; |
47 | bool selfparking; | 43 | bool selfparking; |
48 | const char *thread_comm; | 44 | const char *thread_comm; |