Lines Matching defs:fail
66 enum cpuhp_state fail;
83 .fail = CPUHP_INVALID,
163 if (st->fail == state) {
164 st->fail = CPUHP_INVALID;
240 * Rollback must not fail,
270 * The former STARTING/DYING states, ran with IRQs disabled and must not fail.
747 * STARTING/DYING must not fail!
756 * If we fail on a rollback, we're up a creek without no
891 * would be delivered and user space reacting on it would fail to
977 * DYING must not fail!
1268 * STARTING must not fail!
1321 /* Let it fail before we try to bring the cpu up */
1922 * The non AP bound callbacks can fail on bringup. On teardown
1941 * Note: The teardown callbacks for rollback are not allowed to fail!
2134 * allowed to fail currently!
2162 * The teardown callback is currently not allowed to fail. Think
2187 * allowed to fail currently!
2356 int fail, ret;
2358 ret = kstrtoint(buf, 10, &fail);
2363 if (fail < CPUHP_OFFLINE || fail > CPUHP_ONLINE) {
2368 * Cannot fail STARTING/DYING callbacks.
2370 if (cpuhp_is_atomic_state(fail)) {
2375 * Cannot fail anything that doesn't have callbacks.
2378 sp = cpuhp_get_step(fail);
2387 st->fail = fail;
2396 return sprintf(buf, "%d\n", st->fail);
2399 static DEVICE_ATTR(fail, 0644, show_cpuhp_fail, write_cpuhp_fail);