When allocating the IPv6 header to stick in front of raw packet being
sent via a raw IPv6 socket, use M_DONTWAIT not M_TRYWAIT, as we're holding the raw pcb mutex. Reported, tested by: kuriyama
This commit is contained in:
parent
874318f896
commit
411d86faa7
@ -377,7 +377,11 @@ rip6_output(m, va_alist)
|
||||
code = icmp6->icmp6_code;
|
||||
}
|
||||
|
||||
M_PREPEND(m, sizeof(*ip6), M_TRYWAIT);
|
||||
M_PREPEND(m, sizeof(*ip6), M_DONTWAIT);
|
||||
if (m == NULL) {
|
||||
error = ENOBUFS;
|
||||
goto bad;
|
||||
}
|
||||
ip6 = mtod(m, struct ip6_hdr *);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user