Deleted Added
sdiff udiff text old ( 8161:ebb373fcb206 ) new ( 8162:5f69f1b0039e )
full compact
1/*
2 * Copyright (c) 2009 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 291 unchanged lines hidden (view full) ---

300
301 port->hitCallback(pkt);
302
303 //
304 // If we had to stall the M5Ports, wake them up because the sequencer
305 // likely has free resources now.
306 //
307 if (waitingOnSequencer) {
308 for (std::list<M5Port*>::iterator i = retryList.begin();
309 i != retryList.end(); ++i) {
310 (*i)->sendRetry();
311 (*i)->onRetryList(false);
312 DPRINTF(MemoryAccess,
313 "Sequencer may now be free. SendRetry to port %s\n",
314 (*i)->name());
315 }
316 retryList.clear();
317 waitingOnSequencer = false;
318 }
319}
320
321void
322RubyPort::M5Port::hitCallback(PacketPtr pkt)
323{
324 bool needsResponse = pkt->needsResponse();
325

--- 85 unchanged lines hidden ---