| 92 | struct kni_ratelimit kni_rate_limt = {0, 0, 0}; |
| 93 | |
| 94 | static void |
| 95 | set_bitmap(uint16_t port, unsigned char *bitmap) |
| 96 | { |
| 97 | port = htons(port); |
| 98 | unsigned char *p = bitmap + port/8; |
| 99 | *p = set_bit(*p, port % 8); |
| 100 | } |
| 101 | |
| 102 | static int |
| 103 | get_bitmap(uint16_t port, unsigned char *bitmap) |
no test coverage detected