diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..2a05b8f --- /dev/null +++ b/.coveragerc @@ -0,0 +1,7 @@ +[run] +source = regzbot +omit = regzbot/testing*.py + +[report] +fail_under = 60 +show_missing = true diff --git a/.gitignore b/.gitignore index 45d7529..d86e6a9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ __pycache__ *.pyc *.pyo *.swp +.coverage diff --git a/regzbot/export_mail.py b/regzbot/export_mail.py index 4ba605e..03beaa5 100644 --- a/regzbot/export_mail.py +++ b/regzbot/export_mail.py @@ -6,6 +6,7 @@ from collections import Counter import datetime +from email import generator as email_generator from email.message import EmailMessage import email.utils import tempfile @@ -17,6 +18,17 @@ logger = regzbot.logger +def _mail_now(): + mail_now = regzbot._TESTING.get("mail_now") + if mail_now is not None: + return mail_now + return regzbot.timendate_now() + + +def _mail_days_delta(past): + return (_mail_now() - datetime.datetime.fromtimestamp(past, datetime.timezone.utc)).days + + class RegLinkMailReport(regzbot.RegLink): def __init__(self, *args): super().__init__(*args) @@ -31,7 +43,7 @@ def mailreport(self): ): monitored = "; thread monitored." authored = "\n %s days ago, by %s%s" % ( - regzbot.days_delta(self.gmtime), + _mail_days_delta(self.gmtime), self.author, monitored, ) @@ -95,17 +107,17 @@ def compile(self, lastreport_gmtime): statusline.append(", ") statusline.append("; ") - statusline.append(str(regzbot.days_delta(self.gmtime))) + statusline.append(str(_mail_days_delta(self.gmtime))) statusline.append(" days ago; ") statusline.append(str(len(self._actievents))) statusline.append(" activities") if len(self._actievents) > 0: statusline.append(", latest ") - statusline.append(str(regzbot.days_delta(self._actievents[-1].gmtime))) + statusline.append(str(_mail_days_delta(self._actievents[-1].gmtime))) statusline.append(" days ago") if self.poked: - statusline.append("; poked %s days ago" % regzbot.days_delta(self.poked.gmtime)) + statusline.append("; poked %s days ago" % _mail_days_delta(self.poked.gmtime)) statusline.append(".") report.append("".join(statusline)) @@ -166,7 +178,7 @@ def add_latestpatch(self, report): report.append("* %s" % actievent.subject) report.append(" %s" % actievent.url()) report.append( - " %s days ago, by %s" % (regzbot.days_delta(actievent.gmtime), actievent.author) + " %s days ago, by %s" % (_mail_days_delta(actievent.gmtime), actievent.author) ) break @@ -235,7 +247,33 @@ def __init__( self.reporttext = reporttext @classmethod - def __create_mail(cls, content, treename): + def listed(cls, lastreport_gmtime): + regressionslist = list() + for regression in RegressionMailReport.get_all(only_unsolved=True): + # ignore some + if regression._actievents: + last_activity = regression._actievents[-1].gmtime + else: + last_activity = regression._histevents[-1].gmtime + regressionslist.append( + cls( + regression._actim_report.entry, + regression.gmtime, + regression.gmtime_filed, + last_activity, + regression.treename, + regression.versionline, + regression.backburner, + regression.identified, + regression.mailreport(lastreport_gmtime), + ) + ) + + regressionslist.sort(key=lambda x: x.gmtime_activity, reverse=True) + return regressionslist + + @classmethod + def __create_mail(cls, content, treename, *, fixed_message_id=False): msg = EmailMessage() msg["To"] = ( "LKML , Linus Torvalds , Linux regressions mailing list " @@ -243,25 +281,29 @@ def __create_mail(cls, content, treename): msg["Subject"] = "%s for %s [%s]" % ( regzbot.REPORT_SUBJECT_PREFIX, treename, - datetime.date.today(), + _mail_now().date(), ) - msg["Date"] = email.utils.localtime() - msg["Message-ID"] = email.utils.make_msgid(domain="leemhuis.info") + msg["Date"] = email.utils.formatdate(timeval=_mail_now().timestamp(), localtime=True) + if fixed_message_id: + msg["Message-ID"] = "" + else: + msg["Message-ID"] = email.utils.make_msgid(domain="leemhuis.info") msg.set_content(content, cte="quoted-printable") return msg @classmethod - def pagecreate(cls, categories, treename, lastreport_msgid): + def pagecreate(cls, categories, treename, lastreport_msgid, *, interactive=True): def repintro(report, number_issues, treename): intro = list() - print("Enter/Paste your intro for %s and hit Ctrl-D to save it." % treename) - while True: - try: - line = input() - except EOFError: - break - intro.append(line) + if interactive: + print("Enter/Paste your intro for %s and hit Ctrl-D to save it." % treename) + while True: + try: + line = input() + except EOFError: + break + intro.append(line) if report: intro.append("\n---\n") @@ -450,11 +492,7 @@ def categorize(cls, regressionlist, lastreport_gmtime): } for regression in regressionlist: - filed_days = ( - datetime.datetime.now(datetime.timezone.utc) - - datetime.datetime.fromtimestamp(regression.gmtime_filed, datetime.timezone.utc) - ).days - last_activity_days = regzbot.days_delta(regression.gmtime_activity) + last_activity_days = _mail_days_delta(regression.gmtime_activity) if regression.backburner: if lastreport_gmtime > regression.gmtime_activity: @@ -512,71 +550,71 @@ def categorize(cls, regressionlist, lastreport_gmtime): return categories @classmethod - def compile(cls): - logger.debug("[reportmail] generating") + def prepare_reports(cls, categories, lastreport_msgid, *, interactive=True): + reports = dict() + for treename in categories.keys(): + reports[treename] = cls.pagecreate( + categories[treename], treename, lastreport_msgid, interactive=interactive + ) + return reports + + @classmethod + def lastreport(cls): + if regzbot.is_running_citesting("offline"): + lastreport_gmtime = regzbot._TESTING["mail_lastreport_gmtime"] + lastreport_msgid = regzbot._TESTING.get("mail_lastreport_msgid") + else: + lastreport_msgid = regzbot.RegzbotState.get("lastreport_mainline_msgid") + lastreport_gmtime = regzbot.RegzbotState.get("lastreport_mainline_gmtime") - lastreport_msgid = regzbot.RegzbotState.get("lastreport_mainline_msgid") - lastreport_gmtime = regzbot.RegzbotState.get("lastreport_mainline_gmtime") if lastreport_gmtime: lastreport_gmtime = int(lastreport_gmtime) else: - lastreport_gmtime = int(datetime.datetime.now(datetime.timezone.utc).timestamp()) + lastreport_gmtime = int(_mail_now().timestamp()) + return lastreport_gmtime, lastreport_msgid + + @classmethod + def prepare(cls, *, interactive=True): + lastreport_gmtime, lastreport_msgid = cls.lastreport() logger.debug("[reportmail] lastreport was %s" % lastreport_gmtime) # gather everything we need - regressionslist = list() + categories = cls.categorize(cls.listed(lastreport_gmtime), lastreport_gmtime) + reports = cls.prepare_reports(categories, lastreport_msgid, interactive=interactive) + return reports, categories - for regression in RegressionMailReport.get_all(only_unsolved=True): - # ignore some - if regression._actievents: - last_activity = regression._actievents[-1].gmtime - else: - last_activity = regression._histevents[-1].gmtime - last_activity_days = regzbot.days_delta(last_activity) - if regression._actievents: - last_activity = regression._actievents[-1].gmtime - else: - last_activity = regression._histevents[-1].gmtime - regressionslist.append( - cls( - regression._actim_report.entry, - regression.gmtime, - regression.gmtime_filed, - last_activity, - regression.treename, - regression.versionline, - regression.backburner, - regression.identified, - regression.mailreport(lastreport_gmtime), - ) - ) - - regressionslist.sort(key=lambda x: x.gmtime_activity, reverse=True) - categories = cls.categorize(regressionslist, lastreport_gmtime) - - report_gmtime = int(datetime.datetime.now(datetime.timezone.utc).timestamp()) + @classmethod + def publish(cls, reports, *, interactive=True): + report_gmtime = int(_mail_now().timestamp()) + lastreport_msgid = None with tempfile.TemporaryDirectory() as tmpdirname: - for counter, treename in enumerate(categories.keys()): - report = cls.pagecreate(categories[treename], treename, lastreport_msgid) - + counter = 0 + for treename, report in reports.items(): if not report: logger.info("Nothing to report for %s" % treename) continue filename = os.path.join(tmpdirname, "%s-regzbotreport-%s" % (counter, treename)) - msg = cls.__create_mail(report, treename) + msg = cls.__create_mail(report, treename, fixed_message_id=not interactive) lastreport_msgid = msg["Message-ID"].strip("<>") - print("#" * 120) - print("\n%s\n" % filename) - print("#" * 120) - print(report) + if interactive: + print("#" * 120) + print("\n%s\n" % filename) + print("#" * 120) + print(report) with open(filename, "w") as out: - gen = email.generator.Generator(out) + gen = email_generator.Generator(out) gen.flatten(msg) + counter += 1 - print("#" * 120) + if counter == 0: + return + + if not interactive: + return + print("#" * 120) print( "Review the reports in %s and sent them using \"git send-email --from='Regzbot (on behalf of Thorsten Leemhuis) ' --suppress-cc=self --to '' %s/*\"" % (tmpdirname, tmpdirname) @@ -584,8 +622,25 @@ def compile(cls): answer = input("Enter c to confirm you sent the report, anything else to abort: ") if answer.lower() != "c": return + regzbot.RegzbotState.set("lastreport_mainline_gmtime", report_gmtime) regzbot.RegzbotState.set("lastreport_mainline_msgid", lastreport_msgid) - lastreport_msgid = regzbot.RegzbotState.get("lastreport_mainline_msgid") logger.debug("[report] generated") + + @classmethod + def compile(cls, *, interactive=True): + logger.debug("[reportmail] generating") + reports, _categories = cls.prepare(interactive=interactive) + cls.publish(reports, interactive=interactive) + + +def dumpall_mail(): + reports, categories = RegExportMailReport.prepare(interactive=False) + if not any(category["entries"] for category in categories.get("mainline", {}).values()): + yield "MAIL_MAINLINE: (empty)\n\n" + return + + yield "MAIL_MAINLINE:\n" + yield reports.get("mainline", "") + yield "\n" diff --git a/regzbot/export_web.py b/regzbot/export_web.py index 1542808..bdddeb8 100644 --- a/regzbot/export_web.py +++ b/regzbot/export_web.py @@ -17,6 +17,17 @@ logger = regzbot.logger +def _web_now(): + mail_now = regzbot._TESTING.get("mail_now") + if mail_now is not None: + return mail_now + return regzbot.timendate_now() + + +def _web_days_delta(past): + return (_web_now() - datetime.datetime.fromtimestamp(past, datetime.timezone.utc)).days + + class RegLinkWeb(regzbot.RegLink): def __init__(self, *args): super().__init__(*args) @@ -633,7 +644,8 @@ def __init__( solved_reason, backburner, identified, - htmlsnippet, + subject, + htmlsnippet=None, ): self.repsrc = repsrc self.gmtime_report = gmtime_report @@ -645,6 +657,7 @@ def __init__( self.solved_reason = solved_reason self.backburner = backburner self.identified = identified + self.subject = subject self.htmlsnippet = htmlsnippet @staticmethod @@ -999,7 +1012,7 @@ def categorize(cls, regressionlist): } for regression in regressionlist: - last_activity_days = regzbot.days_delta(regression.gmtime_activity) + last_activity_days = _web_days_delta(regression.gmtime_activity) if regression.solved_reason == "inconclusive": categories["inconclusive"]["default"]["entries"].append(regression) elif regression.gmtime_solved: @@ -1097,24 +1110,22 @@ def regression_to_json(cls, regression): } @classmethod - def compile(cls): - logger.debug("[webpages] generating") + def _events_gmtime_offset(cls): + events_gmtime_offset = int(_web_now().timestamp()) - 604800 + if regzbot.is_running_citesting("offline"): + events_gmtime_offset = int(_web_now().timestamp()) - 604800 * 52 * 10 + return events_gmtime_offset + @classmethod + def prepare(cls, *, with_html=False): # these are the pages we are going to create htmlpages = ("next", "mainline", "stable", "new", "all", "resolved", "inconclusive") - - # handle this page first, as we need something from it anyway - unhandled_count = cls.create_unhandled(regzbot.WEBPAGEDIR, htmlpages) + unhandled_count = len(list(UnhandledEventWeb.get_all())) + events_gmtime_offset = cls._events_gmtime_offset() # gather everything we need regressionslist = list() eventslist = list() - events_gmtime_offset = ( - int(datetime.datetime.now(datetime.timezone.utc).timestamp()) - 604800 - ) - if regzbot.is_running_citesting("offline"): - events_gmtime_offset = 604800 * 52 * 10 - json_data = list() for regression in RegressionWeb.get_all(): json_data.append(cls.regression_to_json(regression)) @@ -1136,6 +1147,7 @@ def compile(cls): last_activity = regression._actievents[-1].gmtime else: last_activity = regression._histevents[-1].gmtime + htmlsnippet = regression.html() if with_html else None regressionslist.append( cls( regression._actim_report.repsrc, @@ -1148,16 +1160,33 @@ def compile(cls): regression.solved_reason, regression.backburner, regression.identified, - regression.html(), + regression.subject, + htmlsnippet, ) ) - cls.create_scriptfile_reldate() - eventslist.sort(key=lambda x: x["gmtime"], reverse=True) + return { + "htmlpages": htmlpages, + "unhandled_count": unhandled_count, + "regressionslist": regressionslist, + "json_data": json_data, + "eventslist": eventslist, + } + + @classmethod + def publish(cls, prepared): + htmlpages = prepared["htmlpages"] + unhandled_count = prepared["unhandled_count"] + regressionslist = prepared["regressionslist"] + json_data = prepared["json_data"] + eventslist = prepared["eventslist"] + + # handle this page first, as we need something from it anyway + cls.create_unhandled(regzbot.WEBPAGEDIR, htmlpages) + cls.create_scriptfile_reldate() cls.create_events(regzbot.WEBPAGEDIR, unhandled_count, htmlpages, eventslist) # we don't need this anymore now that we iterated over all regressions - eventslist = events_gmtime_offset = None # create the page listing all regressions, sorted by date regressionslist.sort(key=lambda x: x.gmtime_report, reverse=True) @@ -1187,10 +1216,7 @@ def compile(cls): for regression in regressionslist: if regression.gmtime_solved: continue - filed_days = ( - datetime.datetime.now(datetime.timezone.utc) - - datetime.datetime.fromtimestamp(regression.gmtime_filed, datetime.timezone.utc) - ).days + filed_days = _web_days_delta(regression.gmtime_filed) if filed_days < 7: categories[regression.treename]["entries"].append(regression) else: @@ -1221,4 +1247,28 @@ def compile(cls): with open(os.path.join(regzbot.WEBPAGEDIR, "regressions.json"), "w") as jsonfile: jsonfile.write(json.dumps(json_data)) + @classmethod + def compile(cls): + logger.debug("[webpages] generating") + cls.publish(cls.prepare(with_html=True)) logger.debug("[webpages] generated") + + +def dumpall_web(): + prepared = RegExportWeb.prepare(with_html=False) + regressionslist = prepared["regressionslist"] + regressionslist.sort(key=lambda x: x.gmtime_activity, reverse=True) + categories = RegExportWeb.categorize(regressionslist) + mainline = categories.get("mainline", {}) + if not any(section["entries"] for section in mainline.values()): + yield "WEB_MAINLINE: (empty)\n\n" + return + + yield "WEB_MAINLINE:\n" + for section_name, section in mainline.items(): + if not section["entries"]: + continue + yield "[%s]\n" % section_name + for entry in section["entries"]: + yield "- %s: %s\n" % (entry.repsrc.entryid, entry.subject) + yield "\n" diff --git a/regzbot/testing_offline.py b/regzbot/testing_offline.py index 82c2c7c..c02055f 100644 --- a/regzbot/testing_offline.py +++ b/regzbot/testing_offline.py @@ -22,6 +22,7 @@ import git import regzbot import regzbot.export_csv +import regzbot.export_mail import regzbot.export_web import regzbot._repsources._lore @@ -448,6 +449,12 @@ def init_mailsdir(path_tmpmail): def init(tmpdir, testdatadir): regzbot.set_citesting("offline") + regzbot._TESTING["mail_now"] = datetime.datetime.fromtimestamp( + Emaildir._startdate + 30 * 86400, datetime.timezone.utc + ) + regzbot._TESTING["mail_lastreport_gmtime"] = Emaildir._startdate - 86400 + regzbot._TESTING["mail_lastreport_msgid"] = "testing-lastreport@example.com" + _, databasedir, gittreesdir, _ = regzbot.basicressources_get_dirs( tmpdir=tmpdir, databasedir=os.path.join(tmpdir, "db-offlinetsts") ) @@ -508,9 +515,14 @@ def run(resultfilename, tmpdir, testdatadir): resultfile.write("[%s_%s_%s]\n" % (testfuncprefix, outercount, innercount)) for data in regzbot.export_csv.dumpall_csv(): resultfile.write(data) + for data in regzbot.export_mail.dumpall_mail(): + resultfile.write(data) + for data in regzbot.export_web.dumpall_web(): + resultfile.write(data) resultfile.write("\n") regzbot.export_web.RegExportWeb.compile() + regzbot.export_mail.RegExportMailReport.compile(interactive=False) if instructions and "wait" in instructions: # regzbot.db_commit() diff --git a/requirements-dev.txt b/requirements-dev.txt index 60ff385..c3c628f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,3 @@ ruff==0.11.9 pre-commit==4.2.0 +coverage diff --git a/testdata/expected/results-offline.csv b/testdata/expected/results-offline.csv index b0422a1..e0f1101 100644 --- a/testdata/expected/results-offline.csv +++ b/testdata/expected/results-offline.csv @@ -4,6 +4,8 @@ INITIAL_REPORT: 1546304400, test_0_0: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_0_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com/, 1546304400, PatchKind(None) HISTORY: test_0_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com/, 1546304400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_1] REGRESSION: test_0_0: Lorem ipsum dolor sit amet, 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -13,6 +15,8 @@ ACTIVITY: test_0_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: test_0_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_1@example.com/, introduced: 4ddd01e474b98c0273c0fced667588abf78f3783 LATEST: test_0_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_1@example.com/, 1546390800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_2] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -24,6 +28,8 @@ HISTORY: test_0_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, HISTORY: test_0_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_1@example.com/, introduced: 4ddd01e474b98c0273c0fced667588abf78f3783 HISTORY: test_0_2: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_2@example.com/, summary: test_0_0: updated title (set by test_0_2) LATEST: test_0_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_2@example.com/, 1546477200, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_3] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -45,6 +51,8 @@ ACTIVITY: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_0_3: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_3_1: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, duplicate: https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com LATEST: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, 1546650000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_4] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -69,6 +77,8 @@ ACTIVITY: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_0_3: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_3_1: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, duplicate: https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com LATEST: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, 1546650000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_5] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -97,6 +107,8 @@ ACTIVITY: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_0_3: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_3_1: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, duplicate: https://lore.kernel.org/regressions/regzbot-testing-test_0_0@example.com LATEST: test_0_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_3_1@example.com/, 1546650000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_6] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -131,6 +143,8 @@ ACTIVITY: test_0_6: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor ACTIVITY: test_0_6_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_6_1@example.com/, 1546995600, PatchKind(None) HISTORY: test_0_6_1: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_6_1@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_6_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_6_1@example.com/, 1546995600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_7] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -168,6 +182,8 @@ ACTIVITY: test_0_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: test_0_6_1: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_6_1@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_7: Lorem ipsum dolor sit amet, 1547082000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_7@example.com/, resolve: some reason LATEST: test_0_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_7@example.com/, 1547082000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_8] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -210,6 +226,8 @@ INITIAL_REPORT: 1547168400, test_0_8: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_0_8: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_0_8@example.com/, 1547168400, PatchKind(None) HISTORY: test_0_8: Lorem ipsum dolor sit amet, 1547168400, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_0_8@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_8: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_0_8@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_9] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -259,6 +277,8 @@ ACTIVITY: test_0_9_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l ACTIVITY: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, 1547427600, PatchKind(None) HISTORY: test_0_9_2: Lorem ipsum dolor sit amet, 1547427600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, 1547427600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_10] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -309,6 +329,8 @@ ACTIVITY: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_0_9_2: Lorem ipsum dolor sit amet, 1547427600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_10_0: Lorem ipsum dolor sit amet, 1547514000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_10_0@example.com/, summary: updated title, set by test_0_10_0 LATEST: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, 1547427600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_11] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -360,6 +382,8 @@ HISTORY: test_0_9_2: Lorem ipsum dolor sit amet, 1547427600, Regzbot testingmail HISTORY: test_0_10_0: Lorem ipsum dolor sit amet, 1547514000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_10_0@example.com/, summary: updated title, set by test_0_10_0 HISTORY: test_0_11_0: Lorem ipsum dolor sit amet, 1547600400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_11_0@example.com/, poke LATEST: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, 1547427600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_12] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -413,6 +437,8 @@ HISTORY: test_0_9_2: Lorem ipsum dolor sit amet, 1547427600, Regzbot testingmail HISTORY: test_0_10_0: Lorem ipsum dolor sit amet, 1547514000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_10_0@example.com/, summary: updated title, set by test_0_10_0 HISTORY: test_0_11_0: Lorem ipsum dolor sit amet, 1547600400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_11_0@example.com/, poke LATEST: test_0_9_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_9_2@example.com/, 1547427600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_13] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -468,6 +494,67 @@ HISTORY: test_0_10_0: Lorem ipsum dolor sit amet, 1547514000, Regzbot testingmai HISTORY: test_0_11_0: Lorem ipsum dolor sit amet, 1547600400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_11_0@example.com/, poke HISTORY: test_0_13_0: Lorem ipsum dolor sit amet, 1547773200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_13_0@example.com/, backburn: Some reason LATEST: test_0_13_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_13_0@example.com/, 1547773200, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================= +on back burner, but with activity since the last report +======================================================= + + +[ *NEW* ] updated title, set by test_0_10_0 +------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_0_9_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_0_9_0@example.com/ + +By Regzbot testingmail; 19 days ago; 4 activities, latest 13 days ago. +Introduced in v1.8..v1.9-rc1 + +Recent activities from: Regzbot testingmail (4) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_0_14] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -525,6 +612,8 @@ HISTORY: test_0_11_0: Lorem ipsum dolor sit amet, 1547600400, Regzbot testingmai HISTORY: test_0_13_0: Lorem ipsum dolor sit amet, 1547773200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_13_0@example.com/, backburn: Some reason HISTORY: test_0_14_0: Lorem ipsum dolor sit amet, 1547859600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_14_0@example.com/, unbackburn LATEST: test_0_14_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_14_0@example.com/, 1547859600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_15] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -625,6 +714,8 @@ HISTORY: test_0_15_6: Lorem ipsum dolor sit amet, 1548464400, Regzbot testingmai HISTORY: This is a mainline_master commit for testing regzbot, the content doesn't matter., 1548550800, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4169881b9e0781b2286dc94e4cb731982c5371e7, fixed: 'fix' commit '4169881b9e07' now in 'mainline' HISTORY: test_0_15_7: Lorem ipsum dolor sit amet, 1548550800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_15_7@example.com/, fix: 4169881b9e0781b2286dc94e4cb731982c5371e7 LATEST: 4169881b9e07, the fix specified through '#regzbot fix:' earlier landed in mainline, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4169881b9e0781b2286dc94e4cb731982c5371e7, 1548550800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_16] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -728,6 +819,8 @@ HISTORY: test_0_15_6: Lorem ipsum dolor sit amet, 1548464400, Regzbot testingmai HISTORY: This is a mainline_master commit for testing regzbot, the content doesn't matter., 1548550800, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4169881b9e0781b2286dc94e4cb731982c5371e7, fixed: 'fix' commit '4169881b9e07' now in 'mainline' HISTORY: test_0_15_7: Lorem ipsum dolor sit amet, 1548550800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_15_7@example.com/, fix: 4169881b9e0781b2286dc94e4cb731982c5371e7 LATEST: 4169881b9e07, the fix specified through '#regzbot fix:' earlier landed in mainline, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4169881b9e0781b2286dc94e4cb731982c5371e7, 1548550800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_17] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -847,6 +940,8 @@ ACTIVITY: test_0_17_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https:// HISTORY: test_0_17_2: Lorem ipsum dolor sit amet, 1548896400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_17_2@example.com/, introduced: v1.8..v1.9-rc1 [implicit via duplicate] HISTORY: test_0_17_2: Lorem ipsum dolor sit amet, 1548896400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_17_2@example.com/, duplicate: https://lore.kernel.org/regressions/regzbot-testing-test_0_17_0@example.com/ [implicit via duplicate] LATEST: test_0_17_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_0_17_3@example.com/, 1548982800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_18] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -969,6 +1064,8 @@ LATEST: test_0_17_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lo REGRESSION: test_0_18: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags INITIAL_REPORT: 1549069200, test_0_18: Lorem ipsum dolor sit amet, Regzbot testingmail, nobody@example.com, https://bugzilla.example.com/show_bug.cgi?id=215744 HISTORY: test_0_18: Lorem ipsum dolor sit amet, 1549069200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_18@example.com/, introduced: v1.8..v1.9-rc1 +MAIL_MAINLINE: (empty) + [offltest_0_19] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -1097,6 +1194,8 @@ ACTIVITY: test_0_19_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https:// ACTIVITY: test_0_19_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_19_1@example.com/, 1549242000, PatchKind(None) HISTORY: test_0_19_1: Lorem ipsum dolor sit amet, 1549242000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_19_1@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_19_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_19_1@example.com/, 1549242000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_20] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -1232,6 +1331,8 @@ SOLVED: None, 1549328400, None, None, None [duplicate of 12] HISTORY: test_0_20_0: Lorem ipsum dolor sit amet, 1549328400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_20_0@example.com/, introduced: v1.8..v1.9-rc1 [implicit via duplicate] HISTORY: test_0_20_0: Lorem ipsum dolor sit amet, 1549328400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_20_0@example.com/, duplicate: https://bugzilla.example.com/show_bug.cgi?id=215744 [implicit via duplicate] HISTORY: test_0_20_0: Lorem ipsum dolor sit amet, 1549328400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_20_0@example.com/, duplicate: https://bugzilla.example.com/show_bug.cgi?id=215744 +MAIL_MAINLINE: (empty) + [offltest_0_21] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -1374,6 +1475,8 @@ ACTIVITY: test_0_21: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lo HISTORY: test_0_21: Lorem ipsum dolor sit amet, 1549414800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_21@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_0_21: Lorem ipsum dolor sit amet, 1549414800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_21@example.com/, inconclusive: some reason LATEST: test_0_21: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_21@example.com/, 1549414800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_22] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -1522,6 +1625,8 @@ ACTIVITY: test_0_22_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https:// ACTIVITY: test_0_22_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_22_1@example.com/, 1549587600, PatchKind(None) HISTORY: test_0_22_2: Lorem ipsum dolor sit amet, 1549674000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_0_22_2@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_22_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_22_1@example.com/, 1549587600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_0_23] REGRESSION: test_0_0: updated title (set by test_0_2), 4ddd01e474b9 (v1.10-rc1^0), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=4ddd01e474b98c0273c0fced667588abf78f3783, mainline, master, latest: culprit indentified @@ -1678,6 +1783,8 @@ ACTIVITY: test_0_23_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https:// ACTIVITY: test_0_23_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_23_3@example.com/, 1550019600, PatchKind(None) HISTORY: test_0_23_2: Lorem ipsum dolor sit amet, 1549933200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_23_2@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_0_23_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_0_23_3@example.com/, 1550019600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_0] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -1685,6 +1792,8 @@ INITIAL_REPORT: 1546304400, test_1_0: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_1_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_0@example.com/, 1546304400, PatchKind(None) HISTORY: test_1_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_0@example.com/, introduced: v1.8..v1.9-rc1 ("foo: bar baz") LATEST: test_1_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_0@example.com/, 1546304400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_1] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1695,6 +1804,8 @@ ACTIVITY: test_1_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: Testcommit test_1_1, 1546300811, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=c382aece218b38f369e45d233bf27e1a4204243f, fix: c382aece218b [implicit, due to a Link/Closes tag] HISTORY: test_1_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_0@example.com/, introduced: v1.8..v1.9-rc1 ("foo: bar baz") LATEST: test_1_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_0@example.com/, 1546304400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_2] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1713,6 +1824,8 @@ ACTIVITY: test_1_2_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_1_2_0: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_0@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_1_2_1: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_1@example.com/, fix: 74cdebb9321b9b0a3a2b4981b1cec0002b43d124 LATEST: test_1_2_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_1@example.com/, 1546477200, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_3] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1733,6 +1846,8 @@ HISTORY: This is a mainline_master commit for testing regzbot, the content doesn HISTORY: test_1_2_0: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_0@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_1_2_1: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_1@example.com/, fix: 74cdebb9321b9b0a3a2b4981b1cec0002b43d124 LATEST: test_1_2_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_2_1@example.com/, 1546477200, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_4] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1761,6 +1876,8 @@ ACTIVITY: Commit f524db9faf55 in next, Regzbot Testing, https://git.kernel.org/p HISTORY: test_1_4: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_4@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: Testcommit test_1_4, 1577836803, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=f524db9faf55e27d6eab690ea6b489599d84b427, fix: f524db9faf55 in next referred to this regression LATEST: Commit f524db9faf55 in next, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=f524db9faf55e27d6eab690ea6b489599d84b427, 1577836803, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_5] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1796,6 +1913,8 @@ ACTIVITY: Commit ed5b7fedcf07 in stable/linux-1.8.y, Regzbot Testing, https://gi HISTORY: test_1_5: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_5@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: Testcommit test_1_5, 1609459203, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=ed5b7fedcf07bf43186556dfe8b8d5f0356b876c, note: ed5b7fedcf07 in stable/linux-1.8.y referred to this regression LATEST: Commit ed5b7fedcf07 in stable/linux-1.8.y, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=ed5b7fedcf07bf43186556dfe8b8d5f0356b876c, 1609459203, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_6] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1831,6 +1950,8 @@ ACTIVITY: Commit ed5b7fedcf07 in stable/linux-1.8.y, Regzbot Testing, https://gi HISTORY: test_1_5: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_5@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: Testcommit test_1_5, 1609459203, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=ed5b7fedcf07bf43186556dfe8b8d5f0356b876c, note: ed5b7fedcf07 in stable/linux-1.8.y referred to this regression LATEST: Commit ed5b7fedcf07 in stable/linux-1.8.y, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=ed5b7fedcf07bf43186556dfe8b8d5f0356b876c, 1609459203, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_1_7] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1872,6 +1993,67 @@ ACTIVITY: test_1_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: test_1_7: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/, introduced: 74cdebb9321b9b0a3a2b4981b1cec0002b43d124 HISTORY: Testcommit test_1_6, 1546736401, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=f1e96749c4e872fd8f217d0d6529bcc308560d72, note: 'f1e96749c4e8' in 'mainline' contains a 'Fixes:' tag for the culprit of this regression LATEST: test_1_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/, 1546736400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_1_8] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1914,6 +2096,67 @@ HISTORY: Testcommit test_1_8, 1546300814, Regzbot Testing, https://git.kernel.or HISTORY: test_1_7: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/, introduced: 74cdebb9321b9b0a3a2b4981b1cec0002b43d124 HISTORY: Testcommit test_1_6, 1546736401, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=f1e96749c4e872fd8f217d0d6529bcc308560d72, note: 'f1e96749c4e8' in 'mainline' contains a 'Fixes:' tag for the culprit of this regression LATEST: test_1_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/, 1546736400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_1_9] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -1974,6 +2217,67 @@ HISTORY: Testcommit test_1_9, 1546300815, Regzbot Testing, https://git.kernel.or HISTORY: test_1_9_1: Lorem ipsum dolor sit amet, 1546909200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_9_1@example.com/, introduced: v1.8..v1.9-rc1 [implicit via duplicate] HISTORY: test_1_9_1: Lorem ipsum dolor sit amet, 1546909200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_9_1@example.com/, duplicate: https://lore.kernel.org/regressions/regzbot-testing-test_1_9_0@example.com/ [implicit via duplicate] LATEST: Commit f08f29a8bef8 in mainline, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=f08f29a8bef85abfc45b0d0f2067b767e7a14b80, 1546300815, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_1_10] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -2046,6 +2350,67 @@ HISTORY: test_1_10_0: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmai HISTORY: test_1_10_0: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_10_0@example.com/, fix: This is a test 123456789 HISTORY: This is a test 123456789, 1547082000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_1_10_1@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_1_10_1@example.com/ This is a test 123456789 [implicit, subject is expected] LATEST: This is a test 123456789, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_1_10_1@example.com/, 1547082000, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_1_11] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -2127,6 +2492,67 @@ HISTORY: test_1_11_0: Lorem ipsum dolor sit amet, 1547168400, Regzbot testingmai HISTORY: This is a test 123456789, 1547168400, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=444da15955318f55af9aea5283a81ede7cb011d6, fixed: 'fix' commit '444da1595531' now in 'mainline' HISTORY: test_1_11_0: Lorem ipsum dolor sit amet, 1547168400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_11_0@example.com/, fix: This is a test 123456789 LATEST: test_1_11_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_11_0@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_1_12] REGRESSION: test_1_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: culprit indentified @@ -2216,6 +2642,67 @@ ACTIVITY: test_1_12_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https:// HISTORY: Testcommit test_1_12_0, 1546300817, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=c10bd38f6fbb5a1e3678294d048c1a4b99896e1c, fix: c10bd38f6fbb [implicit, due to a Link/Closes tag] HISTORY: test_1_12_0: Lorem ipsum dolor sit amet, 1547254800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_12_0@example.com/, introduced: v1.8..v1.9-rc1 LATEST: test_1_12_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_1_12_0@example.com/, 1547254800, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_1_7: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_1_7@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_1_7@example.com/ + +By Regzbot testingmail; 25 days ago; 1 activities, latest 25 days ago. +Introduced in 74cdebb9321b + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_2_0] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2226,6 +2713,8 @@ ACTIVITY: test_2_0_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://l HISTORY: test_2_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_2_0_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_0_1@example.com/, relatebrief: https://www.kernel.org/releases.html Linktitle LATEST: test_2_0_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_0_1@example.com/, 1546390800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_1] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2238,6 +2727,8 @@ HISTORY: test_2_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, HISTORY: test_2_0_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_0_1@example.com/, relatebrief: https://www.kernel.org/releases.html Linktitle HISTORY: test_2_1: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_1@example.com/, relatebrief: https://www.kernel.org/releases.html Updated linktitle LATEST: test_2_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_1@example.com/, 1546477200, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_2] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2251,6 +2742,8 @@ HISTORY: test_2_0_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail HISTORY: test_2_1: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_1@example.com/, relatebrief: https://www.kernel.org/releases.html Updated linktitle HISTORY: test_2_2: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_2@example.com/, unrelate: https://www.kernel.org/releases.html LATEST: test_2_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_2@example.com/, 1546563600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_3] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2265,6 +2758,8 @@ HISTORY: test_2_1: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, HISTORY: test_2_2: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_2@example.com/, unrelate: https://www.kernel.org/releases.html HISTORY: test_2_3: refer to this regression on another mainling list, 1546650000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com/, note: https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com test_2_3: refer to this regression on another mainling list [implicit due to link] LATEST: test_2_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_2@example.com/, 1546563600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_4] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2283,6 +2778,8 @@ HISTORY: test_2_2: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, HISTORY: test_2_3: refer to this regression on another mainling list, 1546650000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com/, note: https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com test_2_3: refer to this regression on another mainling list [implicit due to link] HISTORY: test_2_4: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_4@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com LATEST: test_2_4: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_4@example.com/, 1546736400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_5] REGRESSION: test_2_0: Lorem ipsum dolor sit amet, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2302,6 +2799,8 @@ HISTORY: test_2_2: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, HISTORY: test_2_3: refer to this regression on another mainling list, 1546650000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com/, note: https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com test_2_3: refer to this regression on another mainling list [implicit due to link] HISTORY: test_2_4: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_4@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com LATEST: test_2_5: reply to the thread now monitored, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_5@example.com/, 1546822800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_6] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2323,6 +2822,8 @@ HISTORY: test_2_3: refer to this regression on another mainling list, 1546650000 HISTORY: test_2_4: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_4@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 1546909200, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_6@example.com/, summary: new title set via a monitored thread LATEST: test_2_6: reply to the thread now monitored with a regzbot command, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_6@example.com/, 1546909200, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_7] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2342,6 +2843,8 @@ HISTORY: test_2_4: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 1546909200, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_6@example.com/, summary: new title set via a monitored thread HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com LATEST: test_2_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, 1546995600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_8] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2361,6 +2864,8 @@ HISTORY: test_2_4: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 1546909200, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_6@example.com/, summary: new title set via a monitored thread HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com LATEST: test_2_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, 1546995600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_9] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2383,6 +2888,8 @@ HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 154 HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com HISTORY: test_2_9: refer to this regression on another mainling list, 1547168400, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_9: refer to this regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_10] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2405,6 +2912,8 @@ HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 154 HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com HISTORY: test_2_9: refer to this regression on another mainling list, 1547168400, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_9: refer to this regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_11] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2427,6 +2936,8 @@ HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 154 HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com HISTORY: test_2_9: refer to this regression on another mainling list, 1547168400, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_9: refer to this regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_2_12] REGRESSION: new title set via a monitored thread, v1.8..v1.9-rc1 (None), None, mainline, master, previous: no flags @@ -2452,6 +2963,8 @@ HISTORY: test_2_6: reply to the thread now monitored with a regzbot command, 154 HISTORY: test_2_7: Lorem ipsum dolor sit amet, 1546995600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_7@example.com/, unrelate: https://lore.kernel.org/lkml/regzbot-testing-test_2_3@example.com HISTORY: test_2_9: refer to this regression on another mainling list, 1547168400, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_12_3: add a mail with a simple patch, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_12_3@example.com/, 1547686800, PatchKind(DIFF|SUBJECT|SIGNEDOFF) +MAIL_MAINLINE: (empty) + [offltest_2_13] REGRESSION: new title set via a monitored thread, 23bde5c338c7 (None), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=23bde5c338c7d028609c1af64173853fb1b84018, mainline, master, indevelopment: culprit indentified @@ -2480,6 +2993,77 @@ HISTORY: test_2_9: refer to this regression on another mainling list, 1547168400 HISTORY: test_2_13_0: Lorem ipsum dolor sit amet, 1547773200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_13_0@example.com/, introduced: 23bde5c338c7d028609c1af64173853fb1b84018 HISTORY: test_2_13_1: Lorem ipsum dolor sit amet, 1547859600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_13_1@example.com/, note: "test_2_13_1: Lorem ipsum dolor sit amet" contains a 'Fixes:' tag for the culprit of this regression LATEST: test_2_13_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_13_0@example.com/, 1547773200, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] new title set via a monitored thread +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/ + +By Regzbot testingmail; 30 days ago; 11 activities, latest 13 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (11) + +3 patch postings are associated with this regression, the latest is this: +* test_2_12_3: add a mail with a simple patch + https://lore.kernel.org/regressions/regzbot-testing-test_2_12_3@example.com/ + 14 days ago, by Regzbot testingmail + +Noteworthy links: +* test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] + https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ + 20 days ago, by Regzbot testingmail; thread monitored. + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_2_14] REGRESSION: new title set via a monitored thread, 23bde5c338c7 (None), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=23bde5c338c7d028609c1af64173853fb1b84018, mainline, master, indevelopment: culprit indentified @@ -2524,6 +3108,77 @@ ACTIVITY: test_2_14_2: refer to this regression on another mainling list, Regzbo HISTORY: test_2_14_1: Lorem ipsum dolor sit amet, 1548032400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_1@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_2_14_2: refer to this regression on another mainling list, 1548118800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/, relate: https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/ test_2_14_2: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_14_2: refer to this regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/, 1548118800, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] new title set via a monitored thread +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/ + +By Regzbot testingmail; 30 days ago; 11 activities, latest 13 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (11) + +3 patch postings are associated with this regression, the latest is this: +* test_2_12_3: add a mail with a simple patch + https://lore.kernel.org/regressions/regzbot-testing-test_2_12_3@example.com/ + 14 days ago, by Regzbot testingmail + +Noteworthy links: +* test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] + https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ + 20 days ago, by Regzbot testingmail; thread monitored. + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_2_15] REGRESSION: new title set via a monitored thread, 23bde5c338c7 (None), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=23bde5c338c7d028609c1af64173853fb1b84018, mainline, master, indevelopment: culprit indentified @@ -2573,9 +3228,81 @@ ACTIVITY: test_2_14_2: refer to this regression on another mainling list, Regzbo HISTORY: test_2_14_1: Lorem ipsum dolor sit amet, 1548032400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_1@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_2_14_2: refer to this regression on another mainling list, 1548118800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/, relate: https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/ test_2_14_2: refer to this regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_14_2: refer to this regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_2@example.com/, 1548118800, PatchKind(None) +MAIL_MAINLINE: -[offltest_2_16] -REGRESSION: new title set via a monitored thread, 23bde5c338c7 (None), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=23bde5c338c7d028609c1af64173853fb1b84018, mainline, master, indevelopment: culprit indentified +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] new title set via a monitored thread +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_14_0@example.com/ + +By Regzbot testingmail and Regzbot testingmail; 30 days ago; 12 activities, latest 8 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (12) + +3 patch postings are associated with this regression, the latest is this: +* test_2_12_3: add a mail with a simple patch + https://lore.kernel.org/regressions/regzbot-testing-test_2_12_3@example.com/ + 14 days ago, by Regzbot testingmail + +Noteworthy links: +* test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] + https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ + 20 days ago, by Regzbot testingmail; thread monitored. + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ + +[offltest_2_16] +REGRESSION: new title set via a monitored thread, 23bde5c338c7 (None), https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=master&id=23bde5c338c7d028609c1af64173853fb1b84018, mainline, master, indevelopment: culprit indentified INITIAL_REPORT: 1546304400, test_2_0: Lorem ipsum dolor sit amet, Regzbot testingmail, nobody@example.com, https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/ ADDITIONAL_REPORT: 1547946000, test_2_14_0: Lorem ipsum dolor sit amet, Regzbot testingmail, nobody@example.com, https://lore.kernel.org/regressions/regzbot-testing-test_2_14_0@example.com/ LINK: test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag], https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ [monitored] @@ -2630,6 +3357,78 @@ ACTIVITY: test_2_16: refer to newly created regression on another mainling list, HISTORY: test_2_16_0: Lorem ipsum dolor sit amet, 1548291600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_2_16_0@example.com/, introduced: v1.8..v1.9-rc1 HISTORY: test_2_16: refer to newly created regression on another mainling list, 1548378000, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_16@example.com/, relate: https://lore.kernel.org/lkml/regzbot-testing-test_2_16@example.com/ test_2_16: refer to newly created regression on another mainling list [implicit due to Link/Closes tag] LATEST: test_2_16: refer to newly created regression on another mainling list, Regzbot testingmail, https://lore.kernel.org/lkml/regzbot-testing-test_2_16@example.com/, 1548378000, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] new title set via a monitored thread +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_2_14_0@example.com/ + +By Regzbot testingmail and Regzbot testingmail; 30 days ago; 12 activities, latest 8 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (12) + +3 patch postings are associated with this regression, the latest is this: +* test_2_12_3: add a mail with a simple patch + https://lore.kernel.org/regressions/regzbot-testing-test_2_12_3@example.com/ + 14 days ago, by Regzbot testingmail + +Noteworthy links: +* test_2_9: refer to this regression on another mainling list [implicit due to Link/Closes tag] + https://lore.kernel.org/lkml/regzbot-testing-test_2_9@example.com/ + 20 days ago, by Regzbot testingmail; thread monitored. + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_3_0] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, next-20190101..next-20190102 (None), None, next, master, None: no flags @@ -2637,6 +3436,8 @@ INITIAL_REPORT: 1546304400, test_3_0: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_3_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_0@example.com/, 1546304400, PatchKind(None) HISTORY: test_3_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_0@example.com/, introduced: next-20190101..next-20190102 LATEST: test_3_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_0@example.com/, 1546304400, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_3_1] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, b7a9f8146115 (next-20190101^0), https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=b7a9f8146115b087f0d42176af7b686915bdb1f4, next, master, None: culprit indentified @@ -2646,6 +3447,8 @@ ACTIVITY: test_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: test_3_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_0@example.com/, introduced: next-20190101..next-20190102 HISTORY: test_3_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_1@example.com/, introduced: b7a9f8146115b087f0d42176af7b686915bdb1f4 LATEST: test_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_1@example.com/, 1546390800, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_3_2] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, b7a9f8146115 (next-20190101^0), https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=b7a9f8146115b087f0d42176af7b686915bdb1f4, next, master, None: culprit indentified @@ -2660,6 +3463,8 @@ HISTORY: test_3_1: Lorem ipsum dolor sit amet, 1546390800, Regzbot testingmail, HISTORY: test_3_2: Lorem ipsum dolor sit amet, 1546477200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_2@example.com/, fix: fb9bcfaeae8b4ff05fa9dd4989ed78c55e410f90 HISTORY: This is a next_master commit for testing regzbot, the content doesn't matter., 1577836802, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=fb9bcfaeae8b4ff05fa9dd4989ed78c55e410f90, fixed: 'fix' commit 'fb9bcfaeae8b' now in 'next' LATEST: fb9bcfaeae8b, the fix specified through '#regzbot fix:' earlier landed in next, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=fb9bcfaeae8b4ff05fa9dd4989ed78c55e410f90, 1577836802, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_3_3] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, b7a9f8146115 (next-20190101^0), https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=b7a9f8146115b087f0d42176af7b686915bdb1f4, next, master, None: culprit indentified @@ -2679,6 +3484,8 @@ INITIAL_REPORT: 1546563600, test_3_3: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_3_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_3@example.com/, 1546563600, PatchKind(None) HISTORY: test_3_3: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_3@example.com/, introduced: v1.8.1..v1.8.2 LATEST: test_3_3: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_3@example.com/, 1546563600, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_3_4] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, b7a9f8146115 (next-20190101^0), https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=b7a9f8146115b087f0d42176af7b686915bdb1f4, next, master, None: culprit indentified @@ -2700,6 +3507,8 @@ ACTIVITY: test_3_4: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lor HISTORY: test_3_3: Lorem ipsum dolor sit amet, 1546563600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_3@example.com/, introduced: v1.8.1..v1.8.2 HISTORY: test_3_4: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_4@example.com/, introduced: 3f48f5b9a5f LATEST: test_3_4: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_4@example.com/, 1546650000, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_3_5] REGRESSION: test_3_0: Lorem ipsum dolor sit amet, b7a9f8146115 (next-20190101^0), https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=b7a9f8146115b087f0d42176af7b686915bdb1f4, next, master, None: culprit indentified @@ -2726,6 +3535,8 @@ HISTORY: test_3_4: Lorem ipsum dolor sit amet, 1546650000, Regzbot testingmail, HISTORY: test_3_5: Lorem ipsum dolor sit amet, 1546736400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_3_5@example.com/, fix: 3f98da7b235bfe10c0e3f452bd88cc3cc6b50e43 HISTORY: This is a stable_linux-1.8.y commit for testing regzbot, the content doesn't matter., 1609459202, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=3f98da7b235bfe10c0e3f452bd88cc3cc6b50e43, fixed: 'fix' commit '3f98da7b235b' now in 'stable/linux-1.8.y' LATEST: 3f98da7b235b, the fix specified through '#regzbot fix:' earlier landed in stable/linux-1.8.y, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-1.8.y&id=3f98da7b235bfe10c0e3f452bd88cc3cc6b50e43, 1609459202, PatchKind(None) +MAIL_MAINLINE: (empty) + [offltest_4_0] REGRESSION: test_4_0_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -2768,6 +3579,83 @@ INITIAL_REPORT: 1546909200, test_4_0_7: Lorem ipsum dolor sit amet, Regzbot test ACTIVITY: test_4_0_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_0_7@example.com/, 1546909200, PatchKind(None) HISTORY: test_4_0_7: Lorem ipsum dolor sit amet, 1546909200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_0_7@example.com/, introduced: v1.10.. LATEST: test_4_0_7: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_0_7@example.com/, 1546909200, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 2 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_4_0_1: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_1@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_1@example.com/ + +By Regzbot testingmail; 29 days ago; 1 activities, latest 29 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (1) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_4_0_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_4_1] REGRESSION: test_4_0_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -2825,6 +3713,83 @@ INITIAL_REPORT: 1547168400, test_4_1_2: Lorem ipsum dolor sit amet, Regzbot test ACTIVITY: test_4_1_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_1_2@example.com/, 1547168400, PatchKind(None) HISTORY: test_4_1_2: Lorem ipsum dolor sit amet, 1547168400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_1_2@example.com/, introduced: v1.8..next-20190102 LATEST: test_4_1_2: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_1_2@example.com/, 1547168400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 2 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_4_0_1: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_1@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_1@example.com/ + +By Regzbot testingmail; 29 days ago; 1 activities, latest 29 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (1) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_4_0_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_4_2] REGRESSION: test_4_0_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -2907,6 +3872,83 @@ INITIAL_REPORT: 1547600400, test_4_2_4: Lorem ipsum dolor sit amet, Regzbot test ACTIVITY: test_4_2_4: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_2_4@example.com/, 1547600400, PatchKind(None) HISTORY: test_4_2_4: Lorem ipsum dolor sit amet, 1547600400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_2_4@example.com/, introduced: v1.9.2..v1.10 LATEST: test_4_2_4: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_2_4@example.com/, 1547600400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 2 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_4_0_1: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_1@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_1@example.com/ + +By Regzbot testingmail; 29 days ago; 1 activities, latest 29 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (1) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_4_0_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_4_3] REGRESSION: test_4_0_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -2999,6 +4041,83 @@ INITIAL_REPORT: 1547773200, test_4_3_1: Lorem ipsum dolor sit amet, Regzbot test ACTIVITY: test_4_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_3_1@example.com/, 1547773200, PatchKind(None) HISTORY: test_4_3_1: Lorem ipsum dolor sit amet, 1547773200, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_3_1@example.com/, introduced: 123456789012 LATEST: test_4_3_1: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_3_1@example.com/, 1547773200, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 2 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_4_0_1: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_1@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_1@example.com/ + +By Regzbot testingmail; 29 days ago; 1 activities, latest 29 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (1) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_4_0_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_4_4] REGRESSION: test_4_0_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -3143,6 +4262,125 @@ ACTIVITY: Commit 62f89ca29d35 in next, Regzbot Testing, https://git.kernel.org/p HISTORY: test_4_4_10: Lorem ipsum dolor sit amet, 1548723600, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_4_4_10@example.com/, introduced: v1.10..v1.11-rc1 HISTORY: Testcommit test_4_4, 1577836803, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=62f89ca29d354a42662bc61fc2e63ee6af41b3fd, fix: 62f89ca29d35 in next referred to this regression LATEST: Commit 62f89ca29d35 in next, Regzbot Testing, https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=62f89ca29d354a42662bc61fc2e63ee6af41b3fd, 1577836803, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 5 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +======================================================== +current cycle (v1.10.. aka v1.11-rc), culprit identified +======================================================== + + +[ *NEW* ] test_4_4_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_4_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_4_0@example.com/ + +By Regzbot testingmail; 12 days ago; 2 activities, latest 11 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (2) + +Noteworthy links: +* Link somewhere + https://www.kernel.org/releases.html + 11 days ago, by Regzbot testingmail + + +[ *NEW* ] test_4_0_1: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_1@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_1@example.com/ + +By Regzbot testingmail; 29 days ago; 1 activities, latest 29 days ago. +Introduced in 23bde5c338c7 + +Recent activities from: Regzbot testingmail (1) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_4_4_10: Lorem ipsum dolor sit amet +------------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_4_10@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_4_10@example.com/ + +By Regzbot testingmail; 2 days ago; 2 activities, latest -335 days ago. +Introduced in v1.10..v1.11-rc1 + +Fix incoming: +* Testcommit test_4_4 + https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=master&id=62f89ca29d354a42662bc61fc2e63ee6af41b3fd + + +[ *NEW* ] test_4_4_4: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_4_4@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_4_4@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_4_6@example.com/ + +By Regzbot testingmail and Regzbot testingmail; 8 days ago; 2 activities, latest 7 days ago. +Introduced in v1.10..v1.11-rc1 + +Fix incoming: +* https://lore.kernel.org/regressions/regzbot-testing-test_4_4_5@example.com/ + + +[ *NEW* ] test_4_0_0: Lorem ipsum dolor sit amet +------------------------------------------------ +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_4_0_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_4_0_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_5_0] REGRESSION: test_5_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -3150,6 +4388,67 @@ INITIAL_REPORT: 1546304400, test_5_0: Lorem ipsum dolor sit amet, Regzbot testin ACTIVITY: test_5_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/, 1546304400, PatchKind(None) HISTORY: test_5_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/, introduced: v1.10..v1.11-rc1 LATEST: test_5_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/, 1546304400, PatchKind(None) +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_5_0: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_5_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/ + +By Regzbot testingmail; 30 days ago; 1 activities, latest 30 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (1) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_5_1] REGRESSION: test_5_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -3160,6 +4459,67 @@ HISTORY: test_5_0: Lorem ipsum dolor sit amet, 1546304400, Regzbot testingmail, LATEST: test_5_1_0: Lorem ipsum dolor sit amet, Regzbot testingmail, https://lore.kernel.org/regressions/regzbot-testing-test_5_1_0@example.com/, 1546390800, PatchKind(None) UNHANDLED: 1, https://lore.kernel.org/regressions/regzbot-testing-test_5_1_0@example.com/, unknown regzbot command: foobar, 1546390800, None, test_5_1_0: Lorem ipsum dolor sit amet, None, None, None UNHANDLED: 2, https://lore.kernel.org/regressions/regzbot-testing-test_5_1_1@example.com/, regzbot tag in a thread not associated with a regression, 1546477200, None, test_5_1_1: Lorem ipsum dolor sit amet, None, None, None +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_5_0: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_5_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/ + +By Regzbot testingmail; 30 days ago; 2 activities, latest 29 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (2) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/ [offltest_5_2] REGRESSION: test_5_0: Lorem ipsum dolor sit amet, v1.10..v1.11-rc1 (None), None, mainline, master, indevelopment: no flags @@ -3183,4 +4543,65 @@ UNHANDLED: 4, https://lore.kernel.org/regressions/regzbot-testing-test_5_2_1@exa UNHANDLED: 5, https://lore.kernel.org/regressions/regzbot-testing-test_5_2_2@example.com/, unable to unrelate thread http://lore.kernel.org/somelist_somemsgid/, parsing failed, 1546736400, None, test_5_2_2: Lorem ipsum dolor sit amet, None, None, None UNHANDLED: 6, https://lore.kernel.org/regressions/regzbot-testing-test_5_2_3@example.com/, unable to unrelate thread http://lore.kernel.org/somelist/somemsgid/, not related yet, 1546822800, None, test_5_2_3: Lorem ipsum dolor sit amet, None, None, None UNHANDLED: 7, https://lore.kernel.org/regressions/regzbot-testing-test_5_2_4@example.com/, unable to unrelate thread http://lore.kernel.org/regressions/some_fake_msgid/, not related yet, 1546909200, None, test_5_2_4: Lorem ipsum dolor sit amet, None, None, None +MAIL_MAINLINE: + +--- + +Hi, this is regzbot, the Linux kernel regression tracking bot. + +Currently I'm aware of 1 regressions in linux-mainline. Find the +current status below and the latest on the web: + +https://linux-regtracking.leemhuis.info/regzbot/mainline/ + +Bye bye, hope to see you soon for the next report. + Regzbot (on behalf of Thorsten Leemhuis) + + +===================================================== +current cycle (v1.10.. aka v1.11-rc), unknown culprit +===================================================== + + +[ *NEW* ] test_5_0: Lorem ipsum dolor sit amet +---------------------------------------------- +https://linux-regtracking.leemhuis.info/regzbot/regression/lore/regzbot-testing-test_5_0@example.com/ +https://lore.kernel.org/regressions/regzbot-testing-test_5_0@example.com/ + +By Regzbot testingmail; 30 days ago; 7 activities, latest 23 days ago. +Introduced in v1.10..v1.11-rc1 + +Recent activities from: Regzbot testingmail (7) + + +============= +End of report +============= + +All regressions marked '[ *NEW* ]' were added since the previous report, +which can be found here: +https://lore.kernel.org/r/testing-lastreport@example.com + +Thanks for your attention, have a nice day! + + Regzbot, your hard working Linux kernel regression tracking robot + + +P.S.: Wanna know more about regzbot or how to use it to track regressions +for your subsystem? Then check out the getting started guide or the +reference documentation: + +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/getting_started.md +https://gitlab.com/knurd42/regzbot/-/blob/main/docs/reference.md + +The short version: if you see a regression report you want to see +tracked, just send a reply to the report where you Cc +regressions@lists.linux.dev with a line like this: + +#regzbot introduced: v5.13..v5.14-rc1 + +If you want to fix a tracked regression, just do what is expected +anyway: add a 'Link:' tag with the url to the report, e.g.: + +Link: https://lore.kernel.org/all/30th.anniversary.repost@klaava.Helsinki.FI/