Reformat comments to meet line length restriction.

--HG--
extra : convert_revision : 24c00ec4904d9fb4d6e39521e0ff8b8f60d60f6a
This commit is contained in:
Steve Reinhardt 2007-05-28 08:04:33 -07:00
parent 07bda077f2
commit 04ac944920
2 changed files with 15 additions and 12 deletions

View file

@ -192,11 +192,12 @@ fixPacket(PacketPtr func, PacketPtr timing)
func->flags |= SATISFIED; func->flags |= SATISFIED;
return false; return false;
} else { } else {
// In this case the timing packet only partially satisfies the // In this case the timing packet only partially satisfies
// requset, so we would need more information to make this work. // the request, so we would need more information to make
// Like bytes valid in the packet or something, so the request could // this work. Like bytes valid in the packet or
// continue and get this bit of possibly newer data along with the // something, so the request could continue and get this
// older data not written to yet. // bit of possibly newer data along with the older data
// not written to yet.
panic("Timing packet only partially satisfies the functional" panic("Timing packet only partially satisfies the functional"
"request. Now what?"); "request. Now what?");
} }

View file

@ -506,16 +506,18 @@ class Packet
bool intersect(PacketPtr p); bool intersect(PacketPtr p);
}; };
/** This function given a functional packet and a timing packet either satisfies /** This function given a functional packet and a timing packet either
* the timing packet, or updates the timing packet to reflect the updated state * satisfies the timing packet, or updates the timing packet to
* in the timing packet. It returns if the functional packet should continue to * reflect the updated state in the timing packet. It returns if the
* traverse the memory hierarchy or not. * functional packet should continue to traverse the memory hierarchy
* or not.
*/ */
bool fixPacket(PacketPtr func, PacketPtr timing); bool fixPacket(PacketPtr func, PacketPtr timing);
/** This function is a wrapper for the fixPacket field that toggles the hasData bit /** This function is a wrapper for the fixPacket field that toggles
* it is used when a response is waiting in the caches, but hasn't been marked as a * the hasData bit it is used when a response is waiting in the
* response yet (so the fixPacket needs to get the correct value for the hasData) * caches, but hasn't been marked as a response yet (so the fixPacket
* needs to get the correct value for the hasData)
*/ */
bool fixDelayedResponsePacket(PacketPtr func, PacketPtr timing); bool fixDelayedResponsePacket(PacketPtr func, PacketPtr timing);