| 111 | #define V_rtzone VNET(rtzone) |
| 112 | |
| 113 | void |
| 114 | vnet_rtzone_init() |
| 115 | { |
| 116 | |
| 117 | V_rtzone = uma_zcreate("rtentry", sizeof(struct rtentry), |
| 118 | NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); |
| 119 | } |
| 120 | |
| 121 | #ifdef VIMAGE |
| 122 | void |
no test coverage detected