* Put a queue on the active list. This will schedule it for writing. */
| 167 | * Put a queue on the active list. This will schedule it for writing. |
| 168 | */ |
| 169 | static void |
| 170 | ald_activate(struct alq *alq) |
| 171 | { |
| 172 | LIST_INSERT_HEAD(&ald_active, alq, aq_act); |
| 173 | wakeup(&ald_active); |
| 174 | } |
| 175 | |
| 176 | static void |
| 177 | ald_deactivate(struct alq *alq) |
no test coverage detected