RIP ether_input_mbuf().
authormpi <mpi@openbsd.org>
Tue, 2 Jun 2015 13:23:55 +0000 (13:23 +0000)
committermpi <mpi@openbsd.org>
Tue, 2 Jun 2015 13:23:55 +0000 (13:23 +0000)
sys/net/if.c
sys/net/if_var.h

index b59a93e..fc4a2c0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if.c,v 1.335 2015/05/26 11:39:07 mpi Exp $    */
+/*     $OpenBSD: if.c,v 1.336 2015/06/02 13:23:55 mpi Exp $    */
 /*     $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $  */
 
 /*
@@ -503,13 +503,6 @@ if_input(struct ifnet *ifp, struct mbuf_list *ml)
        task_add(softnettq, &if_input_task);
 }
 
-void
-ether_input_mbuf(struct ifnet *ifp, struct mbuf *m)
-{
-       mq_enqueue(&if_input_queue, m);
-       task_add(softnettq, &if_input_task);
-}
-
 void
 if_input_process(void *xmq)
 {
index 52abb7e..bef4ced 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_var.h,v 1.31 2015/05/28 11:57:33 mpi Exp $ */
+/*     $OpenBSD: if_var.h,v 1.32 2015/06/02 13:23:55 mpi Exp $ */
 /*     $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $  */
 
 /*
@@ -413,7 +413,6 @@ void        if_start(struct ifnet *);
 int    if_output(struct ifnet *, struct mbuf *);
 void   if_input(struct ifnet *, struct mbuf_list *);
 
-void   ether_input_mbuf(struct ifnet *, struct mbuf *);
 void   ether_ifattach(struct ifnet *);
 void   ether_ifdetach(struct ifnet *);
 int    ether_ioctl(struct ifnet *, struct arpcom *, u_long, caddr_t);