Deleted Added
full compact
if_ste.c (72012) if_ste.c (72084)
1/*
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/pci/if_ste.c 72012 2001-02-04 16:08:18Z phk $
32 * $FreeBSD: head/sys/pci/if_ste.c 72084 2001-02-06 10:12:15Z phk $
33 */
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/sockio.h>
38#include <sys/mbuf.h>
39#include <sys/malloc.h>
40#include <sys/kernel.h>

--- 28 unchanged lines hidden (view full) ---

69#define STE_USEIOSPACE
70
71#include <pci/if_stereg.h>
72
73MODULE_DEPEND(ste, miibus, 1, 1, 1);
74
75#if !defined(lint)
76static const char rcsid[] =
33 */
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/sockio.h>
38#include <sys/mbuf.h>
39#include <sys/malloc.h>
40#include <sys/kernel.h>

--- 28 unchanged lines hidden (view full) ---

69#define STE_USEIOSPACE
70
71#include <pci/if_stereg.h>
72
73MODULE_DEPEND(ste, miibus, 1, 1, 1);
74
75#if !defined(lint)
76static const char rcsid[] =
77 "$FreeBSD: head/sys/pci/if_ste.c 72012 2001-02-04 16:08:18Z phk $";
77 "$FreeBSD: head/sys/pci/if_ste.c 72084 2001-02-06 10:12:15Z phk $";
78#endif
79
80/*
81 * Various supported device vendors/types and their names.
82 */
83static struct ste_type ste_devs[] = {
84 { ST_VENDORID, ST_DEVICEID_ST201, "Sundance ST201 10/100BaseTX" },
85 { DL_VENDORID, DL_DEVICEID_550TX, "D-Link DFE-550TX 10/100BaseTX" },

--- 496 unchanged lines hidden (view full) ---

582 return;
583 }
584
585 /* first, zot all the existing hash bits */
586 CSR_WRITE_4(sc, STE_MAR0, 0);
587 CSR_WRITE_4(sc, STE_MAR1, 0);
588
589 /* now program new ones */
78#endif
79
80/*
81 * Various supported device vendors/types and their names.
82 */
83static struct ste_type ste_devs[] = {
84 { ST_VENDORID, ST_DEVICEID_ST201, "Sundance ST201 10/100BaseTX" },
85 { DL_VENDORID, DL_DEVICEID_550TX, "D-Link DFE-550TX 10/100BaseTX" },

--- 496 unchanged lines hidden (view full) ---

582 return;
583 }
584
585 /* first, zot all the existing hash bits */
586 CSR_WRITE_4(sc, STE_MAR0, 0);
587 CSR_WRITE_4(sc, STE_MAR1, 0);
588
589 /* now program new ones */
590 LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
590 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
591 if (ifma->ifma_addr->sa_family != AF_LINK)
592 continue;
593 h = ste_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
594 if (h < 32)
595 hashes[0] |= (1 << h);
596 else
597 hashes[1] |= (1 << (h - 32));
598 }

--- 995 unchanged lines hidden ---
591 if (ifma->ifma_addr->sa_family != AF_LINK)
592 continue;
593 h = ste_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
594 if (h < 32)
595 hashes[0] |= (1 << h);
596 else
597 hashes[1] |= (1 << (h - 32));
598 }

--- 995 unchanged lines hidden ---