search for: discard_fq

Displaying 1 result from an estimated 1 matches for "discard_fq".

Did you mean: discard_
2014 Nov 11
0
[Bug 987] New: nf_conntrack_reasm.c : Silent discard of overlapping fragments is not silent
...ntly dropped with all the others from the fragment queue. Possible explanation: The function nf_ct_frag6_queue contains checks for overlapping fragments: /* Check for overlap with preceding fragment. */ if (prev && (NFCT_FRAG6_CB(prev)->offset + prev->len) > offset) goto discard_fq; /* Look for overlap with succeeding segment. */ if (next && NFCT_FRAG6_CB(next)->offset < end) goto discard_fq; This causes the destruction of the fragment queue and returns an error code: discard_fq: inet_frag_kill(&fq->q, &nf_frags); err: return -1; } The...