All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien@xen.org>
To: Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org, famzheng@amazon.com,
	cardoe@cardoe.com, wl@xen.org, Bertrand.Marquis@arm.com,
	andrew.cooper3@citrix.com
Subject: Re: [PATCH for-4.15] xen: Bump the minimum version of GCC supported to 4.9 (5.1 on arm64)
Date: Tue, 9 Mar 2021 10:05:18 +0000	[thread overview]
Message-ID: <10b8048a-e8fe-1fcd-7291-7f1b16da2f4c@xen.org> (raw)
In-Reply-To: <alpine.DEB.2.21.2103081654030.16374@sstabellini-ThinkPad-T480s>

Hi Stefano,

On 09/03/2021 00:59, Stefano Stabellini wrote:
> On Sun, 7 Mar 2021, Julien Grall wrote:
>> On 06/03/2021 23:04, no-reply@patchew.org wrote:
>>> Hi,
>>>
>>> Patchew automatically ran gitlab-ci pipeline with this patch (series)
>>> applied, but the job failed. Maybe there's a bug in the patches?
>>>
>>> You can find the link to the pipeline near the end of the report below:
>>>
>>> Type: series
>>> Message-id: 20210306214148.27021-1-julien@xen.org
>>> Subject: [PATCH for-4.15] xen: Bump the minimum version of GCC supported to
>>> 4.9 (5.1 on arm64)
>>>
>>> === TEST SCRIPT BEGIN ===
>>> #!/bin/bash
>>> sleep 10
>>> patchew gitlab-pipeline-check -p xen-project/patchew/xen
>>> === TEST SCRIPT END ===
>>>
>>> warning: redirecting to https://gitlab.com/xen-project/patchew/xen.git/
>>> warning: redirecting to https://gitlab.com/xen-project/patchew/xen.git/
>>>   From https://gitlab.com/xen-project/patchew/xen
>>>    * [new tag]               patchew/20210306214148.27021-1-julien@xen.org ->
>>> patchew/20210306214148.27021-1-julien@xen.org
>>> Switched to a new branch 'test'
>>> f332859b88 xen: Bump the minimum version of GCC supported to 4.9 (5.1 on
>>> arm64)
>>>
>>> === OUTPUT BEGIN ===
>>> [2021-03-06 21:45:17] Looking up pipeline...
>>> [2021-03-06 21:45:18] Found pipeline 266507477:
>>>
>>> https://gitlab.com/xen-project/patchew/xen/-/pipelines/266507477
>>>
>>> [2021-03-06 21:45:18] Waiting for pipeline to finish...
>>> [2021-03-06 22:00:21] Still waiting...
>>> [2021-03-06 22:15:26] Still waiting...
>>> [2021-03-06 22:30:31] Still waiting...
>>> [2021-03-06 22:45:35] Still waiting...
>>> [2021-03-06 23:00:41] Still waiting...
>>> [2021-03-06 23:04:42] Pipeline failed
>>> [2021-03-06 23:04:42] Job 'qemu-smoke-x86-64-clang-pvh' in stage 'test' is
>>> skipped
>>> [2021-03-06 23:04:42] Job 'qemu-smoke-x86-64-gcc-pvh' in stage 'test' is
>>> skipped
>>> [2021-03-06 23:04:42] Job 'qemu-smoke-x86-64-clang' in stage 'test' is
>>> skipped
>>> [2021-03-06 23:04:42] Job 'qemu-smoke-x86-64-gcc' in stage 'test' is skipped
>>> [2021-03-06 23:04:42] Job 'qemu-smoke-arm64-gcc' in stage 'test' is skipped
>>> [2021-03-06 23:04:42] Job 'qemu-alpine-arm64-gcc' in stage 'test' is skipped
>>> [2021-03-06 23:04:42] Job 'build-each-commit-gcc' in stage 'test' is skipped
>>> [2021-03-06 23:04:42] Job 'alpine-3.12-clang' in stage 'build' is failed
>>
>> The following jobs are failing:
>>
>> alpine-3.12-clang [1]
>> debian-unstable-32-gcc-debug
>> debian-unstable-clang
>> debian-unstable-gcc-randconfig
>> ubuntu-bionic-clang
>>
>> Cloning into 'qemu-xen-dir-remote.tmp'...
>> error: inflate: data stream error (incorrect data check)
>> fatal: serious inflate inconsistency
>> fatal: index-pack failed
>>
>> This looks unrelated to my patch. Possibly a network error?
> 
> Yeah.
> 
> 
>> =========
>>
>> centos-7-2-gcc [2]
>> centos-7-2-gcc-debug
>> centos-7-gcc
>> centos-7-gcc-debug
>>
>> Centos 7 is using GCC 4.8.5. This patch is bumping the minimum version to 4.9.
>> So the failure is expected.
>>
>> We may have to disable the jobs if my patch goes ahead. May I ask why we chose
>> to build on Centos 7?
> 
> CentOS 7 is still the latest and it is maintained until 2024:
> 
> https://wiki.centos.org/About/Product
> 
> I don't have a lot of direct experience with x86 users any longer, but
> this seems to be problematic?

The last full updates was on the Q3 2020, so it looks unlikely that 
Centos 7 will upgrade to a new Xen.

So this is only going to be a problem for anyone that decides to build 
there own Xen.

I can't tell whether someone may want to build upstream Xen on Centos 7. 
What I can say is the Arm64 bug in GCC 4.9 will lead to corruption, the 
bug in GCC < 4.8 looks somewhat less problematic.

So, I am sure any user would appreciate if we tell (e.g. throw an error) 
them when there is a risk that GCC X.Y may miscompile Xen.

In the ideal world (e.g if we had unlimited time), we should workaround 
it in Xen. But this doesn't look easy/possible here.

Therefore, for now, I think dropping support for GCC < 4.9 (< 5.1 for 
Arm) is the best approach. The support can be revived when someone is 
willing to spend time on it.

> 
> 
>> ==========
>>
>> ubuntu-trusty-gcc [3]
>> ubuntu-trusty-gcc-debug
>>
>> Ubuntu trusty is using GCC 4.8.4. This patch is bumping the minimum version to
>> 4.9. So the failure is expected. We may have to disable the jobs if my patch
>> goes ahead. May I ask why we chose to build on Ubuntu trusty?
> 
> Ubuntu Trusty is in "Extended Security Maintenance", so technically
> still supported also:
> 
> https://ubuntu.com/about/release-cycle

See above.

Cheers,

-- 
Julien Grall


  reply	other threads:[~2021-03-09 10:05 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <161507188317.11025.6744028462008264481@c667a6b167f6>
2021-03-07 13:00 ` [PATCH for-4.15] xen: Bump the minimum version of GCC supported to 4.9 (5.1 on arm64) Julien Grall
2021-03-09  0:59   ` Stefano Stabellini
2021-03-09 10:05     ` Julien Grall [this message]
2021-03-09 10:32       ` Roger Pau Monné
2021-03-09 11:11         ` Anthony PERARD
2021-03-09 22:24         ` Stefano Stabellini
2021-03-10  7:52           ` Roger Pau Monné
2021-03-10 10:24             ` Zheng, Fam
2021-03-06 21:41 Julien Grall
2021-03-07 10:57 ` Roger Pau Monné
2021-03-07 12:37   ` Julien Grall
2021-03-08  8:09 ` Jan Beulich
2021-03-08 10:51   ` Julien Grall
2021-03-08 11:20     ` Jan Beulich
2021-03-08 20:22       ` Julien Grall
2021-03-09 11:20         ` Jan Beulich
2021-03-10 18:05           ` Julien Grall
2021-03-11  8:17             ` Jan Beulich
2021-03-11  9:31               ` Julien Grall
2021-03-11 11:43                 ` Jan Beulich
2021-03-08  9:49 ` Ian Jackson
2021-03-10 20:48 ` Stefano Stabellini

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=10b8048a-e8fe-1fcd-7291-7f1b16da2f4c@xen.org \
    --to=julien@xen.org \
    --cc=Bertrand.Marquis@arm.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=cardoe@cardoe.com \
    --cc=famzheng@amazon.com \
    --cc=sstabellini@kernel.org \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.