Lines Matching refs:fn
984 #define perf_cpu_notifier(fn) \ argument
986 static struct notifier_block fn##_nb = \
987 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
992 fn(&fn##_nb, (unsigned long)CPU_UP_PREPARE, \
995 fn(&fn##_nb, (unsigned long)CPU_STARTING, \
998 fn(&fn##_nb, (unsigned long)CPU_ONLINE, \
1000 __register_cpu_notifier(&fn##_nb); \
1008 #define __perf_cpu_notifier(fn) \ argument
1010 static struct notifier_block fn##_nb = \
1011 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
1013 __register_cpu_notifier(&fn##_nb); \