| 333 | } |
| 334 | |
| 335 | static __inline int |
| 336 | atomic_fcmpset_acq_long(volatile u_long *_ptr, u_long *_old, u_long _new) |
| 337 | { |
| 338 | int ret; |
| 339 | |
| 340 | ATOMIC_FCMPSET_CODE(ret, u_long, ""); |
| 341 | dmb(); |
| 342 | return (ret); |
| 343 | } |
| 344 | |
| 345 | static __inline int |
| 346 | atomic_fcmpset_rel_long(volatile u_long *_ptr, u_long *_old, u_long _new) |
no test coverage detected