Lines Matching defs:issues
3389 # load the ftrace file into memory and fix up any ordering issues
3909 # load the dmesg file into memory and fix up any ordering issues
4370 data['issues'], data['sus_worst'], data['sus_worsttime'],
4483 html += td.format(d[7]) # issues
4570 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''):
4571 multihost = len([e for e in issues if len(e['urls']) > 1]) > 0
4579 subtitle = '%d issues' % len(issues) if len(issues) > 0 else 'no issues'
4588 for e in sorted(issues, key=lambda v:v['count'], reverse=True):
4612 return issues
6322 def data_from_html(file, outpath, issues, fulldetail=False):
6361 if len(issues) < 100:
6363 sysvals.errorSummary(issues, msg)
6396 match = [i for i in issues if i['match'] == issue]
6404 issues.append({
6449 'issues': ' '.join(ilist),
6497 target, issues, testruns = '', [], []
6503 data = data_from_html(os.path.join(dirname, filename), outpath, issues)
6523 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)
6524 pprint(' summary-issues.html - kernel issues found sorted by frequency')