diff --git a/mininet/node.py b/mininet/node.py
index ea9b8d04b93e07f85784e6fb910057a87b662d1e..949e7678c0c87524b8a63b46fe91ee6a36bdfe3d 100644
--- a/mininet/node.py
+++ b/mininet/node.py
@@ -678,7 +678,7 @@ def rtInfo( self, f ):
         "Internal method: return parameters for RT bandwidth"
         pstr, qstr = 'rt_period_us', 'rt_runtime_us'
         # RT uses wall clock time for period and quota
-        quota = int( self.period_us * f * numCores() )
+        quota = int( self.period_us * f )
         return pstr, qstr, self.period_us, quota
 
     def cfsInfo( self, f):