On Thu, Sep 29, 2022 at 01:24:59AM +0100, Bryan O'Donoghue wrote: > The output of get_maintainer.pl doesn't make clear that a supporter is a > type of maintainer who should be mailed when generating a patch. > > In various places in the documentation we make reference to the necessity > to remember to include the appropriate maintainers when sending your patch > but, we confusingly don't call out supporters as maintainers in our > automation utility. > > Fix that up now by having get_maintainers.pl print 'maintainer[volunteer]' > or 'maintainer[supporter]'. I really don't think this is correct. Or at least, I don't think it's consistent with how we've historically understood the S: term in the MAINTAINERS file. First of all, the Status field is a property of the *subsystem*, not of the *maintainer*. S: *Status*, one of the following: Supported: Someone is actually paid to look after this. Maintained: Someone actually looks after it. Odd Fixes: It has a maintainer but they don't have time to do much other than throw the odd patch in. See below.. Orphan: No current maintainer [but maybe you could take the role as you write your new code]. Obsolete: Old code. Something tagged obsolete generally means it has been replaced by a better system and you should be using that. There are also plenty of projects which are marked "Maintained" where one or more the maintainers are paid to support that subsystem (while others might be volunteers). So to have get_maintainers.pl print that someone is a maintainer[volunteer] versus maintainer[supporter] is going to be highly misleading. What if one of the maintainers is paid by some larger company (say, Google or Facebook or Red Hat), while the other maintainer is a hobbists? And what for the maintainer who is paid by a large company, there are multiple levels of "supported". They might be allowed to spend up to 50% of the paid time working on upstream work. Does that make them a "supported" or a "volunteer"? And how should the subsystem's S: be marked? I understand that get_maintinaer.pl has had this get_maintainer_role function for a long time; it's not been introduced by this patch. But I'd suggest that we not try to make a distinction between a subsystem which is "Supported" versus "Maintained", and certainly we should not be treating an attribute of the subsystem as being attached to all of the entities listed under M:. That is really a category error, IMHO. - Ted