Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/dev/pci Pullup revision 1.10 (approved by thorpej).



details:   https://anonhg.NetBSD.org/src/rev/a7fa48c6b154
branches:  netbsd-1-5
changeset: 489548:a7fa48c6b154
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Sep 26 20:18:16 2000 +0000

description:
Pullup revision 1.10 (approved by thorpej).

  Fix multicast filters. Patch from Keijiro Ehara.

diffstat:

 sys/dev/pci/if_ti.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 8caa6900c8ab -r a7fa48c6b154 sys/dev/pci/if_ti.c
--- a/sys/dev/pci/if_ti.c       Tue Sep 26 18:46:08 2000 +0000
+++ b/sys/dev/pci/if_ti.c       Tue Sep 26 20:18:16 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ti.c,v 1.8 2000/03/30 12:45:35 augustss Exp $ */
+/* $NetBSD: if_ti.c,v 1.8.4.1 2000/09/26 20:18:16 martin Exp $ */
 
 /*
  * Copyright (c) 1997, 1998, 1999
@@ -2568,6 +2568,10 @@
                break;
        case SIOCADDMULTI:
        case SIOCDELMULTI:
+               if (command == SIOCADDMULTI)
+                       ether_addmulti(ifr, &sc->ethercom);
+               else
+                       ether_delmulti(ifr, &sc->ethercom);
                if (ifp->if_flags & IFF_RUNNING) {
                        ti_setmulti(sc);
                        error = 0;



Home | Main Index | Thread Index | Old Index