svn commit: r191609 - head/sys/dev/xl

Kip Macy kmacy at FreeBSD.org
Mon Apr 27 22:53:36 UTC 2009


Author: kmacy
Date: Mon Apr 27 22:53:35 2009
New Revision: 191609
URL: http://svn.freebsd.org/changeset/base/191609

Log:
  remove dead code with reference to IFQ_HANDOFF

Modified:
  head/sys/dev/xl/if_xl.c

Modified: head/sys/dev/xl/if_xl.c
==============================================================================
--- head/sys/dev/xl/if_xl.c	Mon Apr 27 22:46:26 2009	(r191608)
+++ head/sys/dev/xl/if_xl.c	Mon Apr 27 22:53:35 2009	(r191609)
@@ -798,32 +798,6 @@ xl_setmulti_hash(struct xl_softc *sc)
 	CSR_WRITE_2(sc, XL_COMMAND, rxfilt | XL_CMD_RX_SET_FILT);
 }
 
-#ifdef notdef
-static void
-xl_testpacket(struct xl_softc *sc)
-{
-	struct mbuf		*m;
-	struct ifnet		*ifp = sc->xl_ifp;
-
-	MGETHDR(m, M_DONTWAIT, MT_DATA);
-
-	if (m == NULL)
-		return;
-
-	bcopy(IF_LLADDR(sc->xl_ifp),
-		mtod(m, struct ether_header *)->ether_dhost, ETHER_ADDR_LEN);
-	bcopy(IF_LLADDR(sc->xl_ifp),
-		mtod(m, struct ether_header *)->ether_shost, ETHER_ADDR_LEN);
-	mtod(m, struct ether_header *)->ether_type = htons(3);
-	mtod(m, unsigned char *)[14] = 0;
-	mtod(m, unsigned char *)[15] = 0;
-	mtod(m, unsigned char *)[16] = 0xE3;
-	m->m_len = m->m_pkthdr.len = sizeof(struct ether_header) + 3;
-	IFQ_ENQUEUE(&ifp->if_snd, m);
-	xl_start(ifp);
-}
-#endif
-
 static void
 xl_setcfg(struct xl_softc *sc)
 {


More information about the svn-src-head mailing list