Convert to if_foreach_llmaddr() KPI.
This commit is contained in:
parent
119a6396ca
commit
660d39418f
@ -491,6 +491,22 @@ lio_get_new_flags(struct ifnet *ifp)
|
|||||||
return (f);
|
return (f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static u_int
|
||||||
|
lio_copy_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
|
||||||
|
{
|
||||||
|
uint64_t *mc = arg;
|
||||||
|
|
||||||
|
if (cnt == LIO_MAX_MULTICAST_ADDR)
|
||||||
|
return (0);
|
||||||
|
|
||||||
|
mc += cnt;
|
||||||
|
*mc = 0;
|
||||||
|
memcpy(((uint8_t *)mc) + 2, LLADDR(sdl), ETHER_ADDR_LEN);
|
||||||
|
/* no need to swap bytes */
|
||||||
|
|
||||||
|
return (1);
|
||||||
|
}
|
||||||
|
|
||||||
/* @param ifp network device */
|
/* @param ifp network device */
|
||||||
static int
|
static int
|
||||||
lio_set_mcast_list(struct ifnet *ifp)
|
lio_set_mcast_list(struct ifnet *ifp)
|
||||||
@ -498,9 +514,7 @@ lio_set_mcast_list(struct ifnet *ifp)
|
|||||||
struct lio *lio = if_getsoftc(ifp);
|
struct lio *lio = if_getsoftc(ifp);
|
||||||
struct octeon_device *oct = lio->oct_dev;
|
struct octeon_device *oct = lio->oct_dev;
|
||||||
struct lio_ctrl_pkt nctrl;
|
struct lio_ctrl_pkt nctrl;
|
||||||
struct ifmultiaddr *ifma;
|
int mc_count;
|
||||||
uint64_t *mc;
|
|
||||||
int mc_count = 0;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
bzero(&nctrl, sizeof(struct lio_ctrl_pkt));
|
bzero(&nctrl, sizeof(struct lio_ctrl_pkt));
|
||||||
@ -514,26 +528,7 @@ lio_set_mcast_list(struct ifnet *ifp)
|
|||||||
nctrl.cb_fn = lio_ctrl_cmd_completion;
|
nctrl.cb_fn = lio_ctrl_cmd_completion;
|
||||||
|
|
||||||
/* copy all the addresses into the udd */
|
/* copy all the addresses into the udd */
|
||||||
mc = &nctrl.udd[0];
|
mc_count = if_foreach_llmaddr(ifp, lio_copy_maddr, &nctrl.udd[0]);
|
||||||
|
|
||||||
/* to protect access to if_multiaddrs */
|
|
||||||
if_maddr_rlock(ifp);
|
|
||||||
|
|
||||||
CK_STAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
|
|
||||||
if (ifma->ifma_addr->sa_family != AF_LINK)
|
|
||||||
continue;
|
|
||||||
*mc = 0;
|
|
||||||
memcpy(((uint8_t *)mc) + 2,
|
|
||||||
LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
|
|
||||||
ETHER_ADDR_LEN);
|
|
||||||
/* no need to swap bytes */
|
|
||||||
|
|
||||||
mc_count++;
|
|
||||||
if (++mc > &nctrl.udd[LIO_MAX_MULTICAST_ADDR])
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if_maddr_runlock(ifp);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Apparently, any activity in this call from the kernel has to
|
* Apparently, any activity in this call from the kernel has to
|
||||||
|
Loading…
x
Reference in New Issue
Block a user