Project

General

Profile

Actions

Submit #2792

closed

multicast UDP detach

Added by yellowrabbit2010 about 9 years ago. Updated about 9 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Networking
Target version:
-
Start date:
02/24/2015
Due date:
% Done:

100%

Estimated time:

Description

I think line 271 in sys/netinet/udp_usrreq.c is unwanted
if (&curthread->td_msgport != netisr_cpuport(0)) {
/* * This pr_ctloutput msg will be forwarded * to netisr0 to run; we can't do direct * detaching anymore.
*/
inp->inp_flags &= ~INP_DIRECT_DETACH;

because of lines 1648-- Here we can hit "has mcast options" panic if &curthread->td_msgport was netisr_cpuport(0)
if (inp->inp_flags & INP_DIRECT_DETACH) {
/* * Direct detaching is allowed
*/
KASSERT 0,
("in the wildcardhash"));
KASSERT(inp->inp_moptions NULL, ("has mcast options"));
udp_detach2(so);
return;
}

The patch removes 'if' statement, so no more fast detach for multicast udp.


Files

udp-detach.diff (551 Bytes) udp-detach.diff No fast detach in case of multicast udp yellowrabbit2010, 02/24/2015 03:25 AM
Actions #1

Updated by yellowrabbit2010 about 9 years ago

  • Status changed from New to Closed
  • % Done changed from 0 to 100

works now. Thanks sephe :)

Actions

Also available in: Atom PDF