From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 30D92B43 for ; Mon, 17 Jun 2019 07:01:22 +0000 (UTC) Received: from mail-lf1-f65.google.com (mail-lf1-f65.google.com [209.85.167.65]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 1EFF12C3 for ; Mon, 17 Jun 2019 07:01:21 +0000 (UTC) Received: by mail-lf1-f65.google.com with SMTP id a9so5657691lff.7 for ; Mon, 17 Jun 2019 00:01:20 -0700 (PDT) MIME-Version: 1.0 References: <1559836116.15946.27.camel@HansenPartnership.com> <20190606155846.GA31044@kroah.com> <1559838275.3144.6.camel@HansenPartnership.com> <20190613105916.66d03adf@coco.lan> <20190614101222.GA4797@pendragon.ideasonboard.com> <20190614102424.3fc40f04@coco.lan> <20190614135807.GA6573@kroah.com> <20190614121137.02b8a6dc@coco.lan> <1560525785.27102.16.camel@HansenPartnership.com> <20190614124305.65eb8dbd@coco.lan> <1560527386.27102.23.camel@HansenPartnership.com> <20190614130456.6c339c01@coco.lan> <1560528994.27102.34.camel@HansenPartnership.com> <20190614144836.0a71ebe5@coco.lan> In-Reply-To: <20190614144836.0a71ebe5@coco.lan> From: Geert Uytterhoeven Date: Mon, 17 Jun 2019 09:01:06 +0200 Message-ID: To: Mauro Carvalho Chehab Content-Type: text/plain; charset="UTF-8" Cc: James Bottomley , media-submaintainers@linuxtv.org, ksummit Subject: Re: [Ksummit-discuss] [MAINTAINERS SUMMIT] Pull network and Patch Acceptance Consistency List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hi Mauro, On Fri, Jun 14, 2019 at 7:48 PM Mauro Carvalho Chehab wrote: > Em Fri, 14 Jun 2019 09:16:34 -0700 > James Bottomley escreveu: > > On Fri, 2019-06-14 at 13:04 -0300, Mauro Carvalho Chehab wrote: > > > Em Fri, 14 Jun 2019 08:49:46 -0700 > > > James Bottomley escreveu: > > > > Actually, this leads me to the patch acceptance criteria: Is there > > > > value in requiring reviews? We try to do this in SCSI (usually > > > > only one review), but if all reviewers add a > > > > > > > > Reviewed-by: > > > > > > > > tag, which is accumulated in the tree, your pull machinery can > > > > detect it on all commits in the pull and give you an automated > > > > decision about whether to accept the pull or not. If you require > > > > two with one from a list of designated reviewers, it can do that as > > > > well (with a bit more complexity in the pull hook script). > > > > > > > > So here's the question: If I help you script this, would you be > > > > willing to accept pull requests in the media tree with this check > > > > in place? I'm happy to do this because it's an interesting > > > > experiment to see if we can have automation offload work currently > > > > done by humans. > > > > > > We could experiment something like that, provided that people will be > > > aware that it can be undone if something gets wrong. > > > > > > Yet, as we discussed at the Media Summit, we currently have an > > > issue: our infrastructure lack resources for such kind of > > > automation. > > > > This one doesn't require an automation infrastructure: the script runs > > as a local pull hook on the machine you accept the pull request from > > (presumably your laptop?) > > No, I run it on a 40-core HP server that it is below my desk. I turn it on > only when doing patch review (to save power, and because it produces a lot > of heat at the small room I work). > > Right now, I use a script with converts a pull request into a quilt tree. > Then, for each patch there, after a manual review, I run: I think this process can be improved/optimized: > - checkpatch --strict Should have been done by your (trusted) submaintainer that sent you the pull request. > - make ARCH=i386 CF=-D__CHECK_ENDIAN__ CONFIG_DEBUG_SECTION_MISMATCH=y C=1 W=1 CHECK='compile_checks' M=drivers/staging/media > - make ARCH=i386 CF=-D__CHECK_ENDIAN__ CONFIG_DEBUG_SECTION_MISMATCH=y C=1 W=1 CHECK='compile_checks' M=drivers/media > > where compile_checks is this script: > > #!/bin/bash > /devel/smatch/smatch -p=kernel $@ > # This is too pedantic and produce lots of false-positives > #/devel/smatch/smatch --two-passes -- -p=kernel $@ > /devel/sparse/sparse $@ Should have been done by the various bots, as soon as the public branch for the pull request was updated. > (Currently, I review on one screen, while the check script runs on a > terminal on a second screen) If all of the above are automated, or already done, you can focus on reviewing on the mailing list, i.e. before the patch is accepted by your submaintainer (the earlier an issue is found, the cheaper it is to fix it). And you don't have to review everything, review can be done in parallel by multiple persons. > If a patch at the queue fails, the server beeps, and I manually fix > or I complain. Should have been fixed before the pull request was sent. > When the patch series is accepted, for every applied patch, I run > a script that updates the patch status at patchwork, plus the > status of the git pull request. There's some WIP automation for this on patchwork.kernel.org, that can update status based on appearance in linux-next. > When I reject a patch, I update patchwork accordingly. > > > so the workflow is you receive a pull > > request, pull it into your tree and if the pull hook finds a bogus > > commit it will reject the pull and tell you why; if the script accepts > > the pull then you do whatever additional checks you like, then push it > > to kernel.org when you're satisfied it didn't break anything. > > A script that would work for me should do a similar job: > > - apply patch per patch, test with the above programs and check for > results. If any errors/warnings are returned, mailbomb the involved > parties for them to rework the pull request, and update the status > of the git request at patchwork. > > - If the pull request succeeds, update the patches at patchwork, using > the Patchwork-ID field for the git pull request and the patch diff > md5sum for the applied patches (and for any past versions of them, > if the checksum is the same). > > Alternatively (and that's what I actually prefer) is that, when someone > sends a pull request, a CI bot would do the above checks. doing the > mailbomb part and marking the pull request as rejected at patchwork, > delegating to me otherwise. > > This way, I would have to deal only with already verified pull > requests. So I think most of the automation is already there? The interfacing with patchwork seems to be the hardest part. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds