|
@@ -122,26 +122,46 @@ enum {
|
|
{ .notifier_call = fn, .priority = pri }; \
|
|
{ .notifier_call = fn, .priority = pri }; \
|
|
register_cpu_notifier(&fn##_nb); \
|
|
register_cpu_notifier(&fn##_nb); \
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+#define __cpu_notifier(fn, pri) { \
|
|
|
|
+ static struct notifier_block fn##_nb = \
|
|
|
|
+ { .notifier_call = fn, .priority = pri }; \
|
|
|
|
+ __register_cpu_notifier(&fn##_nb); \
|
|
|
|
+}
|
|
#else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
|
|
#else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
|
|
#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
|
|
+#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
#endif /* #else #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
|
|
#endif /* #else #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
|
|
|
|
+
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
extern int register_cpu_notifier(struct notifier_block *nb);
|
|
extern int register_cpu_notifier(struct notifier_block *nb);
|
|
|
|
+extern int __register_cpu_notifier(struct notifier_block *nb);
|
|
extern void unregister_cpu_notifier(struct notifier_block *nb);
|
|
extern void unregister_cpu_notifier(struct notifier_block *nb);
|
|
|
|
+extern void __unregister_cpu_notifier(struct notifier_block *nb);
|
|
#else
|
|
#else
|
|
|
|
|
|
#ifndef MODULE
|
|
#ifndef MODULE
|
|
extern int register_cpu_notifier(struct notifier_block *nb);
|
|
extern int register_cpu_notifier(struct notifier_block *nb);
|
|
|
|
+extern int __register_cpu_notifier(struct notifier_block *nb);
|
|
#else
|
|
#else
|
|
static inline int register_cpu_notifier(struct notifier_block *nb)
|
|
static inline int register_cpu_notifier(struct notifier_block *nb)
|
|
{
|
|
{
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+static inline int __register_cpu_notifier(struct notifier_block *nb)
|
|
|
|
+{
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
static inline void unregister_cpu_notifier(struct notifier_block *nb)
|
|
static inline void unregister_cpu_notifier(struct notifier_block *nb)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+static inline void __unregister_cpu_notifier(struct notifier_block *nb)
|
|
|
|
+{
|
|
|
|
+}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
int cpu_up(unsigned int cpu);
|
|
int cpu_up(unsigned int cpu);
|
|
@@ -149,19 +169,32 @@ void notify_cpu_starting(unsigned int cpu);
|
|
extern void cpu_maps_update_begin(void);
|
|
extern void cpu_maps_update_begin(void);
|
|
extern void cpu_maps_update_done(void);
|
|
extern void cpu_maps_update_done(void);
|
|
|
|
|
|
|
|
+#define cpu_notifier_register_begin cpu_maps_update_begin
|
|
|
|
+#define cpu_notifier_register_done cpu_maps_update_done
|
|
|
|
+
|
|
#else /* CONFIG_SMP */
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
|
#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
|
|
+#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
|
|
|
|
static inline int register_cpu_notifier(struct notifier_block *nb)
|
|
static inline int register_cpu_notifier(struct notifier_block *nb)
|
|
{
|
|
{
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline int __register_cpu_notifier(struct notifier_block *nb)
|
|
|
|
+{
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
static inline void unregister_cpu_notifier(struct notifier_block *nb)
|
|
static inline void unregister_cpu_notifier(struct notifier_block *nb)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline void __unregister_cpu_notifier(struct notifier_block *nb)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+
|
|
static inline void cpu_maps_update_begin(void)
|
|
static inline void cpu_maps_update_begin(void)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
@@ -170,6 +203,14 @@ static inline void cpu_maps_update_done(void)
|
|
{
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline void cpu_notifier_register_begin(void)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static inline void cpu_notifier_register_done(void)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+
|
|
#endif /* CONFIG_SMP */
|
|
#endif /* CONFIG_SMP */
|
|
extern struct bus_type cpu_subsys;
|
|
extern struct bus_type cpu_subsys;
|
|
|
|
|
|
@@ -183,8 +224,11 @@ extern void put_online_cpus(void);
|
|
extern void cpu_hotplug_disable(void);
|
|
extern void cpu_hotplug_disable(void);
|
|
extern void cpu_hotplug_enable(void);
|
|
extern void cpu_hotplug_enable(void);
|
|
#define hotcpu_notifier(fn, pri) cpu_notifier(fn, pri)
|
|
#define hotcpu_notifier(fn, pri) cpu_notifier(fn, pri)
|
|
|
|
+#define __hotcpu_notifier(fn, pri) __cpu_notifier(fn, pri)
|
|
#define register_hotcpu_notifier(nb) register_cpu_notifier(nb)
|
|
#define register_hotcpu_notifier(nb) register_cpu_notifier(nb)
|
|
|
|
+#define __register_hotcpu_notifier(nb) __register_cpu_notifier(nb)
|
|
#define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb)
|
|
#define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb)
|
|
|
|
+#define __unregister_hotcpu_notifier(nb) __unregister_cpu_notifier(nb)
|
|
void clear_tasks_mm_cpumask(int cpu);
|
|
void clear_tasks_mm_cpumask(int cpu);
|
|
int cpu_down(unsigned int cpu);
|
|
int cpu_down(unsigned int cpu);
|
|
|
|
|
|
@@ -197,9 +241,12 @@ static inline void cpu_hotplug_done(void) {}
|
|
#define cpu_hotplug_disable() do { } while (0)
|
|
#define cpu_hotplug_disable() do { } while (0)
|
|
#define cpu_hotplug_enable() do { } while (0)
|
|
#define cpu_hotplug_enable() do { } while (0)
|
|
#define hotcpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
#define hotcpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
|
|
+#define __hotcpu_notifier(fn, pri) do { (void)(fn); } while (0)
|
|
/* These aren't inline functions due to a GCC bug. */
|
|
/* These aren't inline functions due to a GCC bug. */
|
|
#define register_hotcpu_notifier(nb) ({ (void)(nb); 0; })
|
|
#define register_hotcpu_notifier(nb) ({ (void)(nb); 0; })
|
|
|
|
+#define __register_hotcpu_notifier(nb) ({ (void)(nb); 0; })
|
|
#define unregister_hotcpu_notifier(nb) ({ (void)(nb); })
|
|
#define unregister_hotcpu_notifier(nb) ({ (void)(nb); })
|
|
|
|
+#define __unregister_hotcpu_notifier(nb) ({ (void)(nb); })
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
|
|
#ifdef CONFIG_PM_SLEEP_SMP
|
|
#ifdef CONFIG_PM_SLEEP_SMP
|