• Home
  • Raw
  • Download

Lines Matching refs:ops

107 	const struct cpu_operations *ops = get_cpu_ops(cpu);  in boot_secondary()  local
109 if (ops->cpu_boot) in boot_secondary()
110 return ops->cpu_boot(cpu); in boot_secondary()
204 const struct cpu_operations *ops; in secondary_start_kernel() local
233 ops = get_cpu_ops(cpu); in secondary_start_kernel()
234 if (ops->cpu_postboot) in secondary_start_kernel()
235 ops->cpu_postboot(); in secondary_start_kernel()
275 const struct cpu_operations *ops = get_cpu_ops(cpu); in op_cpu_disable() local
281 if (!ops || !ops->cpu_die) in op_cpu_disable()
288 if (ops->cpu_disable) in op_cpu_disable()
289 return ops->cpu_disable(cpu); in op_cpu_disable()
326 const struct cpu_operations *ops = get_cpu_ops(cpu); in op_cpu_kill() local
333 if (!ops->cpu_kill) in op_cpu_kill()
336 return ops->cpu_kill(cpu); in op_cpu_kill()
367 const struct cpu_operations *ops = get_cpu_ops(cpu); in cpu_die() local
381 ops->cpu_die(cpu); in cpu_die()
390 const struct cpu_operations *ops = get_cpu_ops(cpu); in __cpu_try_die() local
392 if (ops && ops->cpu_die) in __cpu_try_die()
393 ops->cpu_die(cpu); in __cpu_try_die()
493 const struct cpu_operations *ops; in smp_cpu_setup() local
498 ops = get_cpu_ops(cpu); in smp_cpu_setup()
499 if (ops->cpu_init(cpu)) in smp_cpu_setup()
723 const struct cpu_operations *ops; in smp_prepare_cpus() local
754 ops = get_cpu_ops(cpu); in smp_prepare_cpus()
755 if (!ops) in smp_prepare_cpus()
758 err = ops->cpu_prepare(cpu); in smp_prepare_cpus()
1090 const struct cpu_operations *ops = get_cpu_ops(any_cpu); in have_cpu_die() local
1092 if (ops && ops->cpu_die) in have_cpu_die()