Lines Matching refs:issues
3365 # load the ftrace file into memory and fix up any ordering issues
3885 # load the dmesg file into memory and fix up any ordering issues
4345 data['issues'], data['sus_worst'], data['sus_worsttime'],
4457 html += td.format(d[7]) # issues
4544 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''):
4545 multihost = len([e for e in issues if len(e['urls']) > 1]) > 0
4553 subtitle = '%d issues' % len(issues) if len(issues) > 0 else 'no issues'
4562 for e in sorted(issues, key=lambda v:v['count'], reverse=True):
4586 return issues
6274 def data_from_html(file, outpath, issues, fulldetail=False):
6311 sysvals.errorSummary(issues, msg)
6339 match = [i for i in issues if i['match'] == issue]
6347 issues.append({
6392 'issues': ' '.join(ilist),
6440 target, issues, testruns = '', [], []
6446 data = data_from_html(os.path.join(dirname, filename), outpath, issues)
6466 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)
6467 pprint(' summary-issues.html - kernel issues found sorted by frequency')