Lines Matching refs:fn
1131 #define perf_cpu_notifier(fn) \ argument
1133 static struct notifier_block fn##_nb = \
1134 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
1139 fn(&fn##_nb, (unsigned long)CPU_UP_PREPARE, \
1142 fn(&fn##_nb, (unsigned long)CPU_STARTING, \
1145 fn(&fn##_nb, (unsigned long)CPU_ONLINE, \
1147 __register_cpu_notifier(&fn##_nb); \
1155 #define __perf_cpu_notifier(fn) \ argument
1157 static struct notifier_block fn##_nb = \
1158 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
1160 __register_cpu_notifier(&fn##_nb); \