Fix infinite loop in ns_gige stat machine
authorNathan Binkert <binkertn@umich.edu>
Wed, 14 Jul 2004 13:02:15 +0000 (09:02 -0400)
committerNathan Binkert <binkertn@umich.edu>
Wed, 14 Jul 2004 13:02:15 +0000 (09:02 -0400)
argh!

dev/ns_gige.cc:
    Exit the state machine so that we don't come right back where
    we started and enter an infinite loop.

--HG--
extra : convert_revision : a5f2b5b5a692de6c80e4b02d7f9bc5d27fe17252

dev/ns_gige.cc

index ff0c90f150f064e2e55883bc271d204455a84166..b0b093cf487db33f8a8beb9ec1d0e99d1e77eb77 100644 (file)
@@ -1929,7 +1929,7 @@ NSGigE::txKick()
                 txState = txFifoBlock;
                 transmit();
 
-                break;
+                goto exit;
             }
 
         }