diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/m5/objects/Ethernet.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/m5/objects/Ethernet.py b/python/m5/objects/Ethernet.py index 491ca4d9f..f58ece0be 100644 --- a/python/m5/objects/Ethernet.py +++ b/python/m5/objects/Ethernet.py @@ -84,8 +84,9 @@ class EtherDevBase(PciDevice): tx_fifo_size = Param.MemorySize('512kB', "max size of tx fifo") rx_filter = Param.Bool(True, "Enable Receive Filter") - intr_delay = Param.Latency('10us', "Interrupt Propagation Delay") - dedicated = Param.Bool(False, "dedicate a kernel thread to the driver") + intr_delay = Param.Latency('10us', "Interrupt propagation delay") + rx_thread = Param.Bool(False, "dedicated kernel thread for transmit") + tx_thread = Param.Bool(False, "dedicated kernel threads for receive") class NSGigE(EtherDevBase): type = 'NSGigE' |