| 105 | static struct ipq * ipq_reuse(int); |
| 106 | |
| 107 | static inline void |
| 108 | ipq_timeout(struct ipqbucket *bucket, struct ipq *fp) |
| 109 | { |
| 110 | |
| 111 | IPSTAT_ADD(ips_fragtimeout, fp->ipq_nfrags); |
| 112 | ipq_free(bucket, fp); |
| 113 | } |
| 114 | |
| 115 | static inline void |
| 116 | ipq_drop(struct ipqbucket *bucket, struct ipq *fp) |
no test coverage detected