Date: 13 Jun 2005 07:56:37 -0000 From: Stikheev Andrew <sand@zunet.ru> To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/82188: [patch] ng_fec interface not running after assigning an address Message-ID: <20050613075637.89240.qmail@zunet.ru> Resent-Message-ID: <200506130750.j5D7oAqA021828@freefall.freebsd.org>
index | next in thread | raw e-mail
>Number: 82188
>Category: kern
>Synopsis: [patch] ng_fec interface not running after assigning an address
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Mon Jun 13 07:50:10 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator: Stikheev Andrew
>Release: FreeBSD 6.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD sand.zuzino.mipt.ru 6.0-CURRENT FreeBSD 6.0-CURRENT #0: Sun Jun 12 02:16:10 MSD 2005 sand@sand.zuzino.mipt.ru:/usr/obj/usr/src/sys/MYKERNEL i386
>Description:
After creating fec interface and assigning address it's not in the running state
,
only in the up state. I should say 'ifconfig fec0 up' or run promiscuous mode
to run it:
After startup:
fec0: flags=8803<UP,BROADCAST,SIMPLEX,MULTICAST> mtu 1500
fxp0: flags=18843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,POLLING> mtu 1500
options=48<VLAN_MTU,POLLING>
fxp2: flags=18843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,POLLING> mtu 1500
options=48<VLAN_MTU,POLLING>
sand@video:~# ifconfig fec0 up
sand@video:~# fec0: port fxp0 in bundle is up
fec0: port fxp2 in bundle is up
sand@video:~# ifconfig fec0
fec0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
>How-To-Repeat:
>Fix:
--- ng_fec.c Mon Jun 13 10:10:06 2005
+++ ng_fec.c.new Mon Jun 13 10:14:04 2005
@@ -697,6 +697,8 @@ ng_fec_ioctl(struct ifnet *ifp, u_long c
/* These two are mostly handled at a higher layer */
case SIOCSIFADDR:
+ ifp->if_flags |= (IFF_UP | IFF_RUNNING);
+ ifp->if_flags &= ~(IFF_OACTIVE);
case SIOCGIFADDR:
case SIOCSIFMTU:
error = ether_ioctl(ifp, command, data);
>Release-Note:
>Audit-Trail:
>Unformatted:
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050613075637.89240.qmail>
