RFE: use patchwork to submit a patch

Mauro Carvalho Chehab mchehab at kernel.org
Sat Oct 12 04:37:52 AEDT 2019


Em Fri, 11 Oct 2019 11:20:17 -0600
Shuah Khan <skhan at linuxfoundation.org> escreveu:

> On 10/11/19 2:57 AM, Greg KH wrote:
> > On Thu, Oct 10, 2019 at 10:41:50AM -0400, Konstantin Ryabitsev wrote:  
> >> Hi, all:
> >>
> >> I would like to propose a new (large) feature to patchwork with the goal to
> >> make the process of submitting a patch easier for newbies and people
> >> generally less familiar with patch-based development. This was discussed
> >> previously on the workflows list:
> >> https://lore.kernel.org/workflows/20190930202451.GA14403@pure.paranoia.local/
> >>
> >> How I envision this would work:
> >>
> >> - user creates an account (which requires a mail confirmation) >> - they choose a "submit patch" option from the menu
> >> - the patch submission screen has a succession of screens:
> >>
> >>   1. a screen with a single field allowing a user to paste a URL to     their
> >> fork of the git repository. Once submitted, patchwork does a     "git
> >> ls-remote" to attempt to get a list of refs and to verify that     this is
> >> indeed a valid git repository  
> > 
> > s/valid git repository/valid git repository based on the kernel git tree/
> > 
> > Otherwise you might be sending out lots of emails for other projects :)
> >   
> >>
> >>   2. next screen asks the user to select the ref to work from using the
> >> list obtained from the remote. Once submitted, patchwork performs a     `git
> >> clone --reference` to clone the repository locally using a     local fork of
> >> the same repo to minimize object transfer. This part     requires that:
> >>        a. patchwork project is configured with a path to a local fork,
> >> if this feature is enabled for a project
> >>        b. that fork is kept current via some mechanism outside of
> >> patchwork (e.g. with grokmirror)
> >>        c. there is some sanity-checking during the clone process to
> >> avoid abuse (e.g. a sane timeout, a tmpdir with limited size,          etc
> >> -- other suggestions welcome)
> >>
> >>   3. next screen asks the user to pick a starting commit from the log.
> >> Once submitted, patchwork generates the patch from the commit     provided
> >> to the tip of the branch selected by the user earlier,
> >>      using git format-patch.
> >>
> >>   4. next screen asks the user to review the patch to make sure this is
> >> what they want to submit. Once confirmed, patchwork performs two
> >> admin-defined optional hooks:
> >>
> >>        a. a hook to generate a list of cc's (e.g. get_maintainer.pl)
> >>        b. a sanity check hook (e.g. checkpatch.pl)  
> > 
> > I will note that many "first patch" submissions are checkpatch.pl
> > cleanups for staging.  When doing that, I require that they do "one
> > logical change per patch", which means that many of the individual
> > patches themselves will not be checkpatch.pl clean, because many lines
> > have multiple issues with them (tabs, spaces, format, length, etc.)
> > 
> > So other than that minor thing, sounds interesting.  It's hard to
> > determine just how difficult the whole "set up git and send a patch out"
> > process is for people these days given the _huge_ numbers of new
> > contributions we keep getting, and the numerous good tutorials we have
> > created that spell out exactly how to do this.
> > 
> > So you might be "solving" a problem that we don't really have.  It's
> > hard to tell :(
> >   
> 
> I agree with this. I don't think this a problem that is worth solving.
> When a new developer wants to send a patch, they don't need to create
> any accounts. They setup their email client and send patch.
> 
> We have several resources that walk them through setting up email
> clients and sending patches. checkpatch.pl can be automated with
> git hooks.
> 
> >> I know this is a pretty big RFE, and I would like to hear your thoughts
> >> about this. If there is general agreement that this is doable/good idea, I
> >> may be able to come up with funding for this development as part of the
> >> overall tooling improvement proposal.  
> > 
> > The workflow seems sane, and matches what most people do today, with the
> > exception that it "solves" the git send-email issue, right?  Is that our
> > biggest barrier?
> > 
> > I would recommend interviewing some of the recent kernel mentor project
> > and outreachy applicants first, to try to determine exactly what their
> > problems, if any, were with our development process.  If they say that
> > this type of tool/workflow would have saved them hours of time and
> > energy, then that's a great indication that we should try to do this.
> >   
> 
> I would say considering the number of applicants to mentorship program
> and new developers it will be lot overhead to require them to create
> patchwork accounts, and it might even be hard overtime. A lot of them
> start out and drop out in the middle. With the current setup, nothing
> to cleanup.
> 
> Setting up email clients and git hooks is one time task. It is the
> easiest of the learning curve for many new developers. New developers
> struggle with getting the change logs right, coding styles right, and
> responding to review comments and acting on them.
> 
> These aren't something that can be automated and they just have to
> learn through experience of sending patches.
> 
> My opinion based on contact with new developers as well running the
> mentorship program, I would sat this isn't something that needs
> solving.

I agree with Shuah. From time to time, we have one time only patch
submission from people that just want to fix something that affects
his machine.

The learning curve for such submissions is usually fast. It only takes one
or two e-mails to be exchanged with the person wanting to submit his
stuff in order to teach them how to do it.

Ok, there's always space to optimize it. 

For example, having something like:

	./scripts/submit_patches

That would automatically do whatever needed to check if patches are ok and
to submit them from origin/master to upstream would be great.

Such script should of course verify if the subject and descriptions appear
to be coherent, it should run checkpatch, run make with some options like
W=1 and check if the number of patches is below a certain default 
(let's say, 10 patches) - in order to prevent newbies to spam our mailing
lists. 

Another thing is to add a web interface for patch submission and requiring
people to open an account at github/gitlab (or on some other git hosting
service). That sounds a lot more complex than what we already have today.

Thanks,
Mauro


More information about the Patchwork mailing list