mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make code ready to switch debug.mpsafenet to 1 since I've not able to
commit MPSAFE code for now it is just IFF_NEEDSGIANT.
This commit is contained in:
parent
73ad990a0c
commit
6b1cbdfc68
2 changed files with 4 additions and 2 deletions
|
|
@ -735,7 +735,8 @@ static int ct_attach (device_t dev)
|
|||
d->pp.pp_if.if_name = "ct";
|
||||
#endif
|
||||
d->pp.pp_if.if_mtu = PP_MTU;
|
||||
d->pp.pp_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
|
||||
d->pp.pp_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST |
|
||||
IFF_NEEDSGIANT;
|
||||
d->pp.pp_if.if_ioctl = ct_sioctl;
|
||||
d->pp.pp_if.if_start = ct_ifstart;
|
||||
d->pp.pp_if.if_watchdog = ct_ifwatchdog;
|
||||
|
|
|
|||
|
|
@ -867,7 +867,8 @@ static int cx_attach (device_t dev)
|
|||
d->pp.pp_if.if_name = "cx";
|
||||
#endif
|
||||
d->pp.pp_if.if_mtu = PP_MTU;
|
||||
d->pp.pp_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
|
||||
d->pp.pp_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST |
|
||||
IFF_NEEDSGIANT;
|
||||
d->pp.pp_if.if_ioctl = cx_sioctl;
|
||||
d->pp.pp_if.if_start = cx_ifstart;
|
||||
d->pp.pp_if.if_watchdog = cx_ifwatchdog;
|
||||
|
|
|
|||
Loading…
Reference in a new issue