Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F142739665
D33268.id100629.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D33268.id100629.diff
View Options
Index: sys/net/netisr.c
===================================================================
--- sys/net/netisr.c
+++ sys/net/netisr.c
@@ -700,9 +700,11 @@
static void
netisr_drain_proto_vnet(struct vnet *vnet, u_int proto)
{
+ struct epoch_tracker et;
struct netisr_workstream *nwsp;
struct netisr_work *npwp;
struct mbuf *m, *mp, *n, *ne;
+ struct ifnet *ifp;
u_int i;
KASSERT(vnet != NULL, ("%s: vnet is NULL", __func__));
@@ -723,11 +725,14 @@
*/
m = npwp->nw_head;
n = ne = NULL;
+ NET_EPOCH_ENTER(et);
while (m != NULL) {
mp = m;
m = m->m_nextpkt;
mp->m_nextpkt = NULL;
- if (mp->m_pkthdr.rcvif->if_vnet != vnet) {
+ if ((ifp = ifnet_byindexgen(mp->m_pkthdr.rcvidx,
+ mp->m_pkthdr.rcvgen)) != NULL &&
+ ifp->if_vnet != vnet) {
if (n == NULL) {
n = ne = mp;
} else {
@@ -736,10 +741,12 @@
}
continue;
}
- /* This is a packet in the selected vnet. Free it. */
+ /* This is a packet in the selected vnet, or belongs
+ to destroyed interface. Free it. */
npwp->nw_len--;
m_freem(mp);
}
+ NET_EPOCH_EXIT(et);
npwp->nw_head = n;
npwp->nw_tail = ne;
NWS_UNLOCK(nwsp);
@@ -913,8 +920,10 @@
if (local_npw.nw_head == NULL)
local_npw.nw_tail = NULL;
local_npw.nw_len--;
- VNET_ASSERT(m->m_pkthdr.rcvif != NULL,
- ("%s:%d rcvif == NULL: m=%p", __func__, __LINE__, m));
+ if (__predict_false(m_rcvif_restore(m) == NULL)) {
+ m_freem(m);
+ continue;
+ }
CURVNET_SET(m->m_pkthdr.rcvif->if_vnet);
netisr_proto[proto].np_handler(m);
CURVNET_RESTORE();
@@ -986,6 +995,7 @@
*dosignalp = 0;
if (npwp->nw_len < npwp->nw_qlimit) {
+ m_rcvif_serialize(m);
m->m_nextpkt = NULL;
if (npwp->nw_head == NULL) {
npwp->nw_head = m;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jan 23, 10:58 PM (7 h, 47 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27890832
Default Alt Text
D33268.id100629.diff (1 KB)
Attached To
Mode
D33268: netisr: serialize/restore m_pkthdr.rcvif when queueing mbufs
Attached
Detach File
Event Timeline
Log In to Comment