Re: Determining corresponding mainline patch for stable patches Re: [PATCH 5.10 125/135] drm/i915: avoid uninitialised var in eb_parse()

From: Willy Tarreau
Date: Fri Aug 13 2021 - 05:54:50 EST


Hi Pavel,

On Fri, Aug 13, 2021 at 11:31:04AM +0200, Pavel Machek wrote:
> > > If we could agree on
> > >
> > > Commit: (SHA)
> > >
> > > in the beggining of body, that would be great.
> > >
> > > Upstream: (SHA)
> > >
> > > in sign-off area would be even better.
> >
> > What exactly are you trying to do when you find a sha1? For some reason
> > my scripts work just fine with a semi-free-form way that we currently
> > have been doing this for the past 17+ years. What are you attempting to
> > do that requires such a fixed format?
>
> Is there any problem having a fixed format? You are producing -stable
> kernels, so you are not the one needing such functionality.

When I was doing extended LTS in the past, I used to restart from
Greg's closest branch (e.g. 4.4.y for latest 3.10.y) and needed
exactly that. It was pretty easy in the end, as you'll essentially
find two formats (one form from net and the other for the rest of
the patches):

- commit XXXX upstream
- [ Upstream commit XXXX ]

I ended up writing this trivial script that did the job well for me
and also supported the "git cherry-pick -x" format that I was using
a lot. Feel free to reuse that as a starting point, here it comes, a
bit covered in dust :-)

Willy

#!/bin/bash

die() {
[ "$#" -eq 0 ] || echo "$*" >&2
exit 1
}

[ -n "$1" ] || die "Usage: ${0##*/} <commit>|<file>"

upstream=( )
if [ -s "$1" ]; then
upstream=( $(sed -n -e '/^$/,/^./s/^commit \([0-9a-f]*\) upstream\.$/\1/p' \
-e 's/^\[ Upstream commit \([0-9a-f]*\) \]$/\1/p' \
-e 's/^(cherry picked from commit \([0-9a-f]*\))/\1/p' "$1") )
else
upstream=( $(git log -1 --pretty --format=%B "$1" | \
sed -n -e '1,3s/^commit \([0-9a-f]*\) upstream\.$/\1/p' \
-e 's/^\[ Upstream commit \([0-9a-f]*\) \]$/\1/p' \
-e 's/^(cherry picked from commit \([0-9a-f]*\))/\1/p') )
fi

[ "${#upstream[@]}" -gt 0 ] || die "No upstream commit ID found."

echo "${upstream[0]}"