git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Git port to Debian SH4 may have trouble
@ 2022-11-29 17:01 Jeffrey Walton
  2022-11-29 19:02 ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Jeffrey Walton @ 2022-11-29 17:01 UTC (permalink / raw)
  To: Git List

Hi Everyone,

This is a crummy bug report... I am  testing on Debian Unstable within
a SH4 Chroot. I'm seeing a hang during a git pull. Eventually I have
to CTRL+C, which results in "fatal: fetch-pack: invalid index-pack
output."

(sh4) debian-chroot:~# git clone -vv https://github.com/weidai11/cryptopp
Cloning into 'cryptopp'...
POST git-upload-pack (175 bytes)
want e9cbc4698a6b3ed067910862ad1355069f348d2b (HEAD)
want e9cbc4698a6b3ed067910862ad1355069f348d2b (refs/heads/master)
...
want 511806c0eba8ba5b5cedd4b4a814e96df92864a6 (refs/tags/CRYPTOPP_8_7_0)
POST git-upload-pack (gzip 1602 to 825 bytes)
remote: Enumerating objects: 28448, done.
remote: Counting objects: 100% (68/68), done.
remote: Compressing objects: 100% (50/50), done.
remote: Total 28448 (delta 29), reused 49 (delta 18), pack-reused 28380
Receiving objects: 100% (28448/28448), 27.01 MiB | 4.30 MiB/s, done.
Resolving deltas:   0% (0/20757)
^Cfatal: fetch-pack: invalid index-pack output
(sh4) debian-chroot:~#

(sh4) debian-chroot:~# git --version
git version 2.38.1

Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git port to Debian SH4 may have trouble
  2022-11-29 17:01 Git port to Debian SH4 may have trouble Jeffrey Walton
@ 2022-11-29 19:02 ` Jeff King
  2022-11-29 21:49   ` Jeffrey Walton
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff King @ 2022-11-29 19:02 UTC (permalink / raw)
  To: Jeffrey Walton; +Cc: Git List

On Tue, Nov 29, 2022 at 12:01:01PM -0500, Jeffrey Walton wrote:

> This is a crummy bug report... I am  testing on Debian Unstable within
> a SH4 Chroot. I'm seeing a hang during a git pull. Eventually I have
> to CTRL+C, which results in "fatal: fetch-pack: invalid index-pack
> output."

The message is probably a red herring. Once you terminate index-pack,
the fetch-pack process reading from it will see EOF before reading the
expected "pack ..." line, and generate that message.

So the hang is probably the only interesting part.

> (sh4) debian-chroot:~# git clone -vv https://github.com/weidai11/cryptopp
> Cloning into 'cryptopp'...
> POST git-upload-pack (175 bytes)
> want e9cbc4698a6b3ed067910862ad1355069f348d2b (HEAD)
> want e9cbc4698a6b3ed067910862ad1355069f348d2b (refs/heads/master)
> ...
> want 511806c0eba8ba5b5cedd4b4a814e96df92864a6 (refs/tags/CRYPTOPP_8_7_0)
> POST git-upload-pack (gzip 1602 to 825 bytes)
> remote: Enumerating objects: 28448, done.
> remote: Counting objects: 100% (68/68), done.
> remote: Compressing objects: 100% (50/50), done.
> remote: Total 28448 (delta 29), reused 49 (delta 18), pack-reused 28380
> Receiving objects: 100% (28448/28448), 27.01 MiB | 4.30 MiB/s, done.
> Resolving deltas:   0% (0/20757)
> ^Cfatal: fetch-pack: invalid index-pack output

If we're in the "resolving deltas" section, then that means we're
probably not hanging on receiving input from the remote side. At this
point we should have gotten all of the data and would be CPU-bound
reassembling deltas and computing their hashes.

Just a hunch, but does:

  git config --global pack.threads 1

help? The delta resolution is multi-threaded, but nothing else in the
clone should be.

-Peff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git port to Debian SH4 may have trouble
  2022-11-29 19:02 ` Jeff King
@ 2022-11-29 21:49   ` Jeffrey Walton
  2022-11-29 22:14     ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Jeffrey Walton @ 2022-11-29 21:49 UTC (permalink / raw)
  To: Jeff King; +Cc: Git List

On Tue, Nov 29, 2022 at 2:02 PM Jeff King <peff@peff.net> wrote:
>
> On Tue, Nov 29, 2022 at 12:01:01PM -0500, Jeffrey Walton wrote:
>
> > This is a crummy bug report... I am  testing on Debian Unstable within
> > a SH4 Chroot. I'm seeing a hang during a git pull. Eventually I have
> > to CTRL+C, which results in "fatal: fetch-pack: invalid index-pack
> > output."
>
> The message is probably a red herring. Once you terminate index-pack,
> the fetch-pack process reading from it will see EOF before reading the
> expected "pack ..." line, and generate that message.
>
> So the hang is probably the only interesting part.
>
> > (sh4) debian-chroot:~# git clone -vv https://github.com/weidai11/cryptopp
> > Cloning into 'cryptopp'...
> > POST git-upload-pack (175 bytes)
> > want e9cbc4698a6b3ed067910862ad1355069f348d2b (HEAD)
> > want e9cbc4698a6b3ed067910862ad1355069f348d2b (refs/heads/master)
> > ...
> > want 511806c0eba8ba5b5cedd4b4a814e96df92864a6 (refs/tags/CRYPTOPP_8_7_0)
> > POST git-upload-pack (gzip 1602 to 825 bytes)
> > remote: Enumerating objects: 28448, done.
> > remote: Counting objects: 100% (68/68), done.
> > remote: Compressing objects: 100% (50/50), done.
> > remote: Total 28448 (delta 29), reused 49 (delta 18), pack-reused 28380
> > Receiving objects: 100% (28448/28448), 27.01 MiB | 4.30 MiB/s, done.
> > Resolving deltas:   0% (0/20757)
> > ^Cfatal: fetch-pack: invalid index-pack output
>
> If we're in the "resolving deltas" section, then that means we're
> probably not hanging on receiving input from the remote side. At this
> point we should have gotten all of the data and would be CPU-bound
> reassembling deltas and computing their hashes.
>
> Just a hunch, but does:
>
>   git config --global pack.threads 1
>
> help? The delta resolution is multi-threaded, but nothing else in the
> clone should be.

Yes, `git config --global pack.threads 1` allowed things to continue.
The check-out was successful.

Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git port to Debian SH4 may have trouble
  2022-11-29 21:49   ` Jeffrey Walton
@ 2022-11-29 22:14     ` Jeff King
  2022-11-29 22:33       ` Jeffrey Walton
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff King @ 2022-11-29 22:14 UTC (permalink / raw)
  To: Jeffrey Walton; +Cc: Git List

On Tue, Nov 29, 2022 at 04:49:30PM -0500, Jeffrey Walton wrote:

> > Just a hunch, but does:
> >
> >   git config --global pack.threads 1
> >
> > help? The delta resolution is multi-threaded, but nothing else in the
> > clone should be.
> 
> Yes, `git config --global pack.threads 1` allowed things to continue.
> The check-out was successful.

OK, that narrows it down. The question then is why threads don't work.
Is there something broken with threading or luck primitives on that
platform? Or are we doing something sketchy with concurrency that
happens to work on Intel but not elsewhere, and we end up in some kind
of deadlock?

I suspect if we want to know more, you'd need to use gdb to grab a
backtrace for each of the threads during the hang to see what they're
trying to do.

-Peff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git port to Debian SH4 may have trouble
  2022-11-29 22:14     ` Jeff King
@ 2022-11-29 22:33       ` Jeffrey Walton
  0 siblings, 0 replies; 5+ messages in thread
From: Jeffrey Walton @ 2022-11-29 22:33 UTC (permalink / raw)
  To: Jeff King; +Cc: Git List

On Tue, Nov 29, 2022 at 5:14 PM Jeff King <peff@peff.net> wrote:
>
> On Tue, Nov 29, 2022 at 04:49:30PM -0500, Jeffrey Walton wrote:
>
> > > Just a hunch, but does:
> > >
> > >   git config --global pack.threads 1
> > >
> > > help? The delta resolution is multi-threaded, but nothing else in the
> > > clone should be.
> >
> > Yes, `git config --global pack.threads 1` allowed things to continue.
> > The check-out was successful.
>
> OK, that narrows it down. The question then is why threads don't work.
> Is there something broken with threading or luck primitives on that
> platform? Or are we doing something sketchy with concurrency that
> happens to work on Intel but not elsewhere, and we end up in some kind
> of deadlock?

Probably something broken with the port. Or that's what I would put my money on.

> I suspect if we want to know more, you'd need to use gdb to grab a
> backtrace for each of the threads during the hang to see what they're
> trying to do.

Yeah, so GDB won't install at the moment. I tried earlier today. It
has some unsatisfied dependencies. Failure to build from source
(FTBFS), iirc.

Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-11-29 22:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-29 17:01 Git port to Debian SH4 may have trouble Jeffrey Walton
2022-11-29 19:02 ` Jeff King
2022-11-29 21:49   ` Jeffrey Walton
2022-11-29 22:14     ` Jeff King
2022-11-29 22:33       ` Jeffrey Walton

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).