mem: Relax packet limit in packet queue

JIRA: https://gem5.atlassian.net/browse/GEM5-587

Change-Id: I4ac24bf18a0aff08a5b33c48179b882b27ef910c
Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30317
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Timothy Hayes
2020-01-14 16:24:54 +00:00
committed by Giacomo Travaglini
parent 28fa7becc0
commit 2427fc2c82

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012,2015,2018 ARM Limited
* Copyright (c) 2012,2015,2018-2020 ARM Limited
* All rights reserved.
*
* The license below extends only to copyright in the software and shall
@@ -115,8 +115,8 @@ PacketQueue::schedSendTiming(PacketPtr pkt, Tick when)
// add a very basic sanity check on the port to ensure the
// invisible buffer is not growing beyond reasonable limits
if (!_disableSanityCheck && transmitList.size() > 100) {
panic("Packet queue %s has grown beyond 100 packets\n",
if (!_disableSanityCheck && transmitList.size() > 128) {
panic("Packet queue %s has grown beyond 128 packets\n",
name());
}