bridge.hh (9029:120ba616606e) bridge.hh (9031:32ecc0217c5e)
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

86 * restore the response once it comes back to the bridge.
87 */
88 class RequestState : public Packet::SenderState, public FastAlloc
89 {
90
91 public:
92
93 Packet::SenderState *origSenderState;
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

86 * restore the response once it comes back to the bridge.
87 */
88 class RequestState : public Packet::SenderState, public FastAlloc
89 {
90
91 public:
92
93 Packet::SenderState *origSenderState;
94 Packet::NodeID origSrc;
94 PortID origSrc;
95
96 RequestState(PacketPtr _pkt)
97 : origSenderState(_pkt->senderState),
98 origSrc(_pkt->getSrc())
99 { }
100
101 void fixResponse(PacketPtr pkt)
102 {

--- 319 unchanged lines hidden ---
95
96 RequestState(PacketPtr _pkt)
97 : origSenderState(_pkt->senderState),
98 origSrc(_pkt->getSrc())
99 { }
100
101 void fixResponse(PacketPtr pkt)
102 {

--- 319 unchanged lines hidden ---