ng_eiface(4) RX path:
ng_eiface_rcvdata() -> ifp->input -> ether_input().
ng_eiface_rcvdata() is always called with NET_EPOCH as the netgraph(4) data path. But ether_input() checks the interface's IFF_KNOWSEPOCH flag to decide whether or not to enter NET_EPOCH. This results in a double entry to NET_EPOCH.
The patch slightly increases RX PPS: ~ 100 Kpps.