tport.cc (3610:c0f97b22db1a) tport.cc (4022:c422464ca16e)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
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;

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

63 assert(pkt->result != Packet::Nacked);
64 Tick latency = recvAtomic(pkt);
65 // turn packet around to go back to requester if response expected
66 if (pkt->needsResponse()) {
67 pkt->makeTimingResponse();
68 sendTiming(pkt, latency);
69 }
70 else {
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
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;

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

63 assert(pkt->result != Packet::Nacked);
64 Tick latency = recvAtomic(pkt);
65 // turn packet around to go back to requester if response expected
66 if (pkt->needsResponse()) {
67 pkt->makeTimingResponse();
68 sendTiming(pkt, latency);
69 }
70 else {
71 if (pkt->cmd != Packet::UpgradeReq)
71 if (pkt->cmd != MemCmd::UpgradeReq)
72 {
73 delete pkt->req;
74 delete pkt;
75 }
76 }
77 return true;
78}
79

--- 85 unchanged lines hidden ---
72 {
73 delete pkt->req;
74 delete pkt;
75 }
76 }
77 return true;
78}
79

--- 85 unchanged lines hidden ---