Internal method: return parameters for RT bandwidth
( self, f )
| 786 | return lastword |
| 787 | |
| 788 | def rtInfo( self, f ): |
| 789 | "Internal method: return parameters for RT bandwidth" |
| 790 | pstr, qstr = 'rt_period_us', 'rt_runtime_us' |
| 791 | # RT uses wall clock time for period and quota |
| 792 | quota = int( self.period_us * f ) |
| 793 | return pstr, qstr, self.period_us, quota |
| 794 | |
| 795 | def cfsInfo( self, f ): |
| 796 | "Internal method: return parameters for CFS bandwidth" |