From 343f8ef4bca603a6a280812c4c6597825fcc63c5 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 18 Jul 2025 15:04:58 +0200 Subject: syz-cluster: remember LKML series tags Sometimes the patch series directly hint at the kernel tree they should be applied to. Extract and remember this information. --- pkg/email/lore/parse.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/email/lore/parse.go') diff --git a/pkg/email/lore/parse.go b/pkg/email/lore/parse.go index 98152b408..9d1a010f5 100644 --- a/pkg/email/lore/parse.go +++ b/pkg/email/lore/parse.go @@ -29,6 +29,7 @@ type Series struct { MessageID string Version int Corrupted string // If non-empty, contains a reason why the series better be ignored. + Tags []string Patches []Patch } @@ -74,6 +75,7 @@ func PatchSeries(emails []*email.Email) []*Series { Subject: patch.Title, MessageID: thread.MessageID, Version: patch.Version.ValueOr(1), + Tags: patch.Tags, } ret = append(ret, series) if patch.Seq.IsSet() && patch.Seq.Value() > 1 { -- cgit mrf-deployment