Release a ref on an fp_setting */
| 313 | |
| 314 | /* Release a ref on an fp_setting */ |
| 315 | static inline void |
| 316 | fail_point_setting_release_ref(struct fail_point *fp) |
| 317 | { |
| 318 | |
| 319 | KASSERT(&fp->fp_ref_cnt > 0, ("Attempting to deref w/no refs")); |
| 320 | atomic_subtract_rel_32(&fp->fp_ref_cnt, 1); |
| 321 | } |
| 322 | |
| 323 | /* Append fp entries to fp garbage list */ |
| 324 | static inline void |
no outgoing calls
no test coverage detected