Re: [GIT PULL] clk changes for the merge window
From: Stephen Boyd
Date: Sat Apr 25 2026 - 14:06:15 EST
Quoting Linus Torvalds (2026-04-21 08:45:33)
> On Mon, 20 Apr 2026 at 11:32, Stephen Boyd <sboyd@xxxxxxxxxx> wrote:
> >
> > 179 files changed, 19422 insertions(+), 5066 deletions(-)
>
> I get something *completely* different.
>
> I can approximate those numbers with "git diff -C" that takes file
> copies into account, but your summary just then has "create" and
> "delete" lines, nothing like
>
> copy drivers/clk/qcom/{gcc-milos.c => gcc-eliza.c} (74%)
>
> to indicate that that's how you got there.
>
> I do see the
>
> drivers/clk/qcom/{gcc-milos.c => gcc-eliza.c}
>
> in the file listing, so that must be how you generated this diffstat,
> but your summary is then very misleading and just says
>
> create mode 100644 drivers/clk/qcom/gcc-eliza.c
>
> instead.
>
> How did you actually generate that diffstat? Very strange.
>
I merged the tag into your tree and then diffed the merge to the parent.
git checkout linus/master
git merge clk-next
git diff --stat HEAD~..
When I used 'git request-pull' it gave me a super wrong diffstat. I
forgot to add --summary to the diff command above so I didn't replace
the super wrong summary from request-pull. Sorry.