84c84
< ~FSTranslatingPortProxy();
---
> ~FSTranslatingPortProxy() {}
86c86
< /** Version of readblob that translates virt->phys and deals
---
> /** Version of tryReadblob that translates virt->phys and deals
88c88
< void readBlob(Addr addr, uint8_t *p, int size) const override;
---
> bool tryReadBlob(Addr addr, uint8_t *p, int size) const override;
90c90
< /** Version of writeBlob that translates virt->phys and deals
---
> /** Version of tryWriteBlob that translates virt->phys and deals
92c92
< void writeBlob(Addr addr, const uint8_t *p, int size) const override;
---
> bool tryWriteBlob(Addr addr, const uint8_t *p, int size) const override;
97c97
< void memsetBlob(Addr address, uint8_t v, int size) const override;
---
> bool tryMemsetBlob(Addr address, uint8_t v, int size) const override;