View | Details | Raw Unified | Return to bug 235684
Collapse All | Expand All

(-)sys/netinet/in_pcb.c (+2 lines)
Lines 1565-1570 in_pcbfree_deferred(epoch_context_t ctx) Link Here
1565
	inp = __containerof(ctx, struct inpcb, inp_epoch_ctx);
1565
	inp = __containerof(ctx, struct inpcb, inp_epoch_ctx);
1566
1566
1567
	INP_WLOCK(inp);
1567
	INP_WLOCK(inp);
1568
	CURVNET_SET(inp->inp_vnet);
1568
#ifdef INET
1569
#ifdef INET
1569
	struct ip_moptions *imo = inp->inp_moptions;
1570
	struct ip_moptions *imo = inp->inp_moptions;
1570
	inp->inp_moptions = NULL;
1571
	inp->inp_moptions = NULL;
Lines 1597-1602 in_pcbfree_deferred(epoch_context_t ctx) Link Here
1597
#ifdef INET
1598
#ifdef INET
1598
	inp_freemoptions(imo);
1599
	inp_freemoptions(imo);
1599
#endif	
1600
#endif	
1601
	CURVNET_RESTORE();
1600
}
1602
}
1601
1603
1602
/*
1604
/*

Return to bug 235684