diff options
| author | Roman Kurakin <rik@FreeBSD.org> | 2004-08-27 22:14:26 +0000 |
|---|---|---|
| committer | Roman Kurakin <rik@FreeBSD.org> | 2004-08-27 22:14:26 +0000 |
| commit | 6b1cbdfc689e39af4fb099455d15b1ee68bfebb8 (patch) | |
| tree | 1692e27e3bdf0af0d533862916defc0686ba4182 /sys/dev | |
| parent | 73ad990a0cb621bc986f9cb39ab717c8277dfa89 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ctau/if_ct.c | 3 | ||||
| -rw-r--r-- | sys/dev/cx/if_cx.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index a0441951f510..a05527c71579 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -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; diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c index 7c2e65c436d3..15a0669e6b44 100644 --- a/sys/dev/cx/if_cx.c +++ b/sys/dev/cx/if_cx.c @@ -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; |
