Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Dec 2008 15:23:45 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 154793 for review
Message-ID:  <200812161523.mBGFNjp5079540@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=154793

Change 154793 by bz@bz_dumpster on 2008/12/16 15:22:50

	Try to make what I comitted at least compile again.

Affected files ...

.. //depot/projects/vimage/src/sys/net/if_epair.c#2 edit

Differences ...

==== //depot/projects/vimage/src/sys/net/if_epair.c#2 (text+ko) ====

@@ -171,7 +171,7 @@
 	 */
 	STAILQ_FOREACH_SAFE(elm, &epair_ifp_drain_list, ifp_next, tvar) {
 		ifp = elm->ifp;
-		epair_drv_flags &= ~IFF_DRV_OACTIVE
+		epair_drv_flags &= ~IFF_DRV_OACTIVE;
 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
 		epair_start_locked(ifp);
 
@@ -257,7 +257,7 @@
 			/* Someone else received the packet. */
 			oifp->if_ipackets++;
 		} else {
-			epair_drv_flags |= IFF_DRV_OACTIVE
+			epair_drv_flags |= IFF_DRV_OACTIVE;
 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
 			ADD_IFQ_FOR_DRAINING(ifp);
 			refcount_release(&sc->refcount);
@@ -380,7 +380,7 @@
 	} else {
 		/* The packet was freed already. */
 		refcount_release(&sc->refcount);
-		epair_drv_flags |= IFF_DRV_OACTIVE
+		epair_drv_flags |= IFF_DRV_OACTIVE;
 		ifp->if_drv_flags |= IFF_DRV_OACTIVE;
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812161523.mBGFNjp5079540>