The quilt patch titled Subject: get_maintainer: add --substatus for reporting subsystem status - fix has been removed from the -mm tree. Its filename was get_maintainer-add-substatus-for-reporting-subsystem-status-fix.patch This patch was dropped because it was folded into get_maintainer-add-substatus-for-reporting-subsystem-status.patch ------------------------------------------------------ From: Vlastimil Babka <vbabka@xxxxxxx> Subject: get_maintainer: add --substatus for reporting subsystem status - fix Date: Tue, 11 Feb 2025 16:16:11 +0100 The automatically enabled --substatus can break existing scripts that do not disable --rolestats. Require that script output goes to a terminal to enable it automatically. Link: https://lkml.kernel.org/r/66c2bf7a-9119-4850-b6b8-ac8f426966e1@xxxxxxx Signed-off-by: Vlastimil Babka <vbabka@xxxxxxx> Cc: Bryan O'Donoghue <bryan.odonoghue@xxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Kees Cook <kees@xxxxxxxxxx> Cc: Lorenzo Stoakes <lorenzo.stoakes@xxxxxxxxxx> Cc: Ted Ts'o <tytso@xxxxxxx> Cc: Thorsten Leemhuis <linux@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/get_maintainer.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/scripts/get_maintainer.pl~get_maintainer-add-substatus-for-reporting-subsystem-status-fix +++ a/scripts/get_maintainer.pl @@ -317,7 +317,7 @@ $output_rolestats = 1 if ($interactive); $output_roles = 1 if ($output_rolestats); if (!defined $output_substatus) { - $output_substatus = $email && $output_roles; + $output_substatus = $email && $output_roles && -t STDOUT; } if ($sections || $letters ne "") { @@ -1086,7 +1086,7 @@ MAINTAINER field selection options: --remove-duplicates => minimize duplicate email names/addresses --roles => show roles (status:subsystem, git-signer, list, etc...) --rolestats => show roles and statistics (commits/total_commits, %) - --substatus => show subsystem status if not Maintained (default: match --roles)" + --substatus => show subsystem status if not Maintained (default: match --roles when output is tty)" --file-emails => add email addresses found in -f file (default: 0 (off)) --fixes => for patches, add signatures of commits with 'Fixes: <commit>' (default: 1 (on)) --scm => print SCM tree(s) if any _ Patches currently in -mm which might be from vbabka@xxxxxxx are get_maintainer-add-substatus-for-reporting-subsystem-status.patch get_maintainer-stop-reporting-subsystem-status-as-maintainer-role.patch