Author: yongari
Date: Fri Sep 24 20:08:59 2010
New Revision: 213139
URL: http://svn.freebsd.org/changeset/base/213139

Log:
  MFC r191609:
    remove dead code with reference to IFQ_HANDOFF

Modified:
  stable/7/sys/pci/if_xl.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/pci/if_xl.c
==============================================================================
--- stable/7/sys/pci/if_xl.c    Fri Sep 24 20:04:23 2010        (r213138)
+++ stable/7/sys/pci/if_xl.c    Fri Sep 24 20:08:59 2010        (r213139)
@@ -803,32 +803,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)
 {
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to