Date: Sat, 12 Sep 2009 18:08:44 +0000 (UTC) From: Michael Tuexen <tuexen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r197125 - in stable/8/sys: . amd64/include/xen cddl/contrib/opensolaris contrib/dev/acpica contrib/pf dev/xen/xenpci netinet Message-ID: <200909121808.n8CI8it3093426@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tuexen Date: Sat Sep 12 18:08:44 2009 New Revision: 197125 URL: http://svn.freebsd.org/changeset/base/197125 Log: MFC 196610: Fix a bug where vlan interfaces are not supported by SCTP. Approved by: re, rrs (mentor) Modified: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) stable/8/sys/netinet/sctp_bsd_addr.c Modified: stable/8/sys/netinet/sctp_bsd_addr.c ============================================================================== --- stable/8/sys/netinet/sctp_bsd_addr.c Sat Sep 12 18:05:57 2009 (r197124) +++ stable/8/sys/netinet/sctp_bsd_addr.c Sat Sep 12 18:08:44 2009 (r197125) @@ -175,6 +175,7 @@ sctp_is_desired_interface_type(struct if case IFT_LOOP: case IFT_SLIP: case IFT_GIF: + case IFT_L2VLAN: case IFT_IP: case IFT_IPOVERCDLC: case IFT_IPOVERCLAW:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909121808.n8CI8it3093426>