svn commit: r252149 - stable/9/sys/net

Gleb Smirnoff glebius at FreeBSD.org
Mon Jun 24 09:21:56 UTC 2013


Author: glebius
Date: Mon Jun 24 09:21:55 2013
New Revision: 252149
URL: http://svnweb.freebsd.org/changeset/base/252149

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

Modified:
  stable/9/sys/net/if_bridge.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/net/   (props changed)

Modified: stable/9/sys/net/if_bridge.c
==============================================================================
--- stable/9/sys/net/if_bridge.c	Mon Jun 24 09:20:14 2013	(r252148)
+++ stable/9/sys/net/if_bridge.c	Mon Jun 24 09:21:55 2013	(r252149)
@@ -2318,6 +2318,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