| 298 | } |
| 299 | |
| 300 | static inline int |
| 301 | ilog2(long x) |
| 302 | { |
| 303 | |
| 304 | KASSERT(x > 0 && powerof2(x), ("%s: invalid arg %ld", __func__, x)); |
| 305 | |
| 306 | return (flsl(x) - 1); |
| 307 | } |
| 308 | |
| 309 | static int |
| 310 | smmu_init_queue(struct smmu_softc *sc, struct smmu_queue *q, |
no test coverage detected