mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
Fix a panic which was reproducible by an infinite loop of
"ifconfig epair0 create && ifconfig epair0a destroy". This was caused by an uninitialized function pointer in softc->media.
This commit is contained in:
parent
05f05f8bdc
commit
18e199ad72
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287402
@ -809,6 +809,14 @@ epair_clone_create(struct if_clone *ifc, char *name, size_t len, caddr_t params)
|
||||
netisr_get_cpuid(sca->ifp->if_index % netisr_get_cpucount());
|
||||
scb->cpuid =
|
||||
netisr_get_cpuid(scb->ifp->if_index % netisr_get_cpucount());
|
||||
|
||||
/* Initialise pseudo media types. */
|
||||
ifmedia_init(&sca->media, 0, epair_media_change, epair_media_status);
|
||||
ifmedia_add(&sca->media, IFM_ETHER | IFM_10G_T, 0, NULL);
|
||||
ifmedia_set(&sca->media, IFM_ETHER | IFM_10G_T);
|
||||
ifmedia_init(&scb->media, 0, epair_media_change, epair_media_status);
|
||||
ifmedia_add(&scb->media, IFM_ETHER | IFM_10G_T, 0, NULL);
|
||||
ifmedia_set(&scb->media, IFM_ETHER | IFM_10G_T);
|
||||
|
||||
/* Finish initialization of interface <n>a. */
|
||||
ifp = sca->ifp;
|
||||
@ -867,14 +875,6 @@ epair_clone_create(struct if_clone *ifc, char *name, size_t len, caddr_t params)
|
||||
strlcpy(name, sca->ifp->if_xname, len);
|
||||
DPRINTF("name='%s/%db' created sca=%p scb=%p\n", name, unit, sca, scb);
|
||||
|
||||
/* Initialise pseudo media types. */
|
||||
ifmedia_init(&sca->media, 0, epair_media_change, epair_media_status);
|
||||
ifmedia_add(&sca->media, IFM_ETHER | IFM_10G_T, 0, NULL);
|
||||
ifmedia_set(&sca->media, IFM_ETHER | IFM_10G_T);
|
||||
ifmedia_init(&scb->media, 0, epair_media_change, epair_media_status);
|
||||
ifmedia_add(&scb->media, IFM_ETHER | IFM_10G_T, 0, NULL);
|
||||
ifmedia_set(&scb->media, IFM_ETHER | IFM_10G_T);
|
||||
|
||||
/* Tell the world, that we are ready to rock. */
|
||||
sca->ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
||||
scb->ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
||||
|
Loading…
Reference in New Issue
Block a user