View | Details | Raw Unified | Return to bug 255878 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/netpfil/ipfw/dn_aqm_pie.c (-1 / +1 lines)
Lines 543-549 aqm_pie_enqueue(struct dn_queue *q, struct mbuf* m) Link Here
543
				sizeof(aqm_time_t), M_NOWAIT);
543
				sizeof(aqm_time_t), M_NOWAIT);
544
		if (mtag == NULL) {
544
		if (mtag == NULL) {
545
			m_freem(m); 
545
			m_freem(m); 
546
			t = DROP;
546
			return 1;
547
		}
547
		}
548
		*(aqm_time_t *)(mtag + 1) = AQM_UNOW;
548
		*(aqm_time_t *)(mtag + 1) = AQM_UNOW;
549
		m_tag_prepend(m, mtag);
549
		m_tag_prepend(m, mtag);

Return to bug 255878