PERFORCE change 181640 for review

Hans Petter Selasky hselasky at FreeBSD.org
Sat Jul 31 13:27:24 UTC 2010


http://p4web.freebsd.org/@@181640?ac=10

Change 181640 by hselasky at hselasky_laptop001 on 2010/07/31 13:27:07

	USB network (UHSO):
		- Correct interface flags.
		- Patch from: Fredrik Lindberg
	
	PR:		usb/149039
	Reviewed by:	hselasky @

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb/net/uhso.c#7 edit

Differences ...

==== //depot/projects/usb/src/sys/dev/usb/net/uhso.c#7 (text+ko) ====

@@ -1469,7 +1469,7 @@
 	ifp->if_init = uhso_if_init;
 	ifp->if_start = uhso_if_start;
 	ifp->if_output = uhso_if_output;
-	ifp->if_flags = 0;
+	ifp->if_flags = IFF_BROADCAST | IFF_MULTICAST | IFF_NOARP;
 	ifp->if_softc = sc;
 	IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
 	ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;


More information about the p4-projects mailing list