svn commit: r248155 - head/sys/net

Gleb Smirnoff glebius at FreeBSD.org
Mon Mar 11 12:06:57 UTC 2013


Author: glebius
Date: Mon Mar 11 12:06:57 2013
New Revision: 248155
URL: http://svnweb.freebsd.org/changeset/base/248155

Log:
  Reinitialize eh after pfil(9) processing.
  
  PR:		176764
  Submitted by:	adri

Modified:
  head/sys/net/if_bridge.c

Modified: head/sys/net/if_bridge.c
==============================================================================
--- head/sys/net/if_bridge.c	Mon Mar 11 12:02:03 2013	(r248154)
+++ head/sys/net/if_bridge.c	Mon Mar 11 12:06:57 2013	(r248155)
@@ -2314,6 +2314,7 @@ bridge_input(struct ifnet *ifp, struct m
 					BRIDGE_UNLOCK(sc);		\
 					return (NULL);			\
 				}					\
+				eh = mtod(m, struct ether_header *);	\
 			}						\
 		}							\
 		if (bif->bif_flags & IFBIF_LEARNING) {			\


More information about the svn-src-all mailing list