public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Andreas Schwab <schwab@linux-m68k.org>
To: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: Alistair Francis <alistair.francis@wdc.com>,  libc-alpha@sourceware.org
Subject: Re: [PATCH v5 0/8] Always use 32-bit time_t for certain syscalls
Date: Mon, 06 Apr 2020 16:03:15 +0200	[thread overview]
Message-ID: <87wo6sg198.fsf@igel.home> (raw)
In-Reply-To: <0de3a4aa-af62-cdc5-4383-74f86178876b@linaro.org> (Adhemerval Zanella's message of "Mon, 6 Apr 2020 10:24:49 -0300")

On Apr 06 2020, Adhemerval Zanella wrote:

> On 04/04/2020 10:58, Andreas Schwab wrote:
>> One of the patches in the series has broken the ABI for all 32-bit
>> architectures.
>> 
>> 0bcd0c5100 sysv/alpha: Use generic __timeval32 and helpers
>> 600f00b747 linux: Use long time_t for wait4/getrusage
>> 5d24ba82c4 resource: Add a __rusage64 struct
>> a51e035889 linux: Use long time_t __getitimer/__setitimer
>> 1c634e677f sysv: Define __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64
>> 
>
> Which failure are you seeing?

[   24s] [   10.164945] sysrq: Changing Loglevel
[   24s] [   10.164997] sysrq: Loglevel set to 4
[   24s] Setting up swapspace version 1, size = 1024 MiB (1073676288 bytes)
[   24s] no label, UUID=c7fc94c6-28a5-4bf9-a465-52f5926b0054
[   24s] swapon: /dev/vdb: found signature [pagesize=65536, signature=swap]
[   24s] swapon: /dev/vdb: pagesize=65536, swapsize=1073741824, devsize=1073741824
[   24s] swapon /dev/vdb
[   24s] WARNING: udev not running, creating extra device nodes
[   24s] logging output to //.build.log...
[   24s] processing recipe /.build-srcdir/glibc.spec ...
[   24s] /.build/build-vm: line 501:   382 Segmentation fault      $0 "$@"
[   24s] 
[   24s]  failed "build glibc.spec" at Sat Apr  4 02:17:45 UTC 2020.
[   24s] 
[   24s] [   10.303401] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
[   24s] [   10.303503] CPU: 3 PID: 1 Comm: build Not tainted 5.6.0-1-default #1 openSUSE Tumbleweed (unreleased)
[   24s] [   10.303611] Call Trace:
[   24s] [   10.303654] [c000000003753940] [c000000000d79ec0] .dump_stack+0xec/0x15c (unreliable)
[   24s] [   10.303754] [c0000000037539e0] [c00000000016ff9c] .panic+0x16c/0x420
[   24s] [   10.303837] [c000000003753a90] [c00000000017825c] .do_exit+0xbcc/0xc60
[   24s] [   10.303921] [c000000003753b60] [c0000000001783c0] .do_group_exit+0x60/0xd0
[   24s] [   10.304007] [c000000003753bf0] [c00000000018c584] .get_signal+0x1e4/0xbf0
[   24s] [   10.304093] [c000000003753d20] [c000000000023e0c] .do_notify_resume+0x1cc/0x460
[   24s] [   10.304191] [c000000003753e20] [c00000000000e3c4] .ret_from_except_lite+0x70/0x74

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."

  reply	other threads:[~2020-04-06 14:03 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-03 18:01 Alistair Francis
2020-03-03 18:01 ` [PATCH v5 6/8] resource: Add a __rusage64 struct Alistair Francis
2020-03-27 18:14   ` Adhemerval Zanella
2020-03-03 18:01 ` [PATCH v5 7/8] linux: Use long time_t for wait4/getrusage Alistair Francis
2020-03-27 18:31   ` Adhemerval Zanella
2020-03-27 18:42     ` Alistair Francis
2020-04-04 14:52   ` Andreas Schwab
2020-03-03 18:01 ` [PATCH v5 2/8] time: Add a timeval with a 32-bit tv_sec and tv_usec Alistair Francis
2020-03-27 17:00   ` Adhemerval Zanella
2020-03-03 18:01 ` [PATCH v5 5/8] linux: Use long time_t __getitimer/__setitimer Alistair Francis
2020-03-27 18:09   ` Adhemerval Zanella
2020-03-27 18:21     ` Alistair Francis
2020-03-03 18:01 ` [PATCH v5 1/8] sysv/linux: Rename alpha functions to be alpha specific Alistair Francis
2020-03-05  9:51   ` Lukasz Majewski
2020-03-05 21:38     ` Zack Weinberg
2020-03-09 22:16       ` Alistair Francis
2020-03-12 18:45         ` Alistair Francis
2020-03-18 19:46           ` Alistair Francis
2020-03-24  7:33             ` Lukasz Majewski
2020-03-24 23:58               ` Alistair Francis
2020-03-27 16:15                 ` Adhemerval Zanella
2020-03-27 16:25                   ` Alistair Francis
2020-03-27 16:46   ` Adhemerval Zanella
2020-03-03 18:01 ` [PATCH v5 3/8] time: Add a __itimerval64 struct Alistair Francis
2020-03-27 17:01   ` Adhemerval Zanella
2020-03-03 18:01 ` [PATCH v5 8/8] sysv/alpha: Use generic __timeval32 and helpers Alistair Francis
2020-04-01 16:57   ` Adhemerval Zanella
2020-04-01 16:54     ` Alistair Francis
2020-03-03 18:01 ` [PATCH v5 4/8] sysv: Define __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 Alistair Francis
2020-03-27 17:58   ` Adhemerval Zanella
2020-03-27 18:36     ` Alistair Francis
2020-04-04 13:58 ` [PATCH v5 0/8] Always use 32-bit time_t for certain syscalls Andreas Schwab
2020-04-06 13:24   ` Adhemerval Zanella
2020-04-06 14:03     ` Andreas Schwab [this message]
2020-04-06 16:16       ` Adhemerval Zanella
2020-04-06 17:07         ` Andreas Schwab
2020-04-06 17:34           ` Adhemerval Zanella
2020-04-06 17:43             ` Adhemerval Zanella
2020-04-06 17:48             ` Andreas Schwab
2020-04-06 17:45               ` Alistair Francis
2020-04-06 18:02                 ` Alistair Francis
2020-04-06 18:21                   ` Adhemerval Zanella

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wo6sg198.fsf@igel.home \
    --to=schwab@linux-m68k.org \
    --cc=adhemerval.zanella@linaro.org \
    --cc=alistair.francis@wdc.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).