From 0fddb67fa33a3725fb03193a26856d581009eac6 Mon Sep 17 00:00:00 2001 From: Michal Hocko Date: Apr 12 2024 15:34:53 +0000 Subject: scripts/check-kernel-fix: Do not report missing references for EB branches After discussion with Christian Hueller (EB branches maintainer) we have concluded that updating references to CVE fixes which are already in EB branches is not really adding any value so let's just not report them --- diff --git a/scripts/check-kernel-fix b/scripts/check-kernel-fix index 069b3f6..538f908 100755 --- a/scripts/check-kernel-fix +++ b/scripts/check-kernel-fix @@ -279,6 +279,12 @@ find_and_print_toplevel_actions() fi fi + # EB branches do not really need to add missing references + if [[ "$branch" =~ .*-EB.* && "$state" = "missing_references" ]] + then + continue + fi + for merge_branch in $(print_merge_branches $branches_conf $branch) ; do # Make sure merge_branches are in the same cvss scope