| 164 | } |
| 165 | |
| 166 | static inline int |
| 167 | rms_owned_any(struct rmslock *rms) |
| 168 | { |
| 169 | |
| 170 | if (rms_wowned(rms)) |
| 171 | return (1); |
| 172 | |
| 173 | return (rms_rowned(rms)); |
| 174 | } |
| 175 | #endif |
| 176 | |
| 177 | #endif /* _KERNEL */ |
nothing calls this directly
no test coverage detected