projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
961805c
)
Fix infinite loop in ns_gige stat machine
author
Nathan Binkert
<binkertn@umich.edu>
Wed, 14 Jul 2004 13:02:15 +0000
(09:02 -0400)
committer
Nathan 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
patch
|
blob
|
history
diff --git
a/dev/ns_gige.cc
b/dev/ns_gige.cc
index ff0c90f150f064e2e55883bc271d204455a84166..b0b093cf487db33f8a8beb9ec1d0e99d1e77eb77 100644
(file)
--- a/
dev/ns_gige.cc
+++ b/
dev/ns_gige.cc
@@
-1929,7
+1929,7
@@
NSGigE::txKick()
txState = txFifoBlock;
transmit();
-
break
;
+
goto exit
;
}
}