Back out r180370. It was not discussed with subsystem maintainers.

This commit is contained in:
gonzo 2008-07-08 20:19:43 +00:00
parent 13896f2e51
commit e29b848dd4
2 changed files with 2 additions and 2 deletions

View File

@ -755,7 +755,7 @@ ng_iface_rcvdata(hook_p hook, item_p item)
/* First chunk of an mbuf contains good junk */
if (harvest.point_to_point)
random_harvest(m, 16, 3, 0, RANDOM_NET);
netisr_queue(isr, m);
netisr_dispatch(isr, m);
return (0);
}

View File

@ -120,7 +120,7 @@ ngipi_rcvdata(hook_p hook, item_p item)
NGI_GET_M(item, m);
NG_FREE_ITEM(item);
netisr_queue(NETISR_IP, m);
netisr_dispatch(NETISR_IP, m);
return 0;
}