diff options
Diffstat (limited to 'sys/pci/if_sk.c')
-rw-r--r-- | sys/pci/if_sk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c index bcc4b03..0daf42e 100644 --- a/sys/pci/if_sk.c +++ b/sys/pci/if_sk.c @@ -823,6 +823,7 @@ sk_setmulti(sc_if) hashes[1] = 0xFFFFFFFF; } else { i = 1; + IF_ADDR_LOCK(ifp); TAILQ_FOREACH_REVERSE(ifma, &ifp->if_multiaddrs, ifmultihead, ifma_link) { if (ifma->ifma_addr->sa_family != AF_LINK) continue; @@ -855,6 +856,7 @@ sk_setmulti(sc_if) else hashes[1] |= (1 << (h - 32)); } + IF_ADDR_UNLOCK(ifp); } switch(sc->sk_type) { |