[Bug 286179] Passing a vlan interface to a vnet jail result in a stuck dying state
| Newsgroups | gmane.os.freebsd.devel.net |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=286179 --- Comment #14 from Peter Ganzhorn <[email protected]> --- Created attachment 269854 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=269854&action=edit Fix missing CURVNET_RESTORE() in iflib_rxeof() iflib_rxeof() calls CURVNET_SET_QUIET but will skip the required call to CURVNET_RESTORE() before returning if the call to ctx->isc_rxd_pkt_get() returns an error by jumping over it with a goto statement. CURVNET_RESTORE() needs to be called explicitely if ctx->isc_rxd_pkt_get() returns an error before going to the end of the function. -- You are receiving this mail because: You are on the CC list for the bug.