write_queue_entry.cc (11453:dd9763792521) write_queue_entry.cc (11484:08b33c52a16d)
1/*
2 * Copyright (c) 2012-2013, 2015-2016 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

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

127
128bool
129WriteQueueEntry::checkFunctional(PacketPtr pkt)
130{
131 // For printing, we treat the WriteQueueEntry as a whole as single
132 // entity. For other requests, we iterate over the individual
133 // targets since that's where the actual data lies.
134 if (pkt->isPrint()) {
1/*
2 * Copyright (c) 2012-2013, 2015-2016 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

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

127
128bool
129WriteQueueEntry::checkFunctional(PacketPtr pkt)
130{
131 // For printing, we treat the WriteQueueEntry as a whole as single
132 // entity. For other requests, we iterate over the individual
133 // targets since that's where the actual data lies.
134 if (pkt->isPrint()) {
135 pkt->checkFunctional(this, blkAddr, isSecure, blkSize, NULL);
135 pkt->checkFunctional(this, blkAddr, isSecure, blkSize, nullptr);
136 return false;
137 } else {
138 return targets.checkFunctional(pkt);
139 }
140}
141
142bool
143WriteQueueEntry::sendPacket(Cache &cache)

--- 25 unchanged lines hidden ---
136 return false;
137 } else {
138 return targets.checkFunctional(pkt);
139 }
140}
141
142bool
143WriteQueueEntry::sendPacket(Cache &cache)

--- 25 unchanged lines hidden ---