Lines Matching +full:re +full:- +full:started
12 infl The number of currently in-flight work items.
18 CPUitsv The number of times a concurrency-managed work item hogged CPU
23 CMW/RPR For per-cpu workqueues, the number of concurrency-management
24 wake-ups while executing a work item of the workqueue. For
26 to its affinity scope after being migrated to an off-scope CPU by
36 import re
48 parser.add_argument('-i', '--interval', metavar='SECS', type=float, default=1,
50 parser.add_argument('-j', '--json', action='store_true',
59 PWQ_STAT_STARTED = prog['PWQ_STAT_STARTED'] # work items started execution
63 PWQ_STAT_CM_WAKEUP = prog['PWQ_STAT_CM_WAKEUP'] # concurrency-management worker wakeups
84 'started' : self.stats[PWQ_STAT_STARTED],
98 cpu_intensive = '-'
99 cmw_rpr = '-'
100 mayday = '-'
101 rescued = '-'
113 out = f'{self.name[-24:]:24} ' \
115 f'{max(self.stats[PWQ_STAT_STARTED] - self.stats[PWQ_STAT_COMPLETED], 0):5} ' \
142 filter_re = re.compile(re_str) if re_str else None