2c2
< * Copyright (c) 2011-2018 ARM Limited
---
> * Copyright (c) 2011-2019 ARM Limited
61a62,63
> maxOutstandingSnoopCheck(p->max_outstanding_snoops),
> maxRoutingTableSizeCheck(p->max_routing_table_size),
328,329c330,332
< panic_if(outstandingSnoop.size() > 512,
< "Outstanding snoop requests exceeded 512\n");
---
> panic_if(outstandingSnoop.size() > maxOutstandingSnoopCheck,
> "%s: Outstanding snoop requests exceeded %d\n",
> name(), maxOutstandingSnoopCheck);
337,338c340,342
< panic_if(routeTo.size() > 512,
< "Routing table exceeds 512 packets\n");
---
> panic_if(routeTo.size() > maxRoutingTableSizeCheck,
> "%s: Routing table exceeds %d packets\n",
> name(), maxRoutingTableSizeCheck);
404,405c408,410
< panic_if(routeTo.size() > 512,
< "Routing table exceeds 512 packets\n");
---
> panic_if(routeTo.size() > maxRoutingTableSizeCheck,
> "%s: Routing table exceeds %d packets\n",
> name(), maxRoutingTableSizeCheck);