123d122
< NetworkNackError, // nacked at network layer (not by protocol)
469,475d467
< setNacked()
< {
< assert(isResponse());
< cmd = MemCmd::NetworkNackError;
< }
<
< void
482d473
< bool wasNacked() const { return cmd == MemCmd::NetworkNackError; }
672,676d662
< /**
< * Take a request packet that has been returned as NACKED and
< * modify it so that it can be sent out again. Only packets that
< * need a response can be NACKED, so verify that that is true.
< */
678,686d663
< reinitNacked()
< {
< assert(wasNacked());
< cmd = origCmd;
< assert(needsResponse());
< clearDest();
< }
<
< void