Deleted Added
sdiff udiff text old ( 4040:eb894f3fc168 ) new ( 4050:cf1daaef9109 )
full compact
1/*
2 * Copyright (c) 2002-2005 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;

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

416 panic("Unable to find responder for address pa = %#X va = %#X\n",
417 pkt->req->getPaddr(), pkt->req->getVaddr());
418#endif
419 }
420
421 if (req->isSwap()) {
422 assert(res);
423 *res = pkt->get<T>();
424 } else if (res) {
425 *res = req->getScResult();
426 }
427 }
428
429 // This will need a new way to tell if it's hooked up to a cache or not.
430 if (req->isUncacheable())
431 recordEvent("Uncached Write");
432
433 // If the write needs to have a fault on the access, consider calling
434 // changeStatus() and changing it to "bad addr write" or something.

--- 212 unchanged lines hidden ---