|
|
| version 1.25, 2004/04/13 05:23:13 | version 1.26, 2004/04/22 04:35:45 |
|---|---|
| Line 226 tcp_reass(tp, th, tlenp, m) | Line 226 tcp_reass(tp, th, tlenp, m) |
| return (0); | return (0); |
| } | } |
| /* Allocate a new queue entry. If we can't, just drop the pkt. XXX */ | /* Allocate a new queue entry. */ |
| MALLOC(te, struct tseg_qent *, sizeof(struct tseg_qent), M_TSEGQ, | MALLOC(te, struct tseg_qent *, sizeof(struct tseg_qent), M_TSEGQ, |
| M_NOWAIT); | M_INTWAIT | M_NULLOK); |
| if (te == NULL) { | if (te == NULL) { |
| tcpstat.tcps_rcvmemdrop++; | tcpstat.tcps_rcvmemdrop++; |
| m_freem(m); | m_freem(m); |