| 345 | } |
| 346 | |
| 347 | static inline void |
| 348 | fail_point_eval_swap_out(struct fail_point *fp, |
| 349 | struct fail_point_setting *fp_setting) |
| 350 | { |
| 351 | |
| 352 | /* We may have already been swapped out and replaced; ignore. */ |
| 353 | if (fp->fp_setting == fp_setting) |
| 354 | fail_point_swap_settings(fp, NULL); |
| 355 | } |
| 356 | |
| 357 | /* Free up any zero-ref entries in the garbage queue */ |
| 358 | static void |
no test coverage detected