svn commit: r213000 - head/sys/dev/stge

Pyun YongHyeon yongari at FreeBSD.org
Wed Sep 22 16:48:25 UTC 2010


Author: yongari
Date: Wed Sep 22 16:48:24 2010
New Revision: 213000
URL: http://svn.freebsd.org/changeset/base/213000

Log:
  Fix build breakage introduced in r212972.

Modified:
  head/sys/dev/stge/if_stge.c

Modified: head/sys/dev/stge/if_stge.c
==============================================================================
--- head/sys/dev/stge/if_stge.c	Wed Sep 22 15:10:03 2010	(r212999)
+++ head/sys/dev/stge/if_stge.c	Wed Sep 22 16:48:24 2010	(r213000)
@@ -1944,13 +1944,11 @@ stge_poll(struct ifnet *ifp, enum poll_c
 				    "Host interface error, resetting...\n");
 				ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
 				stge_init_locked(sc);
-				break;
 			}
 			if ((status & IS_TxComplete) != 0) {
 				if (stge_tx_error(sc) != 0) {
 					ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
 					stge_init_locked(sc);
-					break;
 				}
 			}
 		}


More information about the svn-src-all mailing list