| 140 | |
| 141 | #ifndef FSTACK |
| 142 | static int |
| 143 | netisr_protoispresent(u_int proto) |
| 144 | { |
| 145 | u_int i; |
| 146 | |
| 147 | for (i = 0; i < proto_array_len; i++) { |
| 148 | if (proto_array[i].snp_proto == proto) |
| 149 | return (1); |
| 150 | } |
| 151 | return (0); |
| 152 | } |
| 153 | |
| 154 | static void |
| 155 | netisr_load_kvm_config(void) |
no outgoing calls
no test coverage detected