The following reply was made to PR kern/152141; it has been noted by GNATS.
From: Mark Linimon
To: bug-follo...@freebsd.org
Cc:
Subject: kern/152141: [vlan] encapsulate vlan in ng_ether before output to
if
Date: Sun, 13 Feb 2011 08:46:38 -0600
- Forwarded message from Rozhuk Ivan
Hi!
What I need to do to include this patch to main source tree?
--
Rozhuk Ivan
___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org
Hi!
This is a patch for ng_ether_rcv_lower function in ng_ether.c to encapsulate
vlan before send to net.
--
Rozhuk Ivan
ng_ether.patch
Description: Binary data
___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/
This is a patched version of original function
code
/*
* If underlying interface can not do VLAN tag insertion itself
* then attach a packet tag that holds it.
*/
if ((m->m_flags & M_VLANTAG) &&
(ifp->if_capenable & IFCAP_VLAN_HWTAGGING) == 0)
This is a patched version of original function
code
/*
* If underlying interface can not do VLAN tag insertion itself
* then attach a packet tag that holds it.
*/
if ((m->m_flags & M_VLANTAG) &&
(ifp->if_capenable & IFCAP_VLAN_HWTAGGING) == 0)
Old Synopsis: encapsulate vlan in ng_ether before output to if
New Synopsis: [vlan] encapsulate vlan in ng_ether before output to if
Responsible-Changed-From-To: freebsd-bugs->freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Fri Nov 12 21:31:41 UTC 2010
Responsible-Changed-Why