* bremfreef: * * Force an immediate removal from a free list. Used only in nfs when * it abuses the b_freelist pointer. */
| 1835 | * it abuses the b_freelist pointer. |
| 1836 | */ |
| 1837 | void |
| 1838 | bremfreef(struct buf *bp) |
| 1839 | { |
| 1840 | struct bufqueue *bq; |
| 1841 | |
| 1842 | bq = bufqueue_acquire(bp); |
| 1843 | bq_remove(bq, bp); |
| 1844 | BQ_UNLOCK(bq); |
| 1845 | } |
| 1846 | |
| 1847 | static void |
| 1848 | bq_init(struct bufqueue *bq, int qindex, int subqueue, const char *lockname) |
no test coverage detected