Commit 9a9594ef authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull SMP hotplug updates from Thomas Gleixner:
 "This update is primarily a cleanup of the CPU hotplug locking code.

  The hotplug locking mechanism is an open coded RWSEM, which allows
  recursive locking. The main problem with that is the recursive nature
  as it evades the full lockdep coverage and hides potential deadlocks.

  The rework replaces the open coded RWSEM with a percpu RWSEM and
  establishes full lockdep coverage that way.

  The bulk of the changes fix up recursive locking issues and address
  the now fully reported potential deadlocks all over the place. Some of
  these deadlocks have been observed in the RT tree, but on mainline the
  probability was low enough to hide them away."

* 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (37 commits)
  cpu/hotplug: Constify attribute_group structures
  powerpc: Only obtain cpu_hotplug_lock if called by rtasd
  ARM/hw_breakpoint: Fix possible recursive locking for arch_hw_breakpoint_init
  cpu/hotplug: Remove unused check_for_tasks() function
  perf/core: Don't release cred_guard_mutex if not taken
  cpuhotplug: Link lock stacks for hotplug callbacks
  acpi/processor: Prevent cpu hotplug deadlock
  sched: Provide is_percpu_thread() helper
  cpu/hotplug: Convert hotplug locking to percpu rwsem
  s390: Prevent hotplug rwsem recursion
  arm: Prevent hotplug rwsem recursion
  arm64: Prevent cpu hotplug rwsem recursion
  kprobes: Cure hotplug lock ordering issues
  jump_label: Reorder hotplug lock and jump_label_lock
  perf/tracing/cpuhotplug: Fix locking order
  ACPI/processor: Use cpu_hotplug_disable() instead of get_online_cpus()
  PCI: Replace the racy recursion prevention
  PCI: Use cpu_hotplug_disable() instead of get_online_cpus()
  perf/x86/intel: Drop get_online_cpus() in intel_snb_check_microcode()
  x86/perf: Drop EXPORT of perf_check_microcode
  ...
parents 3ad918e6 993647a2
...@@ -1090,7 +1090,7 @@ static int __init arch_hw_breakpoint_init(void) ...@@ -1090,7 +1090,7 @@ static int __init arch_hw_breakpoint_init(void)
* driven low on this core and there isn't an architected way to * driven low on this core and there isn't an architected way to
* determine that. * determine that.
*/ */
get_online_cpus(); cpus_read_lock();
register_undef_hook(&debug_reg_hook); register_undef_hook(&debug_reg_hook);
/* /*
...@@ -1098,15 +1098,16 @@ static int __init arch_hw_breakpoint_init(void) ...@@ -1098,15 +1098,16 @@ static int __init arch_hw_breakpoint_init(void)
* assume that a halting debugger will leave the world in a nice state * assume that a halting debugger will leave the world in a nice state
* for us. * for us.
*/ */
ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "arm/hw_breakpoint:online", ret = cpuhp_setup_state_cpuslocked(CPUHP_AP_ONLINE_DYN,
dbg_reset_online, NULL); "arm/hw_breakpoint:online",
dbg_reset_online, NULL);
unregister_undef_hook(&debug_reg_hook); unregister_undef_hook(&debug_reg_hook);
if (WARN_ON(ret < 0) || !cpumask_empty(&debug_err_mask)) { if (WARN_ON(ret < 0) || !cpumask_empty(&debug_err_mask)) {
core_num_brps = 0; core_num_brps = 0;
core_num_wrps = 0; core_num_wrps = 0;
if (ret > 0) if (ret > 0)
cpuhp_remove_state_nocalls(ret); cpuhp_remove_state_nocalls_cpuslocked(ret);
put_online_cpus(); cpus_read_unlock();
return 0; return 0;
} }
...@@ -1124,7 +1125,7 @@ static int __init arch_hw_breakpoint_init(void) ...@@ -1124,7 +1125,7 @@ static int __init arch_hw_breakpoint_init(void)
TRAP_HWBKPT, "watchpoint debug exception"); TRAP_HWBKPT, "watchpoint debug exception");
hook_ifault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP, hook_ifault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP,
TRAP_HWBKPT, "breakpoint debug exception"); TRAP_HWBKPT, "breakpoint debug exception");
put_online_cpus(); cpus_read_unlock();
/* Register PM notifiers. */ /* Register PM notifiers. */
pm_init(); pm_init();
......
...@@ -124,5 +124,5 @@ void __kprobes patch_text(void *addr, unsigned int insn) ...@@ -124,5 +124,5 @@ void __kprobes patch_text(void *addr, unsigned int insn)
.insn = insn, .insn = insn,
}; };
stop_machine(patch_text_stop_machine, &patch, NULL); stop_machine_cpuslocked(patch_text_stop_machine, &patch, NULL);
} }
...@@ -182,7 +182,8 @@ void __kprobes kprobes_remove_breakpoint(void *addr, unsigned int insn) ...@@ -182,7 +182,8 @@ void __kprobes kprobes_remove_breakpoint(void *addr, unsigned int insn)
.addr = addr, .addr = addr,
.insn = insn, .insn = insn,
}; };
stop_machine(__kprobes_remove_breakpoint, &p, cpu_online_mask); stop_machine_cpuslocked(__kprobes_remove_breakpoint, &p,
cpu_online_mask);
} }
void __kprobes arch_disarm_kprobe(struct kprobe *p) void __kprobes arch_disarm_kprobe(struct kprobe *p)
......
...@@ -433,7 +433,6 @@ u32 aarch64_set_branch_offset(u32 insn, s32 offset); ...@@ -433,7 +433,6 @@ u32 aarch64_set_branch_offset(u32 insn, s32 offset);
bool aarch64_insn_hotpatch_safe(u32 old_insn, u32 new_insn); bool aarch64_insn_hotpatch_safe(u32 old_insn, u32 new_insn);
int aarch64_insn_patch_text_nosync(void *addr, u32 insn); int aarch64_insn_patch_text_nosync(void *addr, u32 insn);
int aarch64_insn_patch_text_sync(void *addrs[], u32 insns[], int cnt);
int aarch64_insn_patch_text(void *addrs[], u32 insns[], int cnt); int aarch64_insn_patch_text(void *addrs[], u32 insns[], int cnt);
s32 aarch64_insn_adrp_get_offset(u32 insn); s32 aarch64_insn_adrp_get_offset(u32 insn);
......
...@@ -255,6 +255,7 @@ static int __kprobes aarch64_insn_patch_text_cb(void *arg) ...@@ -255,6 +255,7 @@ static int __kprobes aarch64_insn_patch_text_cb(void *arg)
return ret; return ret;
} }
static
int __kprobes aarch64_insn_patch_text_sync(void *addrs[], u32 insns[], int cnt) int __kprobes aarch64_insn_patch_text_sync(void *addrs[], u32 insns[], int cnt)
{ {
struct aarch64_insn_patch patch = { struct aarch64_insn_patch patch = {
...@@ -267,8 +268,8 @@ int __kprobes aarch64_insn_patch_text_sync(void *addrs[], u32 insns[], int cnt) ...@@ -267,8 +268,8 @@ int __kprobes aarch64_insn_patch_text_sync(void *addrs[], u32 insns[], int cnt)
if (cnt <= 0) if (cnt <= 0)
return -EINVAL; return -EINVAL;
return stop_machine(aarch64_insn_patch_text_cb, &patch, return stop_machine_cpuslocked(aarch64_insn_patch_text_cb, &patch,
cpu_online_mask); cpu_online_mask);
} }
int __kprobes aarch64_insn_patch_text(void *addrs[], u32 insns[], int cnt) int __kprobes aarch64_insn_patch_text(void *addrs[], u32 insns[], int cnt)
......
...@@ -58,7 +58,6 @@ void arch_jump_label_transform(struct jump_entry *e, ...@@ -58,7 +58,6 @@ void arch_jump_label_transform(struct jump_entry *e,
insn.word = 0; /* nop */ insn.word = 0; /* nop */
} }
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
if (IS_ENABLED(CONFIG_CPU_MICROMIPS)) { if (IS_ENABLED(CONFIG_CPU_MICROMIPS)) {
insn_p->halfword[0] = insn.word >> 16; insn_p->halfword[0] = insn.word >> 16;
...@@ -70,7 +69,6 @@ void arch_jump_label_transform(struct jump_entry *e, ...@@ -70,7 +69,6 @@ void arch_jump_label_transform(struct jump_entry *e,
(unsigned long)insn_p + sizeof(*insn_p)); (unsigned long)insn_p + sizeof(*insn_p));
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
#endif /* HAVE_JUMP_LABEL */ #endif /* HAVE_JUMP_LABEL */
...@@ -43,6 +43,7 @@ extern void __init dump_numa_cpu_topology(void); ...@@ -43,6 +43,7 @@ extern void __init dump_numa_cpu_topology(void);
extern int sysfs_add_device_to_node(struct device *dev, int nid); extern int sysfs_add_device_to_node(struct device *dev, int nid);
extern void sysfs_remove_device_from_node(struct device *dev, int nid); extern void sysfs_remove_device_from_node(struct device *dev, int nid);
extern int numa_update_cpu_topology(bool cpus_locked);
static inline int early_cpu_to_node(int cpu) static inline int early_cpu_to_node(int cpu)
{ {
...@@ -71,6 +72,11 @@ static inline void sysfs_remove_device_from_node(struct device *dev, ...@@ -71,6 +72,11 @@ static inline void sysfs_remove_device_from_node(struct device *dev,
int nid) int nid)
{ {
} }
static inline int numa_update_cpu_topology(bool cpus_locked)
{
return 0;
}
#endif /* CONFIG_NUMA */ #endif /* CONFIG_NUMA */
#if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR) #if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR)
......
...@@ -283,7 +283,7 @@ static void prrn_work_fn(struct work_struct *work) ...@@ -283,7 +283,7 @@ static void prrn_work_fn(struct work_struct *work)
* the RTAS event. * the RTAS event.
*/ */
pseries_devicetree_update(-prrn_update_scope); pseries_devicetree_update(-prrn_update_scope);
arch_update_cpu_topology(); numa_update_cpu_topology(false);
} }
static DECLARE_WORK(prrn_work, prrn_work_fn); static DECLARE_WORK(prrn_work, prrn_work_fn);
......
...@@ -3368,7 +3368,7 @@ void kvmppc_alloc_host_rm_ops(void) ...@@ -3368,7 +3368,7 @@ void kvmppc_alloc_host_rm_ops(void)
return; return;
} }
get_online_cpus(); cpus_read_lock();
for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) { for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
if (!cpu_online(cpu)) if (!cpu_online(cpu))
...@@ -3390,17 +3390,17 @@ void kvmppc_alloc_host_rm_ops(void) ...@@ -3390,17 +3390,17 @@ void kvmppc_alloc_host_rm_ops(void)
l_ops = (unsigned long) ops; l_ops = (unsigned long) ops;
if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) { if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
put_online_cpus(); cpus_read_unlock();
kfree(ops->rm_core); kfree(ops->rm_core);
kfree(ops); kfree(ops);
return; return;
} }
cpuhp_setup_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE, cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
"ppc/kvm_book3s:prepare", "ppc/kvm_book3s:prepare",
kvmppc_set_host_core, kvmppc_set_host_core,
kvmppc_clear_host_core); kvmppc_clear_host_core);
put_online_cpus(); cpus_read_unlock();
} }
void kvmppc_free_host_rm_ops(void) void kvmppc_free_host_rm_ops(void)
......
...@@ -1311,8 +1311,10 @@ static int update_lookup_table(void *data) ...@@ -1311,8 +1311,10 @@ static int update_lookup_table(void *data)
/* /*
* Update the node maps and sysfs entries for each cpu whose home node * Update the node maps and sysfs entries for each cpu whose home node
* has changed. Returns 1 when the topology has changed, and 0 otherwise. * has changed. Returns 1 when the topology has changed, and 0 otherwise.
*
* cpus_locked says whether we already hold cpu_hotplug_lock.
*/ */
int arch_update_cpu_topology(void) int numa_update_cpu_topology(bool cpus_locked)
{ {
unsigned int cpu, sibling, changed = 0; unsigned int cpu, sibling, changed = 0;
struct topology_update_data *updates, *ud; struct topology_update_data *updates, *ud;
...@@ -1400,15 +1402,23 @@ int arch_update_cpu_topology(void) ...@@ -1400,15 +1402,23 @@ int arch_update_cpu_topology(void)
if (!cpumask_weight(&updated_cpus)) if (!cpumask_weight(&updated_cpus))
goto out; goto out;
stop_machine(update_cpu_topology, &updates[0], &updated_cpus); if (cpus_locked)
stop_machine_cpuslocked(update_cpu_topology, &updates[0],
&updated_cpus);
else
stop_machine(update_cpu_topology, &updates[0], &updated_cpus);
/* /*
* Update the numa-cpu lookup table with the new mappings, even for * Update the numa-cpu lookup table with the new mappings, even for
* offline CPUs. It is best to perform this update from the stop- * offline CPUs. It is best to perform this update from the stop-
* machine context. * machine context.
*/ */
stop_machine(update_lookup_table, &updates[0], if (cpus_locked)
stop_machine_cpuslocked(update_lookup_table, &updates[0],
cpumask_of(raw_smp_processor_id())); cpumask_of(raw_smp_processor_id()));
else
stop_machine(update_lookup_table, &updates[0],
cpumask_of(raw_smp_processor_id()));
for (ud = &updates[0]; ud; ud = ud->next) { for (ud = &updates[0]; ud; ud = ud->next) {
unregister_cpu_under_node(ud->cpu, ud->old_nid); unregister_cpu_under_node(ud->cpu, ud->old_nid);
...@@ -1426,6 +1436,12 @@ int arch_update_cpu_topology(void) ...@@ -1426,6 +1436,12 @@ int arch_update_cpu_topology(void)
return changed; return changed;
} }
int arch_update_cpu_topology(void)
{
lockdep_assert_cpus_held();
return numa_update_cpu_topology(true);
}
static void topology_work_fn(struct work_struct *work) static void topology_work_fn(struct work_struct *work)
{ {
rebuild_sched_domains(); rebuild_sched_domains();
......
...@@ -348,7 +348,7 @@ static int set_subcores_per_core(int new_mode) ...@@ -348,7 +348,7 @@ static int set_subcores_per_core(int new_mode)
state->master = 0; state->master = 0;
} }
get_online_cpus(); cpus_read_lock();
/* This cpu will update the globals before exiting stop machine */ /* This cpu will update the globals before exiting stop machine */
this_cpu_ptr(&split_state)->master = 1; this_cpu_ptr(&split_state)->master = 1;
...@@ -356,9 +356,10 @@ static int set_subcores_per_core(int new_mode) ...@@ -356,9 +356,10 @@ static int set_subcores_per_core(int new_mode)
/* Ensure state is consistent before we call the other cpus */ /* Ensure state is consistent before we call the other cpus */
mb(); mb();
stop_machine(cpu_update_split_mode, &new_mode, cpu_online_mask); stop_machine_cpuslocked(cpu_update_split_mode, &new_mode,
cpu_online_mask);
put_online_cpus(); cpus_read_unlock();
return 0; return 0;
} }
......
...@@ -93,7 +93,7 @@ void arch_jump_label_transform(struct jump_entry *entry, ...@@ -93,7 +93,7 @@ void arch_jump_label_transform(struct jump_entry *entry,
args.entry = entry; args.entry = entry;
args.type = type; args.type = type;
stop_machine(__sm_arch_jump_label_transform, &args, NULL); stop_machine_cpuslocked(__sm_arch_jump_label_transform, &args, NULL);
} }
void arch_jump_label_transform_static(struct jump_entry *entry, void arch_jump_label_transform_static(struct jump_entry *entry,
......
...@@ -196,7 +196,7 @@ void arch_arm_kprobe(struct kprobe *p) ...@@ -196,7 +196,7 @@ void arch_arm_kprobe(struct kprobe *p)
{ {
struct swap_insn_args args = {.p = p, .arm_kprobe = 1}; struct swap_insn_args args = {.p = p, .arm_kprobe = 1};
stop_machine(swap_instruction, &args, NULL); stop_machine_cpuslocked(swap_instruction, &args, NULL);
} }
NOKPROBE_SYMBOL(arch_arm_kprobe); NOKPROBE_SYMBOL(arch_arm_kprobe);
...@@ -204,7 +204,7 @@ void arch_disarm_kprobe(struct kprobe *p) ...@@ -204,7 +204,7 @@ void arch_disarm_kprobe(struct kprobe *p)
{ {
struct swap_insn_args args = {.p = p, .arm_kprobe = 0}; struct swap_insn_args args = {.p = p, .arm_kprobe = 0};
stop_machine(swap_instruction, &args, NULL); stop_machine_cpuslocked(swap_instruction, &args, NULL);
} }
NOKPROBE_SYMBOL(arch_disarm_kprobe); NOKPROBE_SYMBOL(arch_disarm_kprobe);
......
...@@ -636,10 +636,10 @@ static void stp_work_fn(struct work_struct *work) ...@@ -636,10 +636,10 @@ static void stp_work_fn(struct work_struct *work)
goto out_unlock; goto out_unlock;
memset(&stp_sync, 0, sizeof(stp_sync)); memset(&stp_sync, 0, sizeof(stp_sync));
get_online_cpus(); cpus_read_lock();
atomic_set(&stp_sync.cpus, num_online_cpus() - 1); atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
stop_machine(stp_sync_clock, &stp_sync, cpu_online_mask); stop_machine_cpuslocked(stp_sync_clock, &stp_sync, cpu_online_mask);
put_online_cpus(); cpus_read_unlock();
if (!check_sync_clock()) if (!check_sync_clock())
/* /*
......
...@@ -41,12 +41,10 @@ void arch_jump_label_transform(struct jump_entry *entry, ...@@ -41,12 +41,10 @@ void arch_jump_label_transform(struct jump_entry *entry,
val = 0x01000000; val = 0x01000000;
} }
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
*insn = val; *insn = val;
flushi(insn); flushi(insn);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
#endif #endif
...@@ -45,14 +45,12 @@ static void __jump_label_transform(struct jump_entry *e, ...@@ -45,14 +45,12 @@ static void __jump_label_transform(struct jump_entry *e,
void arch_jump_label_transform(struct jump_entry *e, void arch_jump_label_transform(struct jump_entry *e,
enum jump_label_type type) enum jump_label_type type)
{ {
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
__jump_label_transform(e, type); __jump_label_transform(e, type);
flush_icache_range(e->code, e->code + sizeof(tilegx_bundle_bits)); flush_icache_range(e->code, e->code + sizeof(tilegx_bundle_bits));
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
__init_or_module void arch_jump_label_transform_static(struct jump_entry *e, __init_or_module void arch_jump_label_transform_static(struct jump_entry *e,
......
...@@ -2233,7 +2233,6 @@ void perf_check_microcode(void) ...@@ -2233,7 +2233,6 @@ void perf_check_microcode(void)
if (x86_pmu.check_microcode) if (x86_pmu.check_microcode)
x86_pmu.check_microcode(); x86_pmu.check_microcode();
} }
EXPORT_SYMBOL_GPL(perf_check_microcode);
static struct pmu pmu = { static struct pmu pmu = {
.pmu_enable = x86_pmu_enable, .pmu_enable = x86_pmu_enable,
......
...@@ -3425,12 +3425,10 @@ static void intel_snb_check_microcode(void) ...@@ -3425,12 +3425,10 @@ static void intel_snb_check_microcode(void)
int pebs_broken = 0; int pebs_broken = 0;
int cpu; int cpu;
get_online_cpus();
for_each_online_cpu(cpu) { for_each_online_cpu(cpu) {
if ((pebs_broken = intel_snb_pebs_broken(cpu))) if ((pebs_broken = intel_snb_pebs_broken(cpu)))
break; break;
} }
put_online_cpus();
if (pebs_broken == x86_pmu.pebs_broken) if (pebs_broken == x86_pmu.pebs_broken)
return; return;
...@@ -3503,7 +3501,9 @@ static bool check_msr(unsigned long msr, u64 mask) ...@@ -3503,7 +3501,9 @@ static bool check_msr(unsigned long msr, u64 mask)
static __init void intel_sandybridge_quirk(void) static __init void intel_sandybridge_quirk(void)
{ {
x86_pmu.check_microcode = intel_snb_check_microcode; x86_pmu.check_microcode = intel_snb_check_microcode;
cpus_read_lock();
intel_snb_check_microcode(); intel_snb_check_microcode();
cpus_read_unlock();
} }
static const struct { int id; char *name; } intel_arch_events_map[] __initconst = { static const struct { int id; char *name; } intel_arch_events_map[] __initconst = {
...@@ -4175,13 +4175,12 @@ static __init int fixup_ht_bug(void) ...@@ -4175,13 +4175,12 @@ static __init int fixup_ht_bug(void)
lockup_detector_resume(); lockup_detector_resume();
get_online_cpus(); cpus_read_lock();
for_each_online_cpu(c) { for_each_online_cpu(c)
free_excl_cntrs(c); free_excl_cntrs(c);
}
put_online_cpus(); cpus_read_unlock();
pr_info("PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off\n"); pr_info("PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off\n");
return 0; return 0;
} }
......
...@@ -1682,7 +1682,7 @@ static int __init intel_cqm_init(void) ...@@ -1682,7 +1682,7 @@ static int __init intel_cqm_init(void)
* *
* Also, check that the scales match on all cpus. * Also, check that the scales match on all cpus.
*/ */
get_online_cpus(); cpus_read_lock();
for_each_online_cpu(cpu) { for_each_online_cpu(cpu) {
struct cpuinfo_x86 *c = &cpu_data(cpu); struct cpuinfo_x86 *c = &cpu_data(cpu);
...@@ -1746,14 +1746,14 @@ static int __init intel_cqm_init(void) ...@@ -1746,14 +1746,14 @@ static int __init intel_cqm_init(void)
* Setup the hot cpu notifier once we are sure cqm * Setup the hot cpu notifier once we are sure cqm
* is enabled to avoid notifier leak. * is enabled to avoid notifier leak.
*/ */
cpuhp_setup_state(CPUHP_AP_PERF_X86_CQM_STARTING, cpuhp_setup_state_cpuslocked(CPUHP_AP_PERF_X86_CQM_STARTING,
"perf/x86/cqm:starting", "perf/x86/cqm:starting",
intel_cqm_cpu_starting, NULL); intel_cqm_cpu_starting, NULL);
cpuhp_setup_state(CPUHP_AP_PERF_X86_CQM_ONLINE, "perf/x86/cqm:online", cpuhp_setup_state_cpuslocked(CPUHP_AP_PERF_X86_CQM_ONLINE,
NULL, intel_cqm_cpu_exit); "perf/x86/cqm:online",
NULL, intel_cqm_cpu_exit);
out: out:
put_online_cpus(); cpus_read_unlock();
if (ret) { if (ret) {
kfree(str); kfree(str);
......
...@@ -807,10 +807,8 @@ void mtrr_save_state(void) ...@@ -807,10 +807,8 @@ void mtrr_save_state(void)
if (!mtrr_enabled()) if (!mtrr_enabled())
return; return;
get_online_cpus();
first_cpu = cpumask_first(cpu_online_mask); first_cpu = cpumask_first(cpu_online_mask);
smp_call_function_single(first_cpu, mtrr_save_fixed_ranges, NULL, 1); smp_call_function_single(first_cpu, mtrr_save_fixed_ranges, NULL, 1);
put_online_cpus();
} }
void set_mtrr_aps_delayed_init(void) void set_mtrr_aps_delayed_init(void)
......
...@@ -105,11 +105,9 @@ static void __jump_label_transform(struct jump_entry *entry, ...@@ -105,11 +105,9 @@ static void __jump_label_transform(struct jump_entry *entry,
void arch_jump_label_transform(struct jump_entry *entry, void arch_jump_label_transform(struct jump_entry *entry,
enum jump_label_type type) enum jump_label_type type)
{ {
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
__jump_label_transform(entry, type, NULL, 0); __jump_label_transform(entry, type, NULL, 0);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
static enum { static enum {
......
...@@ -268,9 +268,9 @@ static int acpi_processor_start(struct device *dev) ...@@ -268,9 +268,9 @@ static int acpi_processor_start(struct device *dev)
return -ENODEV; return -ENODEV;
/* Protect against concurrent CPU hotplug operations */ /* Protect against concurrent CPU hotplug operations */
get_online_cpus(); cpu_hotplug_disable();
ret = __acpi_processor_start(device); ret = __acpi_processor_start(device);
put_online_cpus(); cpu_hotplug_enable();
return ret; return ret;
} }
......
...@@ -909,6 +909,13 @@ static long __acpi_processor_get_throttling(void *data) ...@@ -909,6 +909,13 @@ static long __acpi_processor_get_throttling(void *data)
return pr->throttling.acpi_processor_get_throttling(pr); return pr->throttling.acpi_processor_get_throttling(pr);
} }
static int call_on_cpu(int cpu, long (*fn)(void *), void *arg, bool direct)
{
if (direct || (is_percpu_thread() && cpu == smp_processor_id()))
return fn(arg);
return work_on_cpu(cpu, fn, arg);
}
static int acpi_processor_get_throttling(struct acpi_processor *pr) static int acpi_processor_get_throttling(struct acpi_processor *pr)
{ {
if (!pr) if (!pr)
...@@ -926,7 +933,7 @@ static int acpi_processor_get_throttling(struct acpi_processor *pr) ...@@ -926,7 +933,7 @@ static int acpi_processor_get_throttling(struct acpi_processor *pr)
if (!cpu_online(pr->id)) if (!cpu_online(pr->id))
return -ENODEV; return -ENODEV;
return work_on_cpu(pr->id, __acpi_processor_get_throttling, pr); return call_on_cpu(pr->id, __acpi_processor_get_throttling, pr, false);
} }
static int acpi_processor_get_fadt_info(struct acpi_processor *pr) static int acpi_processor_get_fadt_info(struct acpi_processor *pr)
...@@ -1076,13 +1083,6 @@ static long acpi_processor_throttling_fn(void *data) ...@@ -1076,13 +1083,6 @@ static long acpi_processor_throttling_fn(void *data)
arg->target_state, arg->force); arg->target_state, arg->force);
} }
static int call_on_cpu(int cpu, long (*fn)(void *), void *arg, bool direct)
{
if (direct)
return fn(arg);
return work_on_cpu(cpu, fn, arg);
}
static int __acpi_processor_set_throttling(struct acpi_processor *pr, static int __acpi_processor_set_throttling(struct acpi_processor *pr,
int state, bool force, bool direct) int state, bool force, bool direct)
{ {
......
...@@ -887,7 +887,7 @@ static ssize_t store(struct kobject *kobj, struct attribute *attr, ...@@ -887,7 +887,7 @@ static ssize_t store(struct kobject *kobj, struct attribute *attr,
struct freq_attr *fattr = to_attr(attr); struct freq_attr *fattr = to_attr(attr);
ssize_t ret = -EINVAL; ssize_t ret = -EINVAL;
get_online_cpus(); cpus_read_lock();
if (cpu_online(policy->cpu)) { if (cpu_online(policy->cpu)) {
down_write(&policy->rwsem); down_write(&policy->rwsem);
...@@ -895,7 +895,7 @@ static ssize_t store(struct kobject *kobj, struct attribute *attr, ...@@ -895,7 +895,7 @@ static ssize_t store(struct kobject *kobj, struct attribute *attr,
up_write(&policy->rwsem); up_write(&policy->rwsem);
} }
put_online_cpus(); cpus_read_unlock();
return ret; return ret;
} }
...@@ -2441,7 +2441,7 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data) ...@@ -2441,7 +2441,7 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
pr_debug("trying to register driver %s\n", driver_data->name); pr_debug("trying to register driver %s\n", driver_data->name);
/* Protect against concurrent CPU online/offline. */ /* Protect against concurrent CPU online/offline. */
get_online_cpus(); cpus_read_lock();
write_lock_irqsave(&cpufreq_driver_lock, flags); write_lock_irqsave(&cpufreq_driver_lock, flags);
if (cpufreq_driver) { if (cpufreq_driver) {
...@@ -2474,9 +2474,10 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data) ...@@ -2474,9 +2474,10 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
goto err_if_unreg; goto err_if_unreg;
} }
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "cpufreq:online", ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
cpuhp_cpufreq_online, "cpufreq:online",
cpuhp_cpufreq_offline); cpuhp_cpufreq_online,
cpuhp_cpufreq_offline);
if (ret < 0) if (ret < 0)
goto err_if_unreg; goto err_if_unreg;
hp_online = ret; hp_online = ret;
...@@ -2494,7 +2495,7 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data) ...@@ -2494,7 +2495,7 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
cpufreq_driver = NULL; cpufreq_driver = NULL;
write_unlock_irqrestore(&cpufreq_driver_lock, flags); write_unlock_irqrestore(&cpufreq_driver_lock, flags);
out: out:
put_online_cpus(); cpus_read_unlock();
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(cpufreq_register_driver); EXPORT_SYMBOL_GPL(cpufreq_register_driver);
...@@ -2517,17 +2518,17 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver) ...@@ -2517,17 +2518,17 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
pr_debug("unregistering driver %s\n", driver->name); pr_debug("unregistering driver %s\n", driver->name);
/* Protect against concurrent cpu hotplug */ /* Protect against concurrent cpu hotplug */
get_online_cpus(); cpus_read_lock();
subsys_interface_unregister(&cpufreq_interface); subsys_interface_unregister(&cpufreq_interface);
remove_boost_sysfs_file(); remove_boost_sysfs_file();
cpuhp_remove_state_nocalls(hp_online); cpuhp_remove_state_nocalls_cpuslocked(hp_online);
write_lock_irqsave(&cpufreq_driver_lock, flags); write_lock_irqsave(&cpufreq_driver_lock, flags);
cpufreq_driver = NULL; cpufreq_driver = NULL;
write_unlock_irqrestore(&cpufreq_driver_lock, flags); write_unlock_irqrestore(&cpufreq_driver_lock, flags);
put_online_cpus(); cpus_read_unlock();
return 0; return 0;
} }
......
...@@ -587,7 +587,7 @@ static void etm_disable_sysfs(struct coresight_device *csdev) ...@@ -587,7 +587,7 @@ static void etm_disable_sysfs(struct coresight_device *csdev)
* after cpu online mask indicates the cpu is offline but before the * after cpu online mask indicates the cpu is offline but before the
* DYING hotplug callback is serviced by the ETM driver. * DYING hotplug callback is serviced by the ETM driver.
*/ */
get_online_cpus(); cpus_read_lock();
spin_lock(&drvdata->spinlock); spin_lock(&drvdata->spinlock);
/* /*
...@@ -597,7 +597,7 @@ static void etm_disable_sysfs(struct coresight_device *csdev) ...@@ -597,7 +597,7 @@ static void etm_disable_sysfs(struct coresight_device *csdev)
smp_call_function_single(drvdata->cpu, etm_disable_hw, drvdata, 1); smp_call_function_single(drvdata->cpu, etm_disable_hw, drvdata, 1);
spin_unlock(&drvdata->spinlock); spin_unlock(&drvdata->spinlock);
put_online_cpus(); cpus_read_unlock();
dev_info(drvdata->dev, "ETM tracing disabled\n"); dev_info(drvdata->dev, "ETM tracing disabled\n");
} }
...@@ -795,7 +795,7 @@ static int etm_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -795,7 +795,7 @@ static int etm_probe(struct amba_device *adev, const struct amba_id *id)
drvdata->cpu = pdata ? pdata->cpu : 0; drvdata->cpu = pdata ? pdata->cpu : 0;
get_online_cpus(); cpus_read_lock();
etmdrvdata[drvdata->cpu] = drvdata; etmdrvdata[drvdata->cpu] = drvdata;
if (smp_call_function_single(drvdata->cpu, if (smp_call_function_single(drvdata->cpu,
...@@ -803,17 +803,17 @@ static int etm_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -803,17 +803,17 @@ static int etm_probe(struct amba_device *adev, const struct amba_id *id)
dev_err(dev, "ETM arch init failed\n"); dev_err(dev, "ETM arch init failed\n");
if (!etm_count++) { if (!etm_count++) {
cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CORESIGHT_STARTING, cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ARM_CORESIGHT_STARTING,
"arm/coresight:starting", "arm/coresight:starting",
etm_starting_cpu, etm_dying_cpu); etm_starting_cpu, etm_dying_cpu);
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
"arm/coresight:online", "arm/coresight:online",
etm_online_cpu, NULL); etm_online_cpu, NULL);
if (ret < 0) if (ret < 0)
goto err_arch_supported; goto err_arch_supported;
hp_online = ret; hp_online = ret;
} }
put_online_cpus(); cpus_read_unlock();
if (etm_arch_supported(drvdata->arch) == false) { if (etm_arch_supported(drvdata->arch) == false) {
ret = -EINVAL; ret = -EINVAL;
......
...@@ -371,7 +371,7 @@ static void etm4_disable_sysfs(struct coresight_device *csdev) ...@@ -371,7 +371,7 @@ static void etm4_disable_sysfs(struct coresight_device *csdev)
* after cpu online mask indicates the cpu is offline but before the * after cpu online mask indicates the cpu is offline but before the
* DYING hotplug callback is serviced by the ETM driver. * DYING hotplug callback is serviced by the ETM driver.
*/ */
get_online_cpus(); cpus_read_lock();
spin_lock(&drvdata->spinlock); spin_lock(&drvdata->spinlock);
/* /*
...@@ -381,7 +381,7 @@ static void etm4_disable_sysfs(struct coresight_device *csdev) ...@@ -381,7 +381,7 @@ static void etm4_disable_sysfs(struct coresight_device *csdev)
smp_call_function_single(drvdata->cpu, etm4_disable_hw, drvdata, 1); smp_call_function_single(drvdata->cpu, etm4_disable_hw, drvdata, 1);
spin_unlock(&drvdata->spinlock); spin_unlock(&drvdata->spinlock);
put_online_cpus(); cpus_read_unlock();
dev_info(drvdata->dev, "ETM tracing disabled\n"); dev_info(drvdata->dev, "ETM tracing disabled\n");
} }
...@@ -982,7 +982,7 @@ static int etm4_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -982,7 +982,7 @@ static int etm4_probe(struct amba_device *adev, const struct amba_id *id)
drvdata->cpu = pdata ? pdata->cpu : 0; drvdata->cpu = pdata ? pdata->cpu : 0;
get_online_cpus(); cpus_read_lock();
etmdrvdata[drvdata->cpu] = drvdata; etmdrvdata[drvdata->cpu] = drvdata;
if (smp_call_function_single(drvdata->cpu, if (smp_call_function_single(drvdata->cpu,
...@@ -990,18 +990,18 @@ static int etm4_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -990,18 +990,18 @@ static int etm4_probe(struct amba_device *adev, const struct amba_id *id)
dev_err(dev, "ETM arch init failed\n"); dev_err(dev, "ETM arch init failed\n");
if (!etm4_count++) { if (!etm4_count++) {
cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CORESIGHT_STARTING, cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ARM_CORESIGHT_STARTING,
"arm/coresight4:starting", "arm/coresight4:starting",
etm4_starting_cpu, etm4_dying_cpu); etm4_starting_cpu, etm4_dying_cpu);
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
"arm/coresight4:online", "arm/coresight4:online",
etm4_online_cpu, NULL); etm4_online_cpu, NULL);
if (ret < 0) if (ret < 0)
goto err_arch_supported; goto err_arch_supported;
hp_online = ret; hp_online = ret;
} }
put_online_cpus(); cpus_read_unlock();
if (etm4_arch_supported(drvdata->arch) == false) { if (etm4_arch_supported(drvdata->arch) == false) {
ret = -EINVAL; ret = -EINVAL;
......
...@@ -320,10 +320,19 @@ static long local_pci_probe(void *_ddi) ...@@ -320,10 +320,19 @@ static long local_pci_probe(void *_ddi)
return 0; return 0;
} }
static bool pci_physfn_is_probed(struct pci_dev *dev)
{
#ifdef CONFIG_PCI_IOV
return dev->is_virtfn && dev->physfn->is_probed;
#else
return false;
#endif
}
static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev, static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
const struct pci_device_id *id) const struct pci_device_id *id)
{ {
int error, node; int error, node, cpu;
struct drv_dev_and_id ddi = { drv, dev, id }; struct drv_dev_and_id ddi = { drv, dev, id };
/* /*
...@@ -332,33 +341,27 @@ static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev, ...@@ -332,33 +341,27 @@ static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
* on the right node. * on the right node.
*/ */
node = dev_to_node(&dev->dev); node = dev_to_node(&dev->dev);
dev->is_probed = 1;
cpu_hotplug_disable();
/* /*
* On NUMA systems, we are likely to call a PF probe function using * Prevent nesting work_on_cpu() for the case where a Virtual Function
* work_on_cpu(). If that probe calls pci_enable_sriov() (which * device is probed from work_on_cpu() of the Physical device.
* adds the VF devices via pci_bus_add_device()), we may re-enter
* this function to call the VF probe function. Calling
* work_on_cpu() again will cause a lockdep warning. Since VFs are
* always on the same node as the PF, we can work around this by
* avoiding work_on_cpu() when we're already on the correct node.
*
* Preemption is enabled, so it's theoretically unsafe to use
* numa_node_id(), but even if we run the probe function on the
* wrong node, it should be functionally correct.
*/ */
if (node >= 0 && node != numa_node_id()) { if (node < 0 || node >= MAX_NUMNODES || !node_online(node) ||
int cpu; pci_physfn_is_probed(dev))
cpu = nr_cpu_ids;
get_online_cpus(); else
cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask); cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
if (cpu < nr_cpu_ids)
error = work_on_cpu(cpu, local_pci_probe, &ddi); if (cpu < nr_cpu_ids)
else error = work_on_cpu(cpu, local_pci_probe, &ddi);
error = local_pci_probe(&ddi); else
put_online_cpus();
} else
error = local_pci_probe(&ddi); error = local_pci_probe(&ddi);
dev->is_probed = 0;
cpu_hotplug_enable();
return error; return error;
} }
......
...@@ -99,26 +99,32 @@ static inline void cpu_maps_update_done(void) ...@@ -99,26 +99,32 @@ static inline void cpu_maps_update_done(void)
extern struct bus_type cpu_subsys; extern struct bus_type cpu_subsys;
#ifdef CONFIG_HOTPLUG_CPU #ifdef CONFIG_HOTPLUG_CPU
/* Stop CPUs going up and down. */ extern void cpus_write_lock(void);
extern void cpus_write_unlock(void);
extern void cpu_hotplug_begin(void); extern void cpus_read_lock(void);
extern void cpu_hotplug_done(void); extern void cpus_read_unlock(void);
extern void get_online_cpus(void); extern void lockdep_assert_cpus_held(void);
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);
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);
#else /* CONFIG_HOTPLUG_CPU */ #else /* CONFIG_HOTPLUG_CPU */
static inline void cpu_hotplug_begin(void) {} static inline void cpus_write_lock(void) { }
static inline void cpu_hotplug_done(void) {} static inline void cpus_write_unlock(void) { }
#define get_online_cpus() do { } while (0) static inline void cpus_read_lock(void) { }
#define put_online_cpus() do { } while (0) static inline void cpus_read_unlock(void) { }
#define cpu_hotplug_disable() do { } while (0) static inline void lockdep_assert_cpus_held(void) { }
#define cpu_hotplug_enable() do { } while (0) static inline void cpu_hotplug_disable(void) { }
#endif /* CONFIG_HOTPLUG_CPU */ static inline void cpu_hotplug_enable(void) { }
#endif /* !CONFIG_HOTPLUG_CPU */
/* Wrappers which go away once all code is converted */
static inline void cpu_hotplug_begin(void) { cpus_write_lock(); }
static inline void cpu_hotplug_done(void) { cpus_write_unlock(); }
static inline void get_online_cpus(void) { cpus_read_lock(); }
static inline void put_online_cpus(void) { cpus_read_unlock(); }
#ifdef CONFIG_PM_SLEEP_SMP #ifdef CONFIG_PM_SLEEP_SMP
extern int freeze_secondary_cpus(int primary); extern int freeze_secondary_cpus(int primary);
......
...@@ -153,6 +153,11 @@ int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke, ...@@ -153,6 +153,11 @@ int __cpuhp_setup_state(enum cpuhp_state state, const char *name, bool invoke,
int (*startup)(unsigned int cpu), int (*startup)(unsigned int cpu),
int (*teardown)(unsigned int cpu), bool multi_instance); int (*teardown)(unsigned int cpu), bool multi_instance);
int __cpuhp_setup_state_cpuslocked(enum cpuhp_state state, const char *name,
bool invoke,
int (*startup)(unsigned int cpu),
int (*teardown)(unsigned int cpu),
bool multi_instance);
/** /**
* cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks * cpuhp_setup_state - Setup hotplug state callbacks with calling the callbacks
* @state: The state for which the calls are installed * @state: The state for which the calls are installed
...@@ -171,6 +176,15 @@ static inline int cpuhp_setup_state(enum cpuhp_state state, ...@@ -171,6 +176,15 @@ static inline int cpuhp_setup_state(enum cpuhp_state state,
return __cpuhp_setup_state(state, name, true, startup, teardown, false); return __cpuhp_setup_state(state, name, true, startup, teardown, false);
} }
static inline int cpuhp_setup_state_cpuslocked(enum cpuhp_state state,
const char *name,
int (*startup)(unsigned int cpu),
int (*teardown)(unsigned int cpu))
{
return __cpuhp_setup_state_cpuslocked(state, name, true, startup,
teardown, false);
}
/** /**
* cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the * cpuhp_setup_state_nocalls - Setup hotplug state callbacks without calling the
* callbacks * callbacks
...@@ -191,6 +205,15 @@ static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state, ...@@ -191,6 +205,15 @@ static inline int cpuhp_setup_state_nocalls(enum cpuhp_state state,
false); false);
} }
static inline int cpuhp_setup_state_nocalls_cpuslocked(enum cpuhp_state state,
const char *name,
int (*startup)(unsigned int cpu),
int (*teardown)(unsigned int cpu))
{
return __cpuhp_setup_state_cpuslocked(state, name, false, startup,
teardown, false);
}
/** /**
* cpuhp_setup_state_multi - Add callbacks for multi state * cpuhp_setup_state_multi - Add callbacks for multi state
* @state: The state for which the calls are installed * @state: The state for which the calls are installed
...@@ -217,6 +240,8 @@ static inline int cpuhp_setup_state_multi(enum cpuhp_state state, ...@@ -217,6 +240,8 @@ static inline int cpuhp_setup_state_multi(enum cpuhp_state state,
int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node, int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
bool invoke); bool invoke);
int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state,
struct hlist_node *node, bool invoke);
/** /**
* cpuhp_state_add_instance - Add an instance for a state and invoke startup * cpuhp_state_add_instance - Add an instance for a state and invoke startup
...@@ -249,7 +274,15 @@ static inline int cpuhp_state_add_instance_nocalls(enum cpuhp_state state, ...@@ -249,7 +274,15 @@ static inline int cpuhp_state_add_instance_nocalls(enum cpuhp_state state,
return __cpuhp_state_add_instance(state, node, false); return __cpuhp_state_add_instance(state, node, false);
} }
static inline int
cpuhp_state_add_instance_nocalls_cpuslocked(enum cpuhp_state state,
struct hlist_node *node)
{
return __cpuhp_state_add_instance_cpuslocked(state, node, false);
}
void __cpuhp_remove_state(enum cpuhp_state state, bool invoke); void __cpuhp_remove_state(enum cpuhp_state state, bool invoke);
void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke);
/** /**
* cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown * cpuhp_remove_state - Remove hotplug state callbacks and invoke the teardown
...@@ -273,6 +306,11 @@ static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state) ...@@ -273,6 +306,11 @@ static inline void cpuhp_remove_state_nocalls(enum cpuhp_state state)
__cpuhp_remove_state(state, false); __cpuhp_remove_state(state, false);
} }
static inline void cpuhp_remove_state_nocalls_cpuslocked(enum cpuhp_state state)
{
__cpuhp_remove_state_cpuslocked(state, false);
}
/** /**
* cpuhp_remove_multi_state - Remove hotplug multi state callback * cpuhp_remove_multi_state - Remove hotplug multi state callback
* @state: The state for which the calls are removed * @state: The state for which the calls are removed
......
...@@ -166,9 +166,6 @@ struct padata_instance { ...@@ -166,9 +166,6 @@ struct padata_instance {
extern struct padata_instance *padata_alloc_possible( extern struct padata_instance *padata_alloc_possible(
struct workqueue_struct *wq); struct workqueue_struct *wq);
extern struct padata_instance *padata_alloc(struct workqueue_struct *wq,
const struct cpumask *pcpumask,
const struct cpumask *cbcpumask);
extern void padata_free(struct padata_instance *pinst); extern void padata_free(struct padata_instance *pinst);
extern int padata_do_parallel(struct padata_instance *pinst, extern int padata_do_parallel(struct padata_instance *pinst,
struct padata_priv *padata, int cb_cpu); struct padata_priv *padata, int cb_cpu);
......
...@@ -376,6 +376,7 @@ struct pci_dev { ...@@ -376,6 +376,7 @@ struct pci_dev {
unsigned int irq_managed:1; unsigned int irq_managed:1;
unsigned int has_secondary_link:1; unsigned int has_secondary_link:1;
unsigned int non_compliant_bars:1; /* broken BARs; ignore them */ unsigned int non_compliant_bars:1; /* broken BARs; ignore them */
unsigned int is_probed:1; /* device probing in progress */
pci_dev_flags_t dev_flags; pci_dev_flags_t dev_flags;
atomic_t enable_cnt; /* pci_enable_device has been called */ atomic_t enable_cnt; /* pci_enable_device has been called */
......
...@@ -801,6 +801,8 @@ struct perf_cpu_context { ...@@ -801,6 +801,8 @@ struct perf_cpu_context {
struct list_head sched_cb_entry; struct list_head sched_cb_entry;
int sched_cb_usage; int sched_cb_usage;
int online;
}; };
struct perf_output_handle { struct perf_output_handle {
......
...@@ -1281,6 +1281,16 @@ extern struct pid *cad_pid; ...@@ -1281,6 +1281,16 @@ extern struct pid *cad_pid;
#define tsk_used_math(p) ((p)->flags & PF_USED_MATH) #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)
#define used_math() tsk_used_math(current) #define used_math() tsk_used_math(current)
static inline bool is_percpu_thread(void)
{
#ifdef CONFIG_SMP
return (current->flags & PF_NO_SETAFFINITY) &&
(current->nr_cpus_allowed == 1);
#else
return true;
#endif
}
/* Per-process atomic flags. */ /* Per-process atomic flags. */
#define PFA_NO_NEW_PRIVS 0 /* May not gain new privileges. */ #define PFA_NO_NEW_PRIVS 0 /* May not gain new privileges. */
#define PFA_SPREAD_PAGE 1 /* Spread page cache over cpuset */ #define PFA_SPREAD_PAGE 1 /* Spread page cache over cpuset */
......
...@@ -116,15 +116,29 @@ static inline int try_stop_cpus(const struct cpumask *cpumask, ...@@ -116,15 +116,29 @@ static inline int try_stop_cpus(const struct cpumask *cpumask,
* @fn() runs. * @fn() runs.
* *
* This can be thought of as a very heavy write lock, equivalent to * This can be thought of as a very heavy write lock, equivalent to
* grabbing every spinlock in the kernel. */ * grabbing every spinlock in the kernel.
*
* Protects against CPU hotplug.
*/
int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus); int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
/**
* stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
* @fn: the function to run
* @data: the data ptr for the @fn()
* @cpus: the cpus to run the @fn() on (NULL = any online cpu)
*
* Same as above. Must be called from with in a cpus_read_lock() protected
* region. Avoids nested calls to cpus_read_lock().
*/
int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data, int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
const struct cpumask *cpus); const struct cpumask *cpus);
#else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */ #else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
static inline int stop_machine(cpu_stop_fn_t fn, void *data, static inline int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data,
const struct cpumask *cpus) const struct cpumask *cpus)
{ {
unsigned long flags; unsigned long flags;
int ret; int ret;
...@@ -134,6 +148,12 @@ static inline int stop_machine(cpu_stop_fn_t fn, void *data, ...@@ -134,6 +148,12 @@ static inline int stop_machine(cpu_stop_fn_t fn, void *data,
return ret; return ret;
} }
static inline int stop_machine(cpu_stop_fn_t fn, void *data,
const struct cpumask *cpus)
{
return stop_machine_cpuslocked(fn, data, cpus);
}
static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data, static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
const struct cpumask *cpus) const struct cpumask *cpus)
{ {
......
This diff is collapsed.
...@@ -389,6 +389,7 @@ static atomic_t nr_switch_events __read_mostly; ...@@ -389,6 +389,7 @@ static atomic_t nr_switch_events __read_mostly;
static LIST_HEAD(pmus); static LIST_HEAD(pmus);
static DEFINE_MUTEX(pmus_lock); static DEFINE_MUTEX(pmus_lock);
static struct srcu_struct pmus_srcu; static struct srcu_struct pmus_srcu;
static cpumask_var_t perf_online_mask;
/* /*
* perf event paranoia level: * perf event paranoia level:
...@@ -3807,14 +3808,6 @@ find_get_context(struct pmu *pmu, struct task_struct *task, ...@@ -3807,14 +3808,6 @@ find_get_context(struct pmu *pmu, struct task_struct *task,
if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN)) if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
return ERR_PTR(-EACCES); return ERR_PTR(-EACCES);
/*
* We could be clever and allow to attach a event to an
* offline CPU and activate it when the CPU comes up, but
* that's for later.
*/
if (!cpu_online(cpu))
return ERR_PTR(-ENODEV);
cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
ctx = &cpuctx->ctx; ctx = &cpuctx->ctx;
get_ctx(ctx); get_ctx(ctx);
...@@ -7723,7 +7716,8 @@ static int swevent_hlist_get_cpu(int cpu) ...@@ -7723,7 +7716,8 @@ static int swevent_hlist_get_cpu(int cpu)
int err = 0; int err = 0;
mutex_lock(&swhash->hlist_mutex); mutex_lock(&swhash->hlist_mutex);
if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) { if (!swevent_hlist_deref(swhash) &&
cpumask_test_cpu(cpu, perf_online_mask)) {
struct swevent_hlist *hlist; struct swevent_hlist *hlist;
hlist = kzalloc(sizeof(*hlist), GFP_KERNEL); hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
...@@ -7744,7 +7738,7 @@ static int swevent_hlist_get(void) ...@@ -7744,7 +7738,7 @@ static int swevent_hlist_get(void)
{ {
int err, cpu, failed_cpu; int err, cpu, failed_cpu;
get_online_cpus(); mutex_lock(&pmus_lock);
for_each_possible_cpu(cpu) { for_each_possible_cpu(cpu) {
err = swevent_hlist_get_cpu(cpu); err = swevent_hlist_get_cpu(cpu);
if (err) { if (err) {
...@@ -7752,8 +7746,7 @@ static int swevent_hlist_get(void) ...@@ -7752,8 +7746,7 @@ static int swevent_hlist_get(void)
goto fail; goto fail;
} }
} }
put_online_cpus(); mutex_unlock(&pmus_lock);
return 0; return 0;
fail: fail:
for_each_possible_cpu(cpu) { for_each_possible_cpu(cpu) {
...@@ -7761,8 +7754,7 @@ static int swevent_hlist_get(void) ...@@ -7761,8 +7754,7 @@ static int swevent_hlist_get(void)
break; break;
swevent_hlist_put_cpu(cpu); swevent_hlist_put_cpu(cpu);
} }
mutex_unlock(&pmus_lock);
put_online_cpus();
return err; return err;
} }
...@@ -8940,7 +8932,7 @@ perf_event_mux_interval_ms_store(struct device *dev, ...@@ -8940,7 +8932,7 @@ perf_event_mux_interval_ms_store(struct device *dev,
pmu->hrtimer_interval_ms = timer; pmu->hrtimer_interval_ms = timer;
/* update all cpuctx for this PMU */ /* update all cpuctx for this PMU */
get_online_cpus(); cpus_read_lock();
for_each_online_cpu(cpu) { for_each_online_cpu(cpu) {
struct perf_cpu_context *cpuctx; struct perf_cpu_context *cpuctx;
cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
...@@ -8949,7 +8941,7 @@ perf_event_mux_interval_ms_store(struct device *dev, ...@@ -8949,7 +8941,7 @@ perf_event_mux_interval_ms_store(struct device *dev,
cpu_function_call(cpu, cpu_function_call(cpu,
(remote_function_f)perf_mux_hrtimer_restart, cpuctx); (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
} }
put_online_cpus(); cpus_read_unlock();
mutex_unlock(&mux_interval_mutex); mutex_unlock(&mux_interval_mutex);
return count; return count;
...@@ -9079,6 +9071,7 @@ int perf_pmu_register(struct pmu *pmu, const char *name, int type) ...@@ -9079,6 +9071,7 @@ int perf_pmu_register(struct pmu *pmu, const char *name, int type)
lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex); lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock); lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
cpuctx->ctx.pmu = pmu; cpuctx->ctx.pmu = pmu;
cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
__perf_mux_hrtimer_init(cpuctx, cpu); __perf_mux_hrtimer_init(cpuctx, cpu);
} }
...@@ -9903,12 +9896,10 @@ SYSCALL_DEFINE5(perf_event_open, ...@@ -9903,12 +9896,10 @@ SYSCALL_DEFINE5(perf_event_open,
goto err_task; goto err_task;
} }
get_online_cpus();
if (task) { if (task) {
err = mutex_lock_interruptible(&task->signal->cred_guard_mutex); err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
if (err) if (err)
goto err_cpus; goto err_task;
/* /*
* Reuse ptrace permission checks for now. * Reuse ptrace permission checks for now.
...@@ -10094,6 +10085,23 @@ SYSCALL_DEFINE5(perf_event_open, ...@@ -10094,6 +10085,23 @@ SYSCALL_DEFINE5(perf_event_open,
goto err_locked; goto err_locked;
} }
if (!task) {
/*
* Check if the @cpu we're creating an event for is online.
*
* We use the perf_cpu_context::ctx::mutex to serialize against
* the hotplug notifiers. See perf_event_{init,exit}_cpu().
*/
struct perf_cpu_context *cpuctx =
container_of(ctx, struct perf_cpu_context, ctx);
if (!cpuctx->online) {
err = -ENODEV;
goto err_locked;
}
}
/* /*
* Must be under the same ctx::mutex as perf_install_in_context(), * Must be under the same ctx::mutex as perf_install_in_context(),
* because we need to serialize with concurrent event creation. * because we need to serialize with concurrent event creation.
...@@ -10183,8 +10191,6 @@ SYSCALL_DEFINE5(perf_event_open, ...@@ -10183,8 +10191,6 @@ SYSCALL_DEFINE5(perf_event_open,
put_task_struct(task); put_task_struct(task);
} }
put_online_cpus();
mutex_lock(&current->perf_event_mutex); mutex_lock(&current->perf_event_mutex);
list_add_tail(&event->owner_entry, &current->perf_event_list); list_add_tail(&event->owner_entry, &current->perf_event_list);
mutex_unlock(&current->perf_event_mutex); mutex_unlock(&current->perf_event_mutex);
...@@ -10218,8 +10224,6 @@ SYSCALL_DEFINE5(perf_event_open, ...@@ -10218,8 +10224,6 @@ SYSCALL_DEFINE5(perf_event_open,
err_cred: err_cred:
if (task) if (task)
mutex_unlock(&task->signal->cred_guard_mutex); mutex_unlock(&task->signal->cred_guard_mutex);
err_cpus:
put_online_cpus();
err_task: err_task:
if (task) if (task)
put_task_struct(task); put_task_struct(task);
...@@ -10274,6 +10278,21 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, ...@@ -10274,6 +10278,21 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
goto err_unlock; goto err_unlock;
} }
if (!task) {
/*
* Check if the @cpu we're creating an event for is online.
*
* We use the perf_cpu_context::ctx::mutex to serialize against
* the hotplug notifiers. See perf_event_{init,exit}_cpu().
*/
struct perf_cpu_context *cpuctx =
container_of(ctx, struct perf_cpu_context, ctx);
if (!cpuctx->online) {
err = -ENODEV;
goto err_unlock;
}
}
if (!exclusive_event_installable(event, ctx)) { if (!exclusive_event_installable(event, ctx)) {
err = -EBUSY; err = -EBUSY;
goto err_unlock; goto err_unlock;
...@@ -10941,6 +10960,8 @@ static void __init perf_event_init_all_cpus(void) ...@@ -10941,6 +10960,8 @@ static void __init perf_event_init_all_cpus(void)
struct swevent_htable *swhash; struct swevent_htable *swhash;
int cpu; int cpu;
zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
for_each_possible_cpu(cpu) { for_each_possible_cpu(cpu) {
swhash = &per_cpu(swevent_htable, cpu); swhash = &per_cpu(swevent_htable, cpu);
mutex_init(&swhash->hlist_mutex); mutex_init(&swhash->hlist_mutex);
...@@ -10956,7 +10977,7 @@ static void __init perf_event_init_all_cpus(void) ...@@ -10956,7 +10977,7 @@ static void __init perf_event_init_all_cpus(void)
} }
} }
int perf_event_init_cpu(unsigned int cpu) void perf_swevent_init_cpu(unsigned int cpu)
{ {
struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
...@@ -10969,7 +10990,6 @@ int perf_event_init_cpu(unsigned int cpu) ...@@ -10969,7 +10990,6 @@ int perf_event_init_cpu(unsigned int cpu)
rcu_assign_pointer(swhash->swevent_hlist, hlist); rcu_assign_pointer(swhash->swevent_hlist, hlist);
} }
mutex_unlock(&swhash->hlist_mutex); mutex_unlock(&swhash->hlist_mutex);
return 0;
} }
#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
...@@ -10987,19 +11007,22 @@ static void __perf_event_exit_context(void *__info) ...@@ -10987,19 +11007,22 @@ static void __perf_event_exit_context(void *__info)
static void perf_event_exit_cpu_context(int cpu) static void perf_event_exit_cpu_context(int cpu)
{ {
struct perf_cpu_context *cpuctx;
struct perf_event_context *ctx; struct perf_event_context *ctx;
struct pmu *pmu; struct pmu *pmu;
int idx;
idx = srcu_read_lock(&pmus_srcu); mutex_lock(&pmus_lock);
list_for_each_entry_rcu(pmu, &pmus, entry) { list_for_each_entry(pmu, &pmus, entry) {
ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx; cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
ctx = &cpuctx->ctx;
mutex_lock(&ctx->mutex); mutex_lock(&ctx->mutex);
smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1); smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
cpuctx->online = 0;
mutex_unlock(&ctx->mutex); mutex_unlock(&ctx->mutex);
} }
srcu_read_unlock(&pmus_srcu, idx); cpumask_clear_cpu(cpu, perf_online_mask);
mutex_unlock(&pmus_lock);
} }
#else #else
...@@ -11007,6 +11030,29 @@ static void perf_event_exit_cpu_context(int cpu) { } ...@@ -11007,6 +11030,29 @@ static void perf_event_exit_cpu_context(int cpu) { }
#endif #endif
int perf_event_init_cpu(unsigned int cpu)
{
struct perf_cpu_context *cpuctx;
struct perf_event_context *ctx;
struct pmu *pmu;
perf_swevent_init_cpu(cpu);
mutex_lock(&pmus_lock);
cpumask_set_cpu(cpu, perf_online_mask);
list_for_each_entry(pmu, &pmus, entry) {
cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
ctx = &cpuctx->ctx;
mutex_lock(&ctx->mutex);
cpuctx->online = 1;
mutex_unlock(&ctx->mutex);
}
mutex_unlock(&pmus_lock);
return 0;
}
int perf_event_exit_cpu(unsigned int cpu) int perf_event_exit_cpu(unsigned int cpu)
{ {
perf_event_exit_cpu_context(cpu); perf_event_exit_cpu_context(cpu);
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <linux/static_key.h> #include <linux/static_key.h>
#include <linux/jump_label_ratelimit.h> #include <linux/jump_label_ratelimit.h>
#include <linux/bug.h> #include <linux/bug.h>
#include <linux/cpu.h>
#ifdef HAVE_JUMP_LABEL #ifdef HAVE_JUMP_LABEL
...@@ -124,6 +125,7 @@ void static_key_slow_inc(struct static_key *key) ...@@ -124,6 +125,7 @@ void static_key_slow_inc(struct static_key *key)
return; return;
} }
cpus_read_lock();
jump_label_lock(); jump_label_lock();
if (atomic_read(&key->enabled) == 0) { if (atomic_read(&key->enabled) == 0) {
atomic_set(&key->enabled, -1); atomic_set(&key->enabled, -1);
...@@ -133,12 +135,14 @@ void static_key_slow_inc(struct static_key *key) ...@@ -133,12 +135,14 @@ void static_key_slow_inc(struct static_key *key)
atomic_inc(&key->enabled); atomic_inc(&key->enabled);
} }
jump_label_unlock(); jump_label_unlock();
cpus_read_unlock();
} }
EXPORT_SYMBOL_GPL(static_key_slow_inc); EXPORT_SYMBOL_GPL(static_key_slow_inc);
static void __static_key_slow_dec(struct static_key *key, static void __static_key_slow_dec(struct static_key *key,
unsigned long rate_limit, struct delayed_work *work) unsigned long rate_limit, struct delayed_work *work)
{ {
cpus_read_lock();
/* /*
* The negative count check is valid even when a negative * The negative count check is valid even when a negative
* key->enabled is in use by static_key_slow_inc(); a * key->enabled is in use by static_key_slow_inc(); a
...@@ -149,6 +153,7 @@ static void __static_key_slow_dec(struct static_key *key, ...@@ -149,6 +153,7 @@ static void __static_key_slow_dec(struct static_key *key,
if (!atomic_dec_and_mutex_lock(&key->enabled, &jump_label_mutex)) { if (!atomic_dec_and_mutex_lock(&key->enabled, &jump_label_mutex)) {
WARN(atomic_read(&key->enabled) < 0, WARN(atomic_read(&key->enabled) < 0,
"jump label: negative count!\n"); "jump label: negative count!\n");
cpus_read_unlock();
return; return;
} }
...@@ -159,6 +164,7 @@ static void __static_key_slow_dec(struct static_key *key, ...@@ -159,6 +164,7 @@ static void __static_key_slow_dec(struct static_key *key,
jump_label_update(key); jump_label_update(key);
} }
jump_label_unlock(); jump_label_unlock();
cpus_read_unlock();
} }
static void jump_label_update_timeout(struct work_struct *work) static void jump_label_update_timeout(struct work_struct *work)
...@@ -334,6 +340,7 @@ void __init jump_label_init(void) ...@@ -334,6 +340,7 @@ void __init jump_label_init(void)
if (static_key_initialized) if (static_key_initialized)
return; return;
cpus_read_lock();
jump_label_lock(); jump_label_lock();
jump_label_sort_entries(iter_start, iter_stop); jump_label_sort_entries(iter_start, iter_stop);
...@@ -353,6 +360,7 @@ void __init jump_label_init(void) ...@@ -353,6 +360,7 @@ void __init jump_label_init(void)
} }
static_key_initialized = true; static_key_initialized = true;
jump_label_unlock(); jump_label_unlock();
cpus_read_unlock();
} }
#ifdef CONFIG_MODULES #ifdef CONFIG_MODULES
...@@ -590,28 +598,28 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val, ...@@ -590,28 +598,28 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
struct module *mod = data; struct module *mod = data;
int ret = 0; int ret = 0;
cpus_read_lock();
jump_label_lock();
switch (val) { switch (val) {
case MODULE_STATE_COMING: case MODULE_STATE_COMING:
jump_label_lock();
ret = jump_label_add_module(mod); ret = jump_label_add_module(mod);
if (ret) { if (ret) {
WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n"); WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n");
jump_label_del_module(mod); jump_label_del_module(mod);
} }
jump_label_unlock();
break; break;
case MODULE_STATE_GOING: case MODULE_STATE_GOING:
jump_label_lock();
jump_label_del_module(mod); jump_label_del_module(mod);
jump_label_unlock();
break; break;
case MODULE_STATE_LIVE: case MODULE_STATE_LIVE:
jump_label_lock();
jump_label_invalidate_module_init(mod); jump_label_invalidate_module_init(mod);
jump_label_unlock();
break; break;
} }
jump_label_unlock();
cpus_read_unlock();
return notifier_from_errno(ret); return notifier_from_errno(ret);
} }
......
...@@ -483,11 +483,6 @@ static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer); ...@@ -483,11 +483,6 @@ static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
*/ */
static void do_optimize_kprobes(void) static void do_optimize_kprobes(void)
{ {
/* Optimization never be done when disarmed */
if (kprobes_all_disarmed || !kprobes_allow_optimization ||
list_empty(&optimizing_list))
return;
/* /*
* The optimization/unoptimization refers online_cpus via * The optimization/unoptimization refers online_cpus via
* stop_machine() and cpu-hotplug modifies online_cpus. * stop_machine() and cpu-hotplug modifies online_cpus.
...@@ -495,14 +490,19 @@ static void do_optimize_kprobes(void) ...@@ -495,14 +490,19 @@ static void do_optimize_kprobes(void)
* This combination can cause a deadlock (cpu-hotplug try to lock * This combination can cause a deadlock (cpu-hotplug try to lock
* text_mutex but stop_machine can not be done because online_cpus * text_mutex but stop_machine can not be done because online_cpus
* has been changed) * has been changed)
* To avoid this deadlock, we need to call get_online_cpus() * To avoid this deadlock, caller must have locked cpu hotplug
* for preventing cpu-hotplug outside of text_mutex locking. * for preventing cpu-hotplug outside of text_mutex locking.
*/ */
get_online_cpus(); lockdep_assert_cpus_held();
/* Optimization never be done when disarmed */
if (kprobes_all_disarmed || !kprobes_allow_optimization ||
list_empty(&optimizing_list))
return;
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
arch_optimize_kprobes(&optimizing_list); arch_optimize_kprobes(&optimizing_list);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
/* /*
...@@ -513,12 +513,13 @@ static void do_unoptimize_kprobes(void) ...@@ -513,12 +513,13 @@ static void do_unoptimize_kprobes(void)
{ {
struct optimized_kprobe *op, *tmp; struct optimized_kprobe *op, *tmp;
/* See comment in do_optimize_kprobes() */
lockdep_assert_cpus_held();
/* Unoptimization must be done anytime */ /* Unoptimization must be done anytime */
if (list_empty(&unoptimizing_list)) if (list_empty(&unoptimizing_list))
return; return;
/* Ditto to do_optimize_kprobes */
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list); arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list);
/* Loop free_list for disarming */ /* Loop free_list for disarming */
...@@ -537,7 +538,6 @@ static void do_unoptimize_kprobes(void) ...@@ -537,7 +538,6 @@ static void do_unoptimize_kprobes(void)
list_del_init(&op->list); list_del_init(&op->list);
} }
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
} }
/* Reclaim all kprobes on the free_list */ /* Reclaim all kprobes on the free_list */
...@@ -562,6 +562,7 @@ static void kick_kprobe_optimizer(void) ...@@ -562,6 +562,7 @@ static void kick_kprobe_optimizer(void)
static void kprobe_optimizer(struct work_struct *work) static void kprobe_optimizer(struct work_struct *work)
{ {
mutex_lock(&kprobe_mutex); mutex_lock(&kprobe_mutex);
cpus_read_lock();
/* Lock modules while optimizing kprobes */ /* Lock modules while optimizing kprobes */
mutex_lock(&module_mutex); mutex_lock(&module_mutex);
...@@ -587,6 +588,7 @@ static void kprobe_optimizer(struct work_struct *work) ...@@ -587,6 +588,7 @@ static void kprobe_optimizer(struct work_struct *work)
do_free_cleaned_kprobes(); do_free_cleaned_kprobes();
mutex_unlock(&module_mutex); mutex_unlock(&module_mutex);
cpus_read_unlock();
mutex_unlock(&kprobe_mutex); mutex_unlock(&kprobe_mutex);
/* Step 5: Kick optimizer again if needed */ /* Step 5: Kick optimizer again if needed */
...@@ -650,9 +652,8 @@ static void optimize_kprobe(struct kprobe *p) ...@@ -650,9 +652,8 @@ static void optimize_kprobe(struct kprobe *p)
/* Short cut to direct unoptimizing */ /* Short cut to direct unoptimizing */
static void force_unoptimize_kprobe(struct optimized_kprobe *op) static void force_unoptimize_kprobe(struct optimized_kprobe *op)
{ {
get_online_cpus(); lockdep_assert_cpus_held();
arch_unoptimize_kprobe(op); arch_unoptimize_kprobe(op);
put_online_cpus();
if (kprobe_disabled(&op->kp)) if (kprobe_disabled(&op->kp))
arch_disarm_kprobe(&op->kp); arch_disarm_kprobe(&op->kp);
} }
...@@ -791,6 +792,7 @@ static void try_to_optimize_kprobe(struct kprobe *p) ...@@ -791,6 +792,7 @@ static void try_to_optimize_kprobe(struct kprobe *p)
return; return;
/* For preparing optimization, jump_label_text_reserved() is called */ /* For preparing optimization, jump_label_text_reserved() is called */
cpus_read_lock();
jump_label_lock(); jump_label_lock();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
...@@ -812,6 +814,7 @@ static void try_to_optimize_kprobe(struct kprobe *p) ...@@ -812,6 +814,7 @@ static void try_to_optimize_kprobe(struct kprobe *p)
out: out:
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
jump_label_unlock(); jump_label_unlock();
cpus_read_unlock();
} }
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
...@@ -826,6 +829,7 @@ static void optimize_all_kprobes(void) ...@@ -826,6 +829,7 @@ static void optimize_all_kprobes(void)
if (kprobes_allow_optimization) if (kprobes_allow_optimization)
goto out; goto out;
cpus_read_lock();
kprobes_allow_optimization = true; kprobes_allow_optimization = true;
for (i = 0; i < KPROBE_TABLE_SIZE; i++) { for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
head = &kprobe_table[i]; head = &kprobe_table[i];
...@@ -833,6 +837,7 @@ static void optimize_all_kprobes(void) ...@@ -833,6 +837,7 @@ static void optimize_all_kprobes(void)
if (!kprobe_disabled(p)) if (!kprobe_disabled(p))
optimize_kprobe(p); optimize_kprobe(p);
} }
cpus_read_unlock();
printk(KERN_INFO "Kprobes globally optimized\n"); printk(KERN_INFO "Kprobes globally optimized\n");
out: out:
mutex_unlock(&kprobe_mutex); mutex_unlock(&kprobe_mutex);
...@@ -851,6 +856,7 @@ static void unoptimize_all_kprobes(void) ...@@ -851,6 +856,7 @@ static void unoptimize_all_kprobes(void)
return; return;
} }
cpus_read_lock();
kprobes_allow_optimization = false; kprobes_allow_optimization = false;
for (i = 0; i < KPROBE_TABLE_SIZE; i++) { for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
head = &kprobe_table[i]; head = &kprobe_table[i];
...@@ -859,6 +865,7 @@ static void unoptimize_all_kprobes(void) ...@@ -859,6 +865,7 @@ static void unoptimize_all_kprobes(void)
unoptimize_kprobe(p, false); unoptimize_kprobe(p, false);
} }
} }
cpus_read_unlock();
mutex_unlock(&kprobe_mutex); mutex_unlock(&kprobe_mutex);
/* Wait for unoptimizing completion */ /* Wait for unoptimizing completion */
...@@ -1010,14 +1017,11 @@ static void arm_kprobe(struct kprobe *kp) ...@@ -1010,14 +1017,11 @@ static void arm_kprobe(struct kprobe *kp)
arm_kprobe_ftrace(kp); arm_kprobe_ftrace(kp);
return; return;
} }
/* cpus_read_lock();
* Here, since __arm_kprobe() doesn't use stop_machine(),
* this doesn't cause deadlock on text_mutex. So, we don't
* need get_online_cpus().
*/
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
__arm_kprobe(kp); __arm_kprobe(kp);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
cpus_read_unlock();
} }
/* Disarm a kprobe with text_mutex */ /* Disarm a kprobe with text_mutex */
...@@ -1027,10 +1031,12 @@ static void disarm_kprobe(struct kprobe *kp, bool reopt) ...@@ -1027,10 +1031,12 @@ static void disarm_kprobe(struct kprobe *kp, bool reopt)
disarm_kprobe_ftrace(kp); disarm_kprobe_ftrace(kp);
return; return;
} }
/* Ditto */
cpus_read_lock();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
__disarm_kprobe(kp, reopt); __disarm_kprobe(kp, reopt);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
cpus_read_unlock();
} }
/* /*
...@@ -1298,13 +1304,10 @@ static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p) ...@@ -1298,13 +1304,10 @@ static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p)
int ret = 0; int ret = 0;
struct kprobe *ap = orig_p; struct kprobe *ap = orig_p;
cpus_read_lock();
/* For preparing optimization, jump_label_text_reserved() is called */ /* For preparing optimization, jump_label_text_reserved() is called */
jump_label_lock(); jump_label_lock();
/*
* Get online CPUs to avoid text_mutex deadlock.with stop machine,
* which is invoked by unoptimize_kprobe() in add_new_kprobe()
*/
get_online_cpus();
mutex_lock(&text_mutex); mutex_lock(&text_mutex);
if (!kprobe_aggrprobe(orig_p)) { if (!kprobe_aggrprobe(orig_p)) {
...@@ -1352,8 +1355,8 @@ static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p) ...@@ -1352,8 +1355,8 @@ static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p)
out: out:
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
put_online_cpus();
jump_label_unlock(); jump_label_unlock();
cpus_read_unlock();
if (ret == 0 && kprobe_disabled(ap) && !kprobe_disabled(p)) { if (ret == 0 && kprobe_disabled(ap) && !kprobe_disabled(p)) {
ap->flags &= ~KPROBE_FLAG_DISABLED; ap->flags &= ~KPROBE_FLAG_DISABLED;
...@@ -1555,9 +1558,12 @@ int register_kprobe(struct kprobe *p) ...@@ -1555,9 +1558,12 @@ int register_kprobe(struct kprobe *p)
goto out; goto out;
} }
mutex_lock(&text_mutex); /* Avoiding text modification */ cpus_read_lock();
/* Prevent text modification */
mutex_lock(&text_mutex);
ret = prepare_kprobe(p); ret = prepare_kprobe(p);
mutex_unlock(&text_mutex); mutex_unlock(&text_mutex);
cpus_read_unlock();
if (ret) if (ret)
goto out; goto out;
...@@ -1570,7 +1576,6 @@ int register_kprobe(struct kprobe *p) ...@@ -1570,7 +1576,6 @@ int register_kprobe(struct kprobe *p)
/* Try to optimize kprobe */ /* Try to optimize kprobe */
try_to_optimize_kprobe(p); try_to_optimize_kprobe(p);
out: out:
mutex_unlock(&kprobe_mutex); mutex_unlock(&kprobe_mutex);
......
...@@ -933,19 +933,6 @@ static struct kobj_type padata_attr_type = { ...@@ -933,19 +933,6 @@ static struct kobj_type padata_attr_type = {
.release = padata_sysfs_release, .release = padata_sysfs_release,
}; };
/**
* padata_alloc_possible - Allocate and initialize padata instance.
* Use the cpu_possible_mask for serial and
* parallel workers.
*
* @wq: workqueue to use for the allocated padata instance
*/
struct padata_instance *padata_alloc_possible(struct workqueue_struct *wq)
{
return padata_alloc(wq, cpu_possible_mask, cpu_possible_mask);
}
EXPORT_SYMBOL(padata_alloc_possible);
/** /**
* padata_alloc - allocate and initialize a padata instance and specify * padata_alloc - allocate and initialize a padata instance and specify
* cpumasks for serial and parallel workers. * cpumasks for serial and parallel workers.
...@@ -953,10 +940,12 @@ EXPORT_SYMBOL(padata_alloc_possible); ...@@ -953,10 +940,12 @@ EXPORT_SYMBOL(padata_alloc_possible);
* @wq: workqueue to use for the allocated padata instance * @wq: workqueue to use for the allocated padata instance
* @pcpumask: cpumask that will be used for padata parallelization * @pcpumask: cpumask that will be used for padata parallelization
* @cbcpumask: cpumask that will be used for padata serialization * @cbcpumask: cpumask that will be used for padata serialization
*
* Must be called from a cpus_read_lock() protected region
*/ */
struct padata_instance *padata_alloc(struct workqueue_struct *wq, static struct padata_instance *padata_alloc(struct workqueue_struct *wq,
const struct cpumask *pcpumask, const struct cpumask *pcpumask,
const struct cpumask *cbcpumask) const struct cpumask *cbcpumask)
{ {
struct padata_instance *pinst; struct padata_instance *pinst;
struct parallel_data *pd = NULL; struct parallel_data *pd = NULL;
...@@ -965,7 +954,6 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq, ...@@ -965,7 +954,6 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq,
if (!pinst) if (!pinst)
goto err; goto err;
get_online_cpus();
if (!alloc_cpumask_var(&pinst->cpumask.pcpu, GFP_KERNEL)) if (!alloc_cpumask_var(&pinst->cpumask.pcpu, GFP_KERNEL))
goto err_free_inst; goto err_free_inst;
if (!alloc_cpumask_var(&pinst->cpumask.cbcpu, GFP_KERNEL)) { if (!alloc_cpumask_var(&pinst->cpumask.cbcpu, GFP_KERNEL)) {
...@@ -989,14 +977,12 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq, ...@@ -989,14 +977,12 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq,
pinst->flags = 0; pinst->flags = 0;
put_online_cpus();
BLOCKING_INIT_NOTIFIER_HEAD(&pinst->cpumask_change_notifier); BLOCKING_INIT_NOTIFIER_HEAD(&pinst->cpumask_change_notifier);
kobject_init(&pinst->kobj, &padata_attr_type); kobject_init(&pinst->kobj, &padata_attr_type);
mutex_init(&pinst->lock); mutex_init(&pinst->lock);
#ifdef CONFIG_HOTPLUG_CPU #ifdef CONFIG_HOTPLUG_CPU
cpuhp_state_add_instance_nocalls(hp_online, &pinst->node); cpuhp_state_add_instance_nocalls_cpuslocked(hp_online, &pinst->node);
#endif #endif
return pinst; return pinst;
...@@ -1005,11 +991,26 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq, ...@@ -1005,11 +991,26 @@ struct padata_instance *padata_alloc(struct workqueue_struct *wq,
free_cpumask_var(pinst->cpumask.cbcpu); free_cpumask_var(pinst->cpumask.cbcpu);
err_free_inst: err_free_inst:
kfree(pinst); kfree(pinst);
put_online_cpus();
err: err:
return NULL; return NULL;
} }
/**
* padata_alloc_possible - Allocate and initialize padata instance.
* Use the cpu_possible_mask for serial and
* parallel workers.
*
* @wq: workqueue to use for the allocated padata instance
*
* Must be called from a cpus_read_lock() protected region
*/
struct padata_instance *padata_alloc_possible(struct workqueue_struct *wq)
{
lockdep_assert_cpus_held();
return padata_alloc(wq, cpu_possible_mask, cpu_possible_mask);
}
EXPORT_SYMBOL(padata_alloc_possible);
/** /**
* padata_free - free a padata instance * padata_free - free a padata instance
* *
......
...@@ -552,7 +552,8 @@ static int __init cpu_stop_init(void) ...@@ -552,7 +552,8 @@ static int __init cpu_stop_init(void)
} }
early_initcall(cpu_stop_init); early_initcall(cpu_stop_init);
static int __stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus) int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data,
const struct cpumask *cpus)
{ {
struct multi_stop_data msdata = { struct multi_stop_data msdata = {
.fn = fn, .fn = fn,
...@@ -561,6 +562,8 @@ static int __stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cp ...@@ -561,6 +562,8 @@ static int __stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cp
.active_cpus = cpus, .active_cpus = cpus,
}; };
lockdep_assert_cpus_held();
if (!stop_machine_initialized) { if (!stop_machine_initialized) {
/* /*
* Handle the case where stop_machine() is called * Handle the case where stop_machine() is called
...@@ -590,9 +593,9 @@ int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus) ...@@ -590,9 +593,9 @@ int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus)
int ret; int ret;
/* No CPUs can come up or down during this. */ /* No CPUs can come up or down during this. */
get_online_cpus(); cpus_read_lock();
ret = __stop_machine(fn, data, cpus); ret = stop_machine_cpuslocked(fn, data, cpus);
put_online_cpus(); cpus_read_unlock();
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(stop_machine); EXPORT_SYMBOL_GPL(stop_machine);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment