| 113 | } |
| 114 | |
| 115 | static inline void |
| 116 | ipq_drop(struct ipqbucket *bucket, struct ipq *fp) |
| 117 | { |
| 118 | |
| 119 | IPSTAT_ADD(ips_fragdropped, fp->ipq_nfrags); |
| 120 | ipq_free(bucket, fp); |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * By default, limit the number of IP fragments across all reassembly |
no test coverage detected