* Free an sf_buf with attached page. */
| 122 | * Free an sf_buf with attached page. |
| 123 | */ |
| 124 | static void |
| 125 | zbuf_sfbuf_free(struct sf_buf *sf) |
| 126 | { |
| 127 | vm_page_t pp; |
| 128 | |
| 129 | pp = sf_buf_page(sf); |
| 130 | sf_buf_free(sf); |
| 131 | zbuf_page_free(pp); |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Free a zbuf, including its page array, sbufs, and pages. Allow partially |
no test coverage detected