| 88 | SYSINIT(cluster, SI_SUB_CPU, SI_ORDER_ANY, cluster_init, NULL); |
| 89 | |
| 90 | static void |
| 91 | cluster_init(void *dummy) |
| 92 | { |
| 93 | |
| 94 | cluster_pbuf_zone = pbuf_zsecond_create("clpbuf", nswbuf / 2); |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * Read data to a buf, including read-ahead if we find this to be beneficial. |
nothing calls this directly
no test coverage detected