14c14
< * Copyright (c) 2009 Advanced Micro Devices, Inc.
---
> * Copyright (c) 2009-2013 Advanced Micro Devices, Inc.
78a79
> bool no_retry_on_stall;
82c83,84
< bool _access_backing_store, PortID id);
---
> bool _access_backing_store,
> PortID id, bool _no_retry_on_stall);
96a99,100
> void addToRetryList();
>
166a171
> void trySendRetries();
188a194,198
> bool onRetryList(MemSlavePort * port)
> {
> return (std::find(retryList.begin(), retryList.end(), port) !=
> retryList.end());
> }
191,192c201
< if (std::find(retryList.begin(), retryList.end(), port) !=
< retryList.end()) return;
---
> if (onRetryList(port)) return;