diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-07-14 09:02:15 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-07-14 09:02:15 -0400 |
commit | 6f43d2b8d85b58cf33d03d7c6ea89fe36bec76dd (patch) | |
tree | 3608d513aa1035ced90429327a483315de060ac2 | |
parent | 961805c73acc7cabb167f2ac3af7a2544ef7817c (diff) | |
download | gem5-6f43d2b8d85b58cf33d03d7c6ea89fe36bec76dd.tar.xz |
Fix infinite loop in ns_gige stat machine
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
-rw-r--r-- | dev/ns_gige.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ns_gige.cc b/dev/ns_gige.cc index ff0c90f15..b0b093cf4 100644 --- a/dev/ns_gige.cc +++ b/dev/ns_gige.cc @@ -1929,7 +1929,7 @@ NSGigE::txKick() txState = txFifoBlock; transmit(); - break; + goto exit; } } |