Append fp entries to fp garbage list */
| 322 | |
| 323 | /* Append fp entries to fp garbage list */ |
| 324 | static inline void |
| 325 | fail_point_setting_garbage_append(struct fail_point_setting *fp_setting) |
| 326 | { |
| 327 | |
| 328 | mtx_lock_spin(&mtx_garbage_list); |
| 329 | STAILQ_INSERT_TAIL(&fp_setting_garbage, fp_setting, |
| 330 | fs_garbage_link); |
| 331 | mtx_unlock_spin(&mtx_garbage_list); |
| 332 | } |
| 333 | |
| 334 | /* Swap fp's entries with fp_setting_new */ |
| 335 | static struct fail_point_setting * |
no outgoing calls
no test coverage detected