lists.linaro.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
List overview
Download
Linux-stable-mirror
March 2023
----- 2025 -----
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
linux-stable-mirror@lists.linaro.org
449 participants
1887 discussions
Start a n
N
ew thread
[PATCH v3] tpm: disable hwrng for fTPM on some AMD designs
by Mario Limonciello
AMD has issued an advisory indicating that having fTPM enabled in BIOS can cause "stuttering" in the OS. This issue has been fixed in newer versions of the fTPM firmware, but it's up to system designers to decide whether to distribute it. This issue has existed for a while, but is more prevalent starting with kernel 6.1 because commit b006c439d58db ("hwrng: core - start hwrng kthread also for untrusted sources") started to use the fTPM for hwrng by default. However, all uses of /dev/hwrng result in unacceptable stuttering. So, simply disable registration of the defective hwrng when detecting these faulty fTPM versions. As this is caused by faulty firmware, it is plausible that such a problem could also be reproduced by other TPM interactions, but this hasn't been shown by any user's testing or reports. It is hypothesized to be triggered more frequently by the use of the RNG because userspace software will fetch random numbers regularly. Intentionally continue to register other TPM functionality so that users that rely upon PCR measurements or any storage of data will still have access to it. If it's found later that another TPM functionality is exacerbating this problem a module parameter it can be turned off entirely and a module parameter can be introduced to allow users who rely upon fTPM functionality to turn it on even though this problem is present. Link:
https://www.amd.com/en/support/kb/faq/pa-410
Link:
https://bugzilla.kernel.org/show_bug.cgi?id=216989
Link:
https://lore.kernel.org/all/20230209153120.261904-1-Jason@zx2c4.com/
Fixes: b006c439d58d ("hwrng: core - start hwrng kthread also for untrusted sources") Cc: stable(a)vger.kernel.org Cc: Jarkko Sakkinen <jarkko(a)kernel.org> Cc: Thorsten Leemhuis <regressions(a)leemhuis.info> Cc: James Bottomley <James.Bottomley(a)hansenpartnership.com> Tested-by: reach622(a)mailcuk.com Tested-by: Bell <1138267643(a)qq.com> Co-developed-by: Jason A. Donenfeld <Jason(a)zx2c4.com> Signed-off-by: Jason A. Donenfeld <Jason(a)zx2c4.com> Signed-off-by: Mario Limonciello <mario.limonciello(a)amd.com> --- v2->v3: * Revert extra curl braces back to behavior in v1 * Remove needless goto * Pick up 2 tested tags --- drivers/char/tpm/tpm-chip.c | 60 +++++++++++++++++++++++++++++- drivers/char/tpm/tpm.h | 73 +++++++++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+), 1 deletion(-) diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c index 741d8f3e8fb3..c467eeae9973 100644 --- a/drivers/char/tpm/tpm-chip.c +++ b/drivers/char/tpm/tpm-chip.c @@ -512,6 +512,63 @@ static int tpm_add_legacy_sysfs(struct tpm_chip *chip) return 0; } +/* + * Some AMD fTPM versions may cause stutter + *
https://www.amd.com/en/support/kb/faq/pa-410
+ * + * Fixes are available in two series of fTPM firmware: + * 6.x.y.z series: 6.0.18.6 + + * 3.x.y.z series: 3.57.y.5 + + */ +static bool tpm_amd_is_rng_defective(struct tpm_chip *chip) +{ + u32 val1, val2; + u64 version; + int ret; + + if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) + return false; + + ret = tpm_request_locality(chip); + if (ret) + return false; + + ret = tpm2_get_tpm_pt(chip, TPM2_PT_MANUFACTURER, &val1, NULL); + if (ret) + goto release; + if (val1 != 0x414D4400U /* AMD */) { + ret = -ENODEV; + goto release; + } + ret = tpm2_get_tpm_pt(chip, TPM2_PT_FIRMWARE_VERSION_1, &val1, NULL); + if (ret) + goto release; + ret = tpm2_get_tpm_pt(chip, TPM2_PT_FIRMWARE_VERSION_2, &val2, NULL); + +release: + tpm_relinquish_locality(chip); + + if (ret) + return false; + + version = ((u64)val1 << 32) | val2; + if ((version >> 48) == 6) { + if (version >= 0x0006000000180006ULL) + return false; + } else if ((version >> 48) == 3) { + if (version >= 0x0003005700000005ULL) + return false; + } else { + return false; + } + + dev_warn(&chip->dev, + "AMD fTPM version 0x%llx causes system stutter; hwrng disabled\n", + version); + + return true; +} + static int tpm_hwrng_read(struct hwrng *rng, void *data, size_t max, bool wait) { struct tpm_chip *chip = container_of(rng, struct tpm_chip, hwrng); @@ -521,7 +578,8 @@ static int tpm_hwrng_read(struct hwrng *rng, void *data, size_t max, bool wait) static int tpm_add_hwrng(struct tpm_chip *chip) { - if (!IS_ENABLED(CONFIG_HW_RANDOM_TPM) || tpm_is_firmware_upgrade(chip)) + if (!IS_ENABLED(CONFIG_HW_RANDOM_TPM) || tpm_is_firmware_upgrade(chip) || + tpm_amd_is_rng_defective(chip)) return 0; snprintf(chip->hwrng_name, sizeof(chip->hwrng_name), diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index 24ee4e1cc452..830014a26609 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h @@ -150,6 +150,79 @@ enum tpm_sub_capabilities { TPM_CAP_PROP_TIS_DURATION = 0x120, }; +enum tpm2_pt_props { + TPM2_PT_NONE = 0x00000000, + TPM2_PT_GROUP = 0x00000100, + TPM2_PT_FIXED = TPM2_PT_GROUP * 1, + TPM2_PT_FAMILY_INDICATOR = TPM2_PT_FIXED + 0, + TPM2_PT_LEVEL = TPM2_PT_FIXED + 1, + TPM2_PT_REVISION = TPM2_PT_FIXED + 2, + TPM2_PT_DAY_OF_YEAR = TPM2_PT_FIXED + 3, + TPM2_PT_YEAR = TPM2_PT_FIXED + 4, + TPM2_PT_MANUFACTURER = TPM2_PT_FIXED + 5, + TPM2_PT_VENDOR_STRING_1 = TPM2_PT_FIXED + 6, + TPM2_PT_VENDOR_STRING_2 = TPM2_PT_FIXED + 7, + TPM2_PT_VENDOR_STRING_3 = TPM2_PT_FIXED + 8, + TPM2_PT_VENDOR_STRING_4 = TPM2_PT_FIXED + 9, + TPM2_PT_VENDOR_TPM_TYPE = TPM2_PT_FIXED + 10, + TPM2_PT_FIRMWARE_VERSION_1 = TPM2_PT_FIXED + 11, + TPM2_PT_FIRMWARE_VERSION_2 = TPM2_PT_FIXED + 12, + TPM2_PT_INPUT_BUFFER = TPM2_PT_FIXED + 13, + TPM2_PT_HR_TRANSIENT_MIN = TPM2_PT_FIXED + 14, + TPM2_PT_HR_PERSISTENT_MIN = TPM2_PT_FIXED + 15, + TPM2_PT_HR_LOADED_MIN = TPM2_PT_FIXED + 16, + TPM2_PT_ACTIVE_SESSIONS_MAX = TPM2_PT_FIXED + 17, + TPM2_PT_PCR_COUNT = TPM2_PT_FIXED + 18, + TPM2_PT_PCR_SELECT_MIN = TPM2_PT_FIXED + 19, + TPM2_PT_CONTEXT_GAP_MAX = TPM2_PT_FIXED + 20, + TPM2_PT_NV_COUNTERS_MAX = TPM2_PT_FIXED + 22, + TPM2_PT_NV_INDEX_MAX = TPM2_PT_FIXED + 23, + TPM2_PT_MEMORY = TPM2_PT_FIXED + 24, + TPM2_PT_CLOCK_UPDATE = TPM2_PT_FIXED + 25, + TPM2_PT_CONTEXT_HASH = TPM2_PT_FIXED + 26, + TPM2_PT_CONTEXT_SYM = TPM2_PT_FIXED + 27, + TPM2_PT_CONTEXT_SYM_SIZE = TPM2_PT_FIXED + 28, + TPM2_PT_ORDERLY_COUNT = TPM2_PT_FIXED + 29, + TPM2_PT_MAX_COMMAND_SIZE = TPM2_PT_FIXED + 30, + TPM2_PT_MAX_RESPONSE_SIZE = TPM2_PT_FIXED + 31, + TPM2_PT_MAX_DIGEST = TPM2_PT_FIXED + 32, + TPM2_PT_MAX_OBJECT_CONTEXT = TPM2_PT_FIXED + 33, + TPM2_PT_MAX_SESSION_CONTEXT = TPM2_PT_FIXED + 34, + TPM2_PT_PS_FAMILY_INDICATOR = TPM2_PT_FIXED + 35, + TPM2_PT_PS_LEVEL = TPM2_PT_FIXED + 36, + TPM2_PT_PS_REVISION = TPM2_PT_FIXED + 37, + TPM2_PT_PS_DAY_OF_YEAR = TPM2_PT_FIXED + 38, + TPM2_PT_PS_YEAR = TPM2_PT_FIXED + 39, + TPM2_PT_SPLIT_MAX = TPM2_PT_FIXED + 40, + TPM2_PT_TOTAL_COMMANDS = TPM2_PT_FIXED + 41, + TPM2_PT_LIBRARY_COMMANDS = TPM2_PT_FIXED + 42, + TPM2_PT_VENDOR_COMMANDS = TPM2_PT_FIXED + 43, + TPM2_PT_NV_BUFFER_MAX = TPM2_PT_FIXED + 44, + TPM2_PT_MODES = TPM2_PT_FIXED + 45, + TPM2_PT_MAX_CAP_BUFFER = TPM2_PT_FIXED + 46, + TPM2_PT_VAR = TPM2_PT_GROUP * 2, + TPM2_PT_PERMANENT = TPM2_PT_VAR + 0, + TPM2_PT_STARTUP_CLEAR = TPM2_PT_VAR + 1, + TPM2_PT_HR_NV_INDEX = TPM2_PT_VAR + 2, + TPM2_PT_HR_LOADED = TPM2_PT_VAR + 3, + TPM2_PT_HR_LOADED_AVAIL = TPM2_PT_VAR + 4, + TPM2_PT_HR_ACTIVE = TPM2_PT_VAR + 5, + TPM2_PT_HR_ACTIVE_AVAIL = TPM2_PT_VAR + 6, + TPM2_PT_HR_TRANSIENT_AVAIL = TPM2_PT_VAR + 7, + TPM2_PT_HR_PERSISTENT = TPM2_PT_VAR + 8, + TPM2_PT_HR_PERSISTENT_AVAIL = TPM2_PT_VAR + 9, + TPM2_PT_NV_COUNTERS = TPM2_PT_VAR + 10, + TPM2_PT_NV_COUNTERS_AVAIL = TPM2_PT_VAR + 11, + TPM2_PT_ALGORITHM_SET = TPM2_PT_VAR + 12, + TPM2_PT_LOADED_CURVES = TPM2_PT_VAR + 13, + TPM2_PT_LOCKOUT_COUNTER = TPM2_PT_VAR + 14, + TPM2_PT_MAX_AUTH_FAIL = TPM2_PT_VAR + 15, + TPM2_PT_LOCKOUT_INTERVAL = TPM2_PT_VAR + 16, + TPM2_PT_LOCKOUT_RECOVERY = TPM2_PT_VAR + 17, + TPM2_PT_NV_WRITE_RECOVERY = TPM2_PT_VAR + 18, + TPM2_PT_AUDIT_COUNTER_0 = TPM2_PT_VAR + 19, + TPM2_PT_AUDIT_COUNTER_1 = TPM2_PT_VAR + 20, +}; /* 128 bytes is an arbitrary cap. This could be as large as TPM_BUFSIZE - 18 * bytes, but 128 is still a relatively large number of random bytes and -- 2.34.1
1 year, 10 months
5
10
0
0
stable-rc/linux-4.14.y baseline: 142 runs, 26 regressions (v4.14.308)
by kernelci.org bot
stable-rc/linux-4.14.y baseline: 142 runs, 26 regressions (v4.14.308) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-4.14.y/kernel/v4.14.30…
Test: baseline Tree: stable-rc Branch: linux-4.14.y Describe: v4.14.308 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 373c2a0d721acdbed9f45bf9816c04edad3704ca Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6f98e8902ab6558c86af
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6f98e8902ab6558c86b0
failing since 250 days (last pass: v4.14.285, first fail: v4.14.286) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d7024ed2fdaf8358c864f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm/multi_v7…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm/multi_v7…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d7024ed2fdaf8358c8650
failing since 390 days (last pass: v4.14.266, first fail: v4.14.266-45-gce409501ca5f) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fac63beef0d8f8c8649
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fac63beef0d8f8c864a
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71ddb2c995cf0f8c8647
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71ddb2c995cf0f8c8648
failing since 208 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-154-gc3e4c291190ba) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fb963beef0d8f8c8654
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fb963beef0d8f8c8655
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d6d420ed61218c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d6d420ed61218c8630
failing since 208 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-154-gc3e4c291190ba) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fa2a2578a97338c865f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fa2a2578a97338c8660
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d2b2c995cf0f8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d2b2c995cf0f8c8630
failing since 208 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-154-gc3e4c291190ba) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fadd6805dc5288c863c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fadd6805dc5288c863d
failing since 222 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.289-48-gdea72dca89ea9) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71ded420ed61218c8641
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71ded420ed61218c8642
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fba32b2e70f9f8c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fba32b2e70f9f8c863e
failing since 222 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.289-48-gdea72dca89ea9) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71e9a7f2272b648c8634
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71e9a7f2272b648c8635
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fa763beef0d8f8c8641
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fa763beef0d8f8c8642
failing since 222 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.289-48-gdea72dca89ea9) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d4514610e96e8c8643
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d4514610e96e8c8644
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fb056f32466b48c864c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fb056f32466b48c864d
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71e0b2c995cf0f8c864d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71e0b2c995cf0f8c864e
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fbcd6805dc5288c865e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fbcd6805dc5288c865f
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71fdfd70ee97328c8634
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71fdfd70ee97328c8635
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fa3e8902ab6558c86b4
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fa3e8902ab6558c86b5
failing since 200 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d9b2c995cf0f8c8641
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d9b2c995cf0f8c8642
failing since 190 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6faf32b2e70f9f8c8632
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6faf32b2e70f9f8c8633
failing since 206 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71dcd420ed61218c863b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71dcd420ed61218c863c
failing since 306 days (last pass: v4.14.277-55-gfb8b8dfe0168, first fail: v4.14.277-71-geacdf1a71409) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fbb56f32466b48c8662
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fbb56f32466b48c8663
failing since 206 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d5b2c995cf0f8c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d5b2c995cf0f8c8636
failing since 306 days (last pass: v4.14.277-55-gfb8b8dfe0168, first fail: v4.14.277-71-geacdf1a71409) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d6fa863beef0d8f8c8644
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d6fa863beef0d8f8c8645
failing since 206 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d71d8d420ed61218c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.308/arm64/defcon…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d71d8d420ed61218c8636
failing since 306 days (last pass: v4.14.277-55-gfb8b8dfe0168, first fail: v4.14.277-71-geacdf1a71409)
1 year, 10 months
1
0
0
0
stable/linux-4.19.y baseline: 155 runs, 59 regressions (v4.19.276)
by kernelci.org bot
stable/linux-4.19.y baseline: 155 runs, 59 regressions (v4.19.276) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 beaglebone-black | arm | lab-cip | gcc-10 | multi_v7_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 beaglebone-black | arm | lab-cip | gcc-10 | omap2plus_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | imx_v6_v7_defconfig | 1 imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 r8a7743-iwg20d-q7 | arm | lab-cip | gcc-10 | shmobile_defconfig | 1 r8a7796-m3ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 3 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 5 sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1 sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 sun8i-a33-olinuxino | arm | lab-clabbe | gcc-10 | multi_v7_defconfig | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 sun8i-h3-orangepi-pc | arm | lab-clabbe | gcc-10 | multi_v7_defconfig | 1 sun8i-h3-orangepi-pc | arm | lab-clabbe | gcc-10 | sunxi_defconfig | 1 tegra124-nyan-big | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 tegra124-nyan-big | arm | lab-collabora | gcc-10 | tegra_defconfig | 1 zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable/branch/linux-4.19.y/kernel/v4.19.276/p…
Test: baseline Tree: stable Branch: linux-4.19.y Describe: v4.19.276 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
SHA: 6a98afd74b4c2016fb87f5c3b7ce1c53ac215c13 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d5f2a3c5a91f14c8c8658
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/x86_64/x86_64_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/x86_64/x86_64_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f2a3c5a91f14c8c8661
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:11:50.759916 + set +x<8>[ 8.650137] <LAVA_SIGNAL_ENDRUN 0_dmesg 9566955_1.4.2.3.1> 2023-03-12T05:11:50.760015 2023-03-12T05:11:50.862044 # 2023-03-12T05:11:50.963317 / # #export SHELL=/bin/sh 2023-03-12T05:11:50.963532 2023-03-12T05:11:51.064391 / # export SHELL=/bin/sh. /lava-9566955/environment 2023-03-12T05:11:51.064607 2023-03-12T05:11:51.165526 / # . /lava-9566955/environment/lava-9566955/bin/lava-test-runner /lava-9566955/1 2023-03-12T05:11:51.165825 2023-03-12T05:11:51.170480 / # /lava-9566955/bin/lava-test-runner /lava-9566955/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d5f227aeac1c8988c863d
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/x86_64/x86_64_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/x86_64/x86_64_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f227aeac1c8988c8646
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:11:51.478743 <8>[ 12.529924] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=pass UNITS=lines MEASUREMENT=0> 2023-03-12T05:11:51.480201 + set +x 2023-03-12T05:11:51.486076 <8>[ 12.540374] <LAVA_SIGNAL_ENDRUN 0_dmesg 9566892_1.4.2.3.1> 2023-03-12T05:11:51.590854 / # 2023-03-12T05:11:51.692119 # #export SHELL=/bin/sh 2023-03-12T05:11:51.692333 2023-03-12T05:11:51.793204 / # export SHELL=/bin/sh. /lava-9566892/environment 2023-03-12T05:11:51.793455 2023-03-12T05:11:51.894346 / # . /lava-9566892/environment/lava-9566892/bin/lava-test-runner /lava-9566892/1 2023-03-12T05:11:51.894800 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5fface2d87122f8c863a
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v5_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v5_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v5_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fface2d87122f8c8643
failing since 33 days (last pass: v4.19.271, first fail: v4.19.272) 2023-03-12T05:15:17.666735 + set +x 2023-03-12T05:15:17.671966 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 147936_1.5.2.4.1> 2023-03-12T05:15:17.785985 / # # 2023-03-12T05:15:17.889041 export SHELL=/bin/sh 2023-03-12T05:15:17.889886 # 2023-03-12T05:15:17.991838 / # export SHELL=/bin/sh. /lava-147936/environment 2023-03-12T05:15:17.992619 2023-03-12T05:15:18.094627 / # . /lava-147936/environment/lava-147936/bin/lava-test-runner /lava-147936/1 2023-03-12T05:15:18.096187 2023-03-12T05:15:18.102343 / # /lava-147936/bin/lava-test-runner /lava-147936/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f2d676875c92c8c8647
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f2d676875c92c8c8650
failing since 46 days (last pass: v4.19.268, first fail: v4.19.271) 2023-03-12T05:11:56.524652 + set +x<8>[ 25.456787] <LAVA_SIGNAL_ENDRUN 0_dmesg 3406341_1.5.2.4.1> 2023-03-12T05:11:56.525287 2023-03-12T05:11:56.639250 / # # 2023-03-12T05:11:56.742740 export SHELL=/bin/sh 2023-03-12T05:11:56.743942 # 2023-03-12T05:11:56.846186 / # export SHELL=/bin/sh. /lava-3406341/environment 2023-03-12T05:11:56.847321 2023-03-12T05:11:56.949623 / # . /lava-3406341/environment/lava-3406341/bin/lava-test-runner /lava-3406341/1 2023-03-12T05:11:56.951326 2023-03-12T05:11:56.957014 / # /lava-3406341/bin/lava-test-runner /lava-3406341/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5fefd4903e1c0a8c86be
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fefd4903e1c0a8c86c7
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:15:05.792594 <8>[ 16.790410] <LAVA_SIGNAL_ENDRUN 0_dmesg 147971_1.5.2.4.1> 2023-03-12T05:15:05.901187 / # # 2023-03-12T05:15:06.004128 export SHELL=/bin/sh 2023-03-12T05:15:06.004920 # 2023-03-12T05:15:06.107287 / # export SHELL=/bin/sh. /lava-147971/environment 2023-03-12T05:15:06.108048 2023-03-12T05:15:06.210431 / # . /lava-147971/environment/lava-147971/bin/lava-test-runner /lava-147971/1 2023-03-12T05:15:06.211606 2023-03-12T05:15:06.216297 / # /lava-147971/bin/lava-test-runner /lava-147971/1 2023-03-12T05:15:06.284404 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-cip | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d62bf0a2a0e7b4e8c862f
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d62bf0a2a0e7b4e8c8636
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:27:09.104540 <8>[ 8.943050] <LAVA_SIGNAL_ENDRUN 0_dmesg 873062_1.5.2.4.1> 2023-03-12T05:27:09.214388 / # # 2023-03-12T05:27:09.317200 export SHELL=/bin/sh 2023-03-12T05:27:09.317963 # 2023-03-12T05:27:09.419898 / # export SHELL=/bin/sh. /lava-873062/environment 2023-03-12T05:27:09.420662 2023-03-12T05:27:09.522593 / # . /lava-873062/environment/lava-873062/bin/lava-test-runner /lava-873062/1 2023-03-12T05:27:09.523869 2023-03-12T05:27:09.529786 / # /lava-873062/bin/lava-test-runner /lava-873062/1 2023-03-12T05:27:09.597158 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f4f6bdc8657628c8630
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f4f6bdc8657628c8639
new failure (last pass: v4.19.275) 2023-03-12T05:12:26.643454 + set +x<8>[ 18.306368] <LAVA_SIGNAL_ENDRUN 0_dmesg 147944_1.5.2.4.1> 2023-03-12T05:12:26.643782 2023-03-12T05:12:26.754895 / # # 2023-03-12T05:12:26.857034 export SHELL=/bin/sh 2023-03-12T05:12:26.857580 # 2023-03-12T05:12:26.959104 / # export SHELL=/bin/sh. /lava-147944/environment 2023-03-12T05:12:26.959639 2023-03-12T05:12:27.061150 / # . /lava-147944/environment/lava-147944/bin/lava-test-runner /lava-147944/1 2023-03-12T05:12:27.062018 2023-03-12T05:12:27.067076 / # /lava-147944/bin/lava-test-runner /lava-147944/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-cip | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f3bc6a79b716d8c8658
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/omap2plus_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f3bc6a79b716d8c865f
new failure (last pass: v4.19.275) 2023-03-12T05:12:11.303354 + set +x<8>[ 11.761585] <LAVA_SIGNAL_ENDRUN 0_dmesg 873050_1.5.2.4.1> 2023-03-12T05:12:11.303896 2023-03-12T05:12:11.417791 / # # 2023-03-12T05:12:11.520516 export SHELL=/bin/sh 2023-03-12T05:12:11.521290 # 2023-03-12T05:12:11.623215 / # export SHELL=/bin/sh. /lava-873050/environment 2023-03-12T05:12:11.624015 2023-03-12T05:12:11.725991 / # . /lava-873050/environment/lava-873050/bin/lava-test-runner /lava-873050/1 2023-03-12T05:12:11.727240 2023-03-12T05:12:11.733644 / # /lava-873050/bin/lava-test-runner /lava-873050/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d601c3bd74f015b8c8641
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d601c3bd74f015b8c864a
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:15:51.694998 <8>[ 7.378689] <LAVA_SIGNAL_ENDRUN 0_dmesg 3406352_1.5.2.4.1> 2023-03-12T05:15:51.804916 / # # 2023-03-12T05:15:51.908864 export SHELL=/bin/sh 2023-03-12T05:15:51.909984 # 2023-03-12T05:15:52.012343 / # export SHELL=/bin/sh. /lava-3406352/environment 2023-03-12T05:15:52.013355 2023-03-12T05:15:52.115643 / # . /lava-3406352/environment/lava-3406352/bin/lava-test-runner /lava-3406352/1 2023-03-12T05:15:52.118335 2023-03-12T05:15:52.122271 / # /lava-3406352/bin/lava-test-runner /lava-3406352/1 2023-03-12T05:15:52.208126 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5fddd4903e1c0a8c8684
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fddd4903e1c0a8c868d
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:53.694593 / # # 2023-03-12T05:14:53.797414 export SHELL=/bin/sh 2023-03-12T05:14:53.798250 # 2023-03-12T05:14:53.900417 / # export SHELL=/bin/sh. /lava-9566982/environment 2023-03-12T05:14:53.901260 2023-03-12T05:14:54.003383 / # . /lava-9566982/environment/lava-9566982/bin/lava-test-runner /lava-9566982/1 2023-03-12T05:14:54.004649 2023-03-12T05:14:54.016775 / # /lava-9566982/bin/lava-test-runner /lava-9566982/1 2023-03-12T05:14:54.115687 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T05:14:54.116254 + cd /lava-9566982/1/tests/1_bootrr ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | imx_v6_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5ebdd6fd9b0bf48c8636
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: imx_v6_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/imx_v6_v7_d…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/imx_v6_v7_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5ebdd6fd9b0bf48c863f
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:10:11.751819 + set +x[ 7.030688] <LAVA_SIGNAL_ENDRUN 0_dmesg 919687_1.5.2.3.1> 2023-03-12T05:10:11.752052 2023-03-12T05:10:11.859365 / # # 2023-03-12T05:10:11.960920 export SHELL=/bin/sh 2023-03-12T05:10:11.961316 # 2023-03-12T05:10:12.062477 / # export SHELL=/bin/sh. /lava-919687/environment 2023-03-12T05:10:12.062838 2023-03-12T05:10:12.164145 / # . /lava-919687/environment/lava-919687/bin/lava-test-runner /lava-919687/1 2023-03-12T05:10:12.164749 2023-03-12T05:10:12.167363 / # /lava-919687/bin/lava-test-runner /lava-919687/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f998a3e5ea0128c867d
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f998a3e5ea0128c8686
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:13:48.987400 + set +x 2023-03-12T05:13:48.987570 [ 4.855752] <LAVA_SIGNAL_ENDRUN 0_dmesg 919688_1.5.2.3.1> 2023-03-12T05:13:49.093630 / # # 2023-03-12T05:13:49.195263 export SHELL=/bin/sh 2023-03-12T05:13:49.195728 # 2023-03-12T05:13:49.296964 / # export SHELL=/bin/sh. /lava-919688/environment 2023-03-12T05:13:49.297411 2023-03-12T05:13:49.398816 / # . /lava-919688/environment/lava-919688/bin/lava-test-runner /lava-919688/1 2023-03-12T05:13:49.399450 2023-03-12T05:13:49.401741 / # /lava-919688/bin/lava-test-runner /lava-919688/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5febd4903e1c0a8c86a8
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5febd4903e1c0a8c86af
failing since 52 days (last pass: v4.19.267, first fail: v4.19.270) 2023-03-12T05:14:54.468928 <8>[ 12.933193] <LAVA_SIGNAL_ENDRUN 0_dmesg 1170914_1.5.2.4.1> 2023-03-12T05:14:54.574456 / # # 2023-03-12T05:14:55.734778 export SHELL=/bin/sh 2023-03-12T05:14:55.740485 # 2023-03-12T05:14:57.288343 / # export SHELL=/bin/sh. /lava-1170914/environment 2023-03-12T05:14:57.294036 2023-03-12T05:15:00.116625 / # . /lava-1170914/environment/lava-1170914/bin/lava-test-runner /lava-1170914/1 2023-03-12T05:15:00.122732 2023-03-12T05:15:00.123519 / # /lava-1170914/bin/lava-test-runner /lava-1170914/1 2023-03-12T05:15:00.232301 + export 'TESTRUN_ID=1_bootrr' ... (16 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d601f4df78120228c863e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d601f4df78120228c863f
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61b10aa77844388c8636
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61b10aa77844388c8637
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d602c93f197f0208c8647
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d602c93f197f0208c8648
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61e3de2b18b2a58c8630
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61e3de2b18b2a58c8631
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d601593f197f0208c8637
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d601593f197f0208c8638
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61aaf0cb8543138c864d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61aaf0cb8543138c864e
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d601d1b60c7b29c8c8646
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d601d1b60c7b29c8c8647
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61ad9900e133438c86a5
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61ad9900e133438c86a6
failing since 303 days (last pass: v4.19.239, first fail: v4.19.242) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d602ae34885ab968c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d602ae34885ab968c8630
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61ba0aa77844388c863c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61ba0aa77844388c863d
failing since 303 days (last pass: v4.19.239, first fail: v4.19.242) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d60139a83bda6428c8633
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d60139a83bda6428c8634
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d601eb471be719e8c864c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d601eb471be719e8c864d
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61af51a5667a018c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61af51a5667a018c8630
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d602b93f197f0208c8642
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d602b93f197f0208c8643
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61e2a86fc934e18c86f7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61e2a86fc934e18c86f8
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d60144df78120228c8638
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d60144df78120228c8639
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61a99900e133438c869f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61a99900e133438c86a0
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d602193f197f0208c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d602193f197f0208c863e
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61af0aa77844388c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61af0aa77844388c8630
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d603e3bd74f015b8c8676
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d603e3bd74f015b8c8677
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61ce51a5667a018c8654
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61ce51a5667a018c8655
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d601892eac970648c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d601892eac970648c8636
failing since 225 days (last pass: v4.19.230, first fail: v4.19.254) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d61a3f0cb8543138c8642
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d61a3f0cb8543138c8643
failing since 187 days (last pass: v4.19.230, first fail: v4.19.257) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ r8a7743-iwg20d-q7 | arm | lab-cip | gcc-10 | shmobile_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5e970d89b663988c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: shmobile_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/shmobile_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/shmobile_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d5e970d89b663988c8630
failing since 106 days (last pass: v4.19.266, first fail: v4.19.267) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ r8a7796-m3ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d60b2070e74ca608c8645
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d60b2070e74ca608c864e
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:18:22.641401 / # # 2023-03-12T05:18:22.744329 export SHELL=/bin/sh 2023-03-12T05:18:22.745170 # 2023-03-12T05:18:22.847125 / # export SHELL=/bin/sh. /lava-9567019/environment 2023-03-12T05:18:22.847590 2023-03-12T05:18:22.949106 / # . /lava-9567019/environment/lava-9567019/bin/lava-test-runner /lava-9567019/1 2023-03-12T05:18:22.950445 2023-03-12T05:18:22.962840 / # /lava-9567019/bin/lava-test-runner /lava-9567019/1 2023-03-12T05:18:23.011949 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T05:18:23.012486 + cd /lav<8>[ 17.717703] <LAVA_SIGNAL_STARTRUN 1_bootrr 9567019_1.5.2.4.5> ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 3 Details:
https://kernelci.org/test/plan/id/640d5fd800f39e2b248c8671
Results: 61 PASS, 8 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.dwhdmi-rockchip-driver-cec-present:
https://kernelci.org/test/case/id/640d5fd800f39e2b248c86a5
failing since 51 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:35.846068 BusyBox v1.31.1 (2023-03-03 12:54:59 UTC)<8>[ 13.079340] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-driver-audio-present RESULT=fail> 2023-03-12T05:14:35.848869 multi-call binary. 2023-03-12T05:14:35.849184 2023-03-12T05:14:35.862640 Usage: seq [-w] [-s SEP] [FIRST [INC]] LA<8>[ 13.097977] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-driver-cec-present RESULT=fail> * baseline.bootrr.dwhdmi-rockchip-driver-audio-present:
https://kernelci.org/test/case/id/640d5fd800f39e2b248c86a6
failing since 51 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:35.827035 <8>[ 13.061802] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-probed RESULT=pass> * baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fd800f39e2b248c86b9
failing since 51 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:32.003119 + <8>[ 9.242234] <LAVA_SIGNAL_ENDRUN 0_dmesg 9566976_1.5.2.3.1> 2023-03-12T05:14:32.005254 set +x 2023-03-12T05:14:32.111935 2023-03-12T05:14:32.213583 / # #export SHELL=/bin/sh 2023-03-12T05:14:32.214121 2023-03-12T05:14:32.315402 / # export SHELL=/bin/sh. /lava-9566976/environment 2023-03-12T05:14:32.315922 2023-03-12T05:14:32.417251 / # . /lava-9566976/environment/lava-9566976/bin/lava-test-runner /lava-9566976/1 2023-03-12T05:14:32.417975 2023-03-12T05:14:32.420203 / # /lava-9566976/bin/lava-test-runner /lava-9566976/1 ... (17 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 5 Details:
https://kernelci.org/test/plan/id/640d5f339b8fb811e98c8660
Results: 79 PASS, 9 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-i2s1-probed:
https://kernelci.org/test/case/id/640d5f339b8fb811e98c8686
failing since 360 days (last pass: v4.19.231, first fail: v4.19.235) 2023-03-12T05:12:02.539246 <8>[ 34.926132] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s0-probed RESULT=pass> 2023-03-12T05:12:03.554962 /lava-9566863/1/../bin/lava-test-case 2023-03-12T05:12:03.563546 <8>[ 35.950005] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s1-probed RESULT=fail> * baseline.bootrr.rk3399-gru-sound-driver-rt5514-present:
https://kernelci.org/test/case/id/640d5f339b8fb811e98c869b
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:12:02.078472 12:31:33 UTC) multi-call binary. 2023-03-12T05:12:02.078881 2023-03-12T05:12:02.083013 Usage: seq [-w] [-s SEP] [FIRST [INC]] LAST 2023-03-12T05:12:02.083266 2023-03-12T05:12:02.097696 Print numbers from FIRST to LAST, in steps of<8>[ 34.480260] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rk3399-gru-sound-driver-rt5514-present RESULT=fail> * baseline.bootrr.rk3399-gru-sound-driver-max98357A-present:
https://kernelci.org/test/case/id/640d5f339b8fb811e98c869c
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:12:02.052436 <8>[ 34.435600] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rk3399-gru-sound-driver-dp-present RESULT=fail> 2023-03-12T05:12:02.055755 -w Pad to last with leading zeros 2023-03-12T05:12:02.058053 -s SEP String separator 2023-03-12T05:12:02.062048 /lava-9566863/1/../bin/lava-test-case 2023-03-12T05:12:02.075055 BusyBox v1.31.1 (2023-03-03 <8>[ 34.457141] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rk3399-gru-sound-driver-max98357A-present RESULT=fail> * baseline.bootrr.rk3399-gru-sound-driver-dp-present:
https://kernelci.org/test/case/id/640d5f339b8fb811e98c869d
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:12:02.034235 Usage: seq [-w] [-s SEP] [FIRST [INC]] LAST 2023-03-12T05:12:02.034685 2023-03-12T05:12:02.039473 Print numbers from FIRST to LAST, in steps of INC. 2023-03-12T05:12:02.042220 FIRST, INC default to 1. 2023-03-12T05:12:02.042542 * baseline.bootrr.rk3399-gru-sound-driver-da7219-present:
https://kernelci.org/test/case/id/640d5f339b8fb811e98c869e
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:12:02.019257 BusyBox v1.31.1 (2023-03-03 12:31:33 UTC) multi-call binary. 2023-03-12T05:12:02.019854 2023-03-12T05:12:02.029815 <8>[ 34.412239] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rk3399-gru-sound-driver-da7219-present RESULT=fail> platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d60b6070e74ca608c8670
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d60b6070e74ca608c8679
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:18:24.149512 + set +x 2023-03-12T05:18:24.151442 <8>[ 17.172756] <LAVA_SIGNAL_ENDRUN 0_dmesg 411999_1.5.2.4.1> 2023-03-12T05:18:24.259503 / # # 2023-03-12T05:18:24.362079 export SHELL=/bin/sh 2023-03-12T05:18:24.362611 # 2023-03-12T05:18:24.362970 / # <3>[ 17.335913] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50 2023-03-12T05:18:24.464563 export SHELL=/bin/sh. /lava-411999/environment 2023-03-12T05:18:24.465118 2023-03-12T05:18:24.566998 / # . /lava-411999/environment/lava-411999/bin/lava-test-runner /lava-411999/1 2023-03-12T05:18:24.567930 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d60a19f8a01c5fc8c86b0
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d60a19f8a01c5fc8c86b9
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:18:07.205381 <8>[ 15.970535] <LAVA_SIGNAL_ENDRUN 0_dmesg 147992_1.5.2.4.1> 2023-03-12T05:18:07.311042 / # # 2023-03-12T05:18:07.415349 export SHELL=/bin/sh 2023-03-12T05:18:07.415958 # 2023-03-12T05:18:07.518081 / # export SHELL=/bin/sh. /lava-147992/environment 2023-03-12T05:18:07.518673 2023-03-12T05:18:07.620516 / # . /lava-147992/environment/lava-147992/bin/lava-test-runner /lava-147992/1 2023-03-12T05:18:07.621435 2023-03-12T05:18:07.624769 / # /lava-147992/bin/lava-test-runner /lava-147992/1 2023-03-12T05:18:07.657315 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d60a69f8a01c5fc8c86bb
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d60a69f8a01c5fc8c86c4
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:18:14.674254 <8>[ 15.171930] <LAVA_SIGNAL_ENDRUN 0_dmesg 412000_1.5.2.4.1> 2023-03-12T05:18:14.780746 / # # 2023-03-12T05:18:14.882967 export SHELL=/bin/sh 2023-03-12T05:18:14.883532 # 2023-03-12T05:18:14.985116 / # export SHELL=/bin/sh. /lava-412000/environment 2023-03-12T05:18:14.985681 2023-03-12T05:18:15.087296 / # . /lava-412000/environment/lava-412000/bin/lava-test-runner /lava-412000/1 2023-03-12T05:18:15.088328 2023-03-12T05:18:15.105207 / # /lava-412000/bin/lava-test-runner /lava-412000/1 2023-03-12T05:18:15.162237 + export 'TESTRUN_ID=1_bootrr' ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d60b3070e74ca608c8650
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d60b3070e74ca608c8659
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:18:37.696754 / # # 2023-03-12T05:18:37.799623 export SHELL=/bin/sh 2023-03-12T05:18:37.800460 # 2023-03-12T05:18:37.902453 / # export SHELL=/bin/sh. /lava-9567022/environment 2023-03-12T05:18:37.903311 2023-03-12T05:18:38.005431 / # . /lava-9567022/environment/lava-9567022/bin/lava-test-runner /lava-9567022/1 2023-03-12T05:18:38.006761 2023-03-12T05:18:38.017329 / # /lava-9567022/bin/lava-test-runner /lava-9567022/1 2023-03-12T05:18:38.081689 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T05:18:38.082206 + cd /lava-9567022<8>[ 15.633891] <LAVA_SIGNAL_STARTRUN 1_bootrr 9567022_1.5.2.4.5> ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun8i-a33-olinuxino | arm | lab-clabbe | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5feed4903e1c0a8c86b3
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5feed4903e1c0a8c86bc
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:15:03.806839 <8>[ 17.273604] <LAVA_SIGNAL_ENDRUN 0_dmesg 411995_1.5.2.4.1> 2023-03-12T05:15:03.913494 / # # 2023-03-12T05:15:04.015472 export SHELL=/bin/sh 2023-03-12T05:15:04.016145 # 2023-03-12T05:15:04.117549 / # export SHELL=/bin/sh. /lava-411995/environment 2023-03-12T05:15:04.118288 2023-03-12T05:15:04.219935 / # . /lava-411995/environment/lava-411995/bin/lava-test-runner /lava-411995/1 2023-03-12T05:15:04.220978 2023-03-12T05:15:04.237746 / # /lava-411995/bin/lava-test-runner /lava-411995/1 2023-03-12T05:15:04.358979 + export 'TESTRUN_ID=1_bootrr' ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5fcdc459d047148c8653
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fcdc459d047148c865c
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:31.189183 / # # 2023-03-12T05:14:31.290909 export SHELL=/bin/sh 2023-03-12T05:14:31.291328 # 2023-03-12T05:14:31.392678 / # export SHELL=/bin/sh. /lava-3406357/environment 2023-03-12T05:14:31.393253 2023-03-12T05:14:31.494658 / # . /lava-3406357/environment/lava-3406357/bin/lava-test-runner /lava-3406357/1 2023-03-12T05:14:31.495430 2023-03-12T05:14:31.500420 / # /lava-3406357/bin/lava-test-runner /lava-3406357/1 2023-03-12T05:14:31.598283 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T05:14:31.598771 + cd /lava-3406357/1/tests/1_bootrr ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f051c7714f5ed8c8658
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: sunxi_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/sunxi_defco…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/sunxi_defco…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f051c7714f5ed8c8661
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:11:08.726789 / # # 2023-03-12T05:11:08.828514 export SHELL=/bin/sh 2023-03-12T05:11:08.828936 # 2023-03-12T05:11:08.930311 / # export SHELL=/bin/sh. /lava-3406340/environment 2023-03-12T05:11:08.930789 2023-03-12T05:11:09.032184 / # . /lava-3406340/environment/lava-3406340/bin/lava-test-runner /lava-3406340/1 2023-03-12T05:11:09.032887 2023-03-12T05:11:09.038029 / # /lava-3406340/bin/lava-test-runner /lava-3406340/1 2023-03-12T05:11:09.116002 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T05:11:09.116572 + cd /lava-3406340/1/tests/1_bootrr ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun8i-h3-orangepi-pc | arm | lab-clabbe | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d602a4df78120228c8643
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d602a4df78120228c864c
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:15:55.791962 + set +x 2023-03-12T05:15:55.792392 <8>[ 11.387496] <LAVA_SIGNAL_ENDRUN 0_dmesg 411997_1.5.2.4.1> 2023-03-12T05:15:55.980161 / # # 2023-03-12T05:15:56.084144 export SHELL=/bin/sh 2023-03-12T05:15:56.084773 # 2023-03-12T05:15:56.193134 / # export SHELL=/bin/sh. /lava-411997/environment 2023-03-12T05:15:56.193856 2023-03-12T05:15:56.297088 / # . /lava-411997/environment/lava-411997/bin/lava-test-runner /lava-411997/1 2023-03-12T05:15:56.297803 2023-03-12T05:15:56.300269 / # /lava-411997/bin/lava-test-runner /lava-411997/1 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun8i-h3-orangepi-pc | arm | lab-clabbe | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5f768a3e5ea0128c865a
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: sunxi_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/sunxi_defco…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/sunxi_defco…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f768a3e5ea0128c8663
failing since 52 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:13:12.622932 + set +x 2023-03-12T05:13:12.624876 <8>[ 14.405077] <LAVA_SIGNAL_ENDRUN 0_dmesg 411994_1.5.2.4.1> 2023-03-12T05:13:12.732917 / # # 2023-03-12T05:13:12.835458 export SHELL=/bin/sh 2023-03-12T05:13:12.836046 # 2023-03-12T05:13:12.937438 / # export SHELL=/bin/sh. /lava-411994/environment 2023-03-12T05:13:12.938078 2023-03-12T05:13:13.039678 / # . /lava-411994/environment/lava-411994/bin/lava-test-runner /lava-411994/1 2023-03-12T05:13:13.040614 2023-03-12T05:13:13.042519 / # /lava-411994/bin/lava-test-runner /lava-411994/1 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ tegra124-nyan-big | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5fd9d4903e1c0a8c8650
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5fd9d4903e1c0a8c8659
failing since 50 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:14:55.880089 <8>[ 17.977782] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=pass UNITS=lines MEASUREMENT=0> 2023-03-12T05:14:55.883905 + set +x 2023-03-12T05:14:55.890980 <8>[ 17.990183] <LAVA_SIGNAL_ENDRUN 0_dmesg 9566980_1.5.2.3.1> 2023-03-12T05:14:55.998786 2023-03-12T05:14:56.100201 / # #export SHELL=/bin/sh 2023-03-12T05:14:56.100548 2023-03-12T05:14:56.201784 / # export SHELL=/bin/sh. /lava-9566980/environment 2023-03-12T05:14:56.202137 2023-03-12T05:14:56.303414 / # . /lava-9566980/environment/lava-9566980/bin/lava-test-runner /lava-9566980/1 2023-03-12T05:14:56.304063 ... (15 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ tegra124-nyan-big | arm | lab-collabora | gcc-10 | tegra_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d5efac8efaa5bc78c863e
Results: 3 PASS, 3 FAIL, 1 SKIP Full config: tegra_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/tegra_defco…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm/tegra_defco…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5efac8efaa5bc78c8647
failing since 50 days (last pass: v4.19.269, first fail: v4.19.270) 2023-03-12T05:11:02.588778 adm (pid: 139, stack limit = 0x(ptrval)) 2023-03-12T05:11:02.595680 kern :emerg :<8>[ 18.447601] <LAVA_SIGNAL_ENDRUN 0_dmesg 9566847_1.5.2.3.1> 2023-03-12T05:11:02.598882 Stack: (0xc2c4df2c to 0xc2c4e000) 2023-03-12T05:11:02.606860 kern :emerg : df20: c02e8180 00000000 00000000 c026d82c 00000003 2023-03-12T05:11:02.615168 kern :emerg : df40: c2bef900 be895f74 c2c4df80 00000000 c2c4c000 00000004 00000003 c02706e0 2023-03-12T05:11:02.623228 kern :emerg : df60: edfd14e0 c026d82c c2bef900 c2bef900 be895f74 00000003 c0101264 c0270944 2023-03-12T05:11:02.631334 kern :emerg : df80: 00000000 00000000 c2c4dfb0 9513ed21 b6fb67c0 00000003 b6fb67c0 be895468 2023-03-12T05:11:02.639445 kern :emerg : dfa0: 00000004 c0101000 00000003 b6fb67c0 00000003 be895f74 00000003 00000000 2023-03-12T05:11:02.647741 kern :emerg : dfc0: 00000003 b6fb67c0 be895468 00000004 00000003 0003c90c be895e58 00000003 2023-03-12T05:11:02.655957 kern :emerg : dfe0: 00059120 be895440 b6c7c960 b6c7c97c 60000010 00000003 00000000 00000000 ... (21 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d5f33e7cb6b513c8c8642
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d5f33e7cb6b513c8c8649
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:12:01.002844 + set +x 2023-03-12T05:12:01.003861 <8>[ 3.724467] <LAVA_SIGNAL_ENDRUN 0_dmesg 873055_1.5.2.4.1> 2023-03-12T05:12:01.112321 / # # 2023-03-12T05:12:01.214649 export SHELL=/bin/sh 2023-03-12T05:12:01.215762 # 2023-03-12T05:12:01.317372 / # export SHELL=/bin/sh. /lava-873055/environment 2023-03-12T05:12:01.318049 2023-03-12T05:12:01.419499 / # . /lava-873055/environment/lava-873055/bin/lava-test-runner /lava-873055/1 2023-03-12T05:12:01.420118 2023-03-12T05:12:01.422723 / # /lava-873055/bin/lava-test-runner /lava-873055/1 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d609b9f8a01c5fc8c8689
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.19.y/v4.19.276/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d609b9f8a01c5fc8c8690
failing since 52 days (last pass: v4.19.268, first fail: v4.19.270) 2023-03-12T05:17:57.006065 <8>[ 3.750116] <LAVA_SIGNAL_ENDRUN 0_dmesg 873077_1.5.2.4.1> 2023-03-12T05:17:57.110842 / # # 2023-03-12T05:17:57.212084 export SHELL=/bin/sh 2023-03-12T05:17:57.212351 # 2023-03-12T05:17:57.313254 / # export SHELL=/bin/sh. /lava-873077/environment 2023-03-12T05:17:57.313513 2023-03-12T05:17:57.414521 / # . /lava-873077/environment/lava-873077/bin/lava-test-runner /lava-873077/1 2023-03-12T05:17:57.415016 2023-03-12T05:17:57.417920 / # /lava-873077/bin/lava-test-runner /lava-873077/1 2023-03-12T05:17:57.454842 + export 'TESTRUN_ID=1_bootrr' ... (12 line(s) more)
1 year, 10 months
1
0
0
0
stable-rc/linux-6.1.y baseline: 185 runs, 1 regressions (v6.1.18)
by kernelci.org bot
stable-rc/linux-6.1.y baseline: 185 runs, 1 regressions (v6.1.18) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------+------+-------------+----------+-------------------+------------ bcm2835-rpi-b-rev2 | arm | lab-broonie | gcc-10 | bcm2835_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-6.1.y/kernel/v6.1.18/p…
Test: baseline Tree: stable-rc Branch: linux-6.1.y Describe: v6.1.18 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 1cc3fcf63192dfbf5ac13bc6134ae9120ebdcba6 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------+------+-------------+----------+-------------------+------------ bcm2835-rpi-b-rev2 | arm | lab-broonie | gcc-10 | bcm2835_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d50aec0cb0d5d2c8c8654
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: bcm2835_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.18/arm/bcm2835_def…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.18/arm/bcm2835_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d50aec0cb0d5d2c8c865d
failing since 4 days (last pass: v6.1.15, first fail: v6.1.15-886-g7ff82f8ebd2b) 2023-03-12T04:10:02.976274 + set +x 2023-03-12T04:10:02.979999 <8>[ 18.200184] <LAVA_SIGNAL_ENDRUN 0_dmesg 147788_1.5.2.4.1> 2023-03-12T04:10:03.095146 / # # 2023-03-12T04:10:03.197501 export SHELL=/bin/sh 2023-03-12T04:10:03.198132 # 2023-03-12T04:10:03.299940 / # export SHELL=/bin/sh. /lava-147788/environment 2023-03-12T04:10:03.300660 2023-03-12T04:10:03.402457 / # . /lava-147788/environment/lava-147788/bin/lava-test-runner /lava-147788/1 2023-03-12T04:10:03.403485 2023-03-12T04:10:03.410239 / # /lava-147788/bin/lava-test-runner /lava-147788/1 ... (14 line(s) more)
1 year, 10 months
1
0
0
0
stable-rc/linux-5.4.y baseline: 167 runs, 39 regressions (v5.4.235)
by kernelci.org bot
stable-rc/linux-5.4.y baseline: 167 runs, 39 regressions (v5.4.235) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beagle-xm | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 da850-lcdk | arm | lab-baylibre | gcc-10 | multi_v5_defconfig | 1 hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.4.y/kernel/v5.4.235/…
Test: baseline Tree: stable-rc Branch: linux-5.4.y Describe: v5.4.235 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 126ee8982bfcae6111f0fd157ee5cdd0ec7f5ca5 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beagle-xm | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d48f693b8a822548c862f
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d48f693b8a822548c8638
failing since 53 days (last pass: v5.4.226, first fail: v5.4.228-659-gb3b34c474ec7) 2023-03-12T03:36:59.127104 <8>[ 23.642852] <LAVA_SIGNAL_ENDRUN 0_dmesg 3406194_1.5.2.4.1> 2023-03-12T03:36:59.233874 / # # 2023-03-12T03:36:59.337862 export SHELL=/bin/sh 2023-03-12T03:36:59.339192 # 2023-03-12T03:36:59.441341 / # export SHELL=/bin/sh. /lava-3406194/environment 2023-03-12T03:36:59.442256 2023-03-12T03:36:59.544230 / # . /lava-3406194/environment/lava-3406194/bin/lava-test-runner /lava-3406194/1 2023-03-12T03:36:59.546101 2023-03-12T03:36:59.550957 / # /lava-3406194/bin/lava-test-runner /lava-3406194/1 2023-03-12T03:36:59.643068 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d48f893b8a822548c863d
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d48f893b8a822548c8646
failing since 53 days (last pass: v5.4.226-68-g8c05f5e0777d, first fail: v5.4.228-659-gb3b34c474ec7) 2023-03-12T03:37:05.904133 <8>[ 9.844701] <LAVA_SIGNAL_ENDRUN 0_dmesg 3406195_1.5.2.4.1> 2023-03-12T03:37:06.014108 / # # 2023-03-12T03:37:06.116984 export SHELL=/bin/sh 2023-03-12T03:37:06.118208 # 2023-03-12T03:37:06.220693 / # export SHELL=/bin/sh. /lava-3406195/environment 2023-03-12T03:37:06.221816 2023-03-12T03:37:06.324160 / # . /lava-3406195/environment/lava-3406195/bin/lava-test-runner /lava-3406195/1 2023-03-12T03:37:06.325851 2023-03-12T03:37:06.330964 / # /lava-3406195/bin/lava-test-runner /lava-3406195/1 2023-03-12T03:37:06.378006 <3>[ 10.320697] Bluetooth: hci0: command 0x0c03 tx timeout ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ da850-lcdk | arm | lab-baylibre | gcc-10 | multi_v5_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47cb0dd556ba068c8631
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v5_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v5_d…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v5_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d47cb0dd556ba068c863a
failing since 53 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-03-12T03:32:12.353125 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 3406134_1.5.2.4.1> 2023-03-12T03:32:12.462237 / # # 2023-03-12T03:32:12.565659 export SHELL=/bin/sh 2023-03-12T03:32:12.566813 # 2023-03-12T03:32:12.668973 / # export SHELL=/bin/sh. /lava-3406134/environment 2023-03-12T03:32:12.669625 2023-03-12T03:32:12.771608 / # . /lava-3406134/environment/lava-3406134/bin/lava-test-runner /lava-3406134/1 2023-03-12T03:32:12.773404 2023-03-12T03:32:12.783983 / # /lava-3406134/bin/lava-test-runner /lava-3406134/1 2023-03-12T03:32:13.031017 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d453b58be52e6238c8662
Results: 3 PASS, 2 FAIL, 2 SKIP Full config: defconfig Compiler: gcc-10 (riscv64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/riscv/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/riscv/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/640d453b58be52e6238c8667
failing since 143 days (last pass: v5.4.219, first fail: v5.4.219-267-g4a976f825745) 3 lines 2023-03-12T03:21:04.793539 / # 2023-03-12T03:21:04.800579 2023-03-12T03:21:04.907517 / # # 2023-03-12T03:21:04.928394 # 2023-03-12T03:21:05.031573 / # export SHELL=/bin/sh 2023-03-12T03:21:05.040793 export SHELL=/bin/sh 2023-03-12T03:21:05.143691 / # . /lava-3406103/environment 2023-03-12T03:21:05.152820 . /lava-3406103/environment 2023-03-12T03:21:05.255728 / # /lava-3406103/bin/lava-test-runner /lava-3406103/0 2023-03-12T03:21:05.264487 /lava-3406103/bin/lava-test-runner /lava-3406103/0 ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d496360e2385dd38c86a2
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d496360e2385dd38c86a3
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4975c0f144a84b8c863a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4975c0f144a84b8c863b
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49cf056b89b2908c8656
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49cf056b89b2908c8657
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4b23b58ef32b1a8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4b23b58ef32b1a8c8630
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d496260e2385dd38c869e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d496260e2385dd38c869f
failing since 222 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4976c0f144a84b8c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4976c0f144a84b8c863e
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49bca5e90209cd8c8661
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49bca5e90209cd8c8662
failing since 222 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4b24dc06ca0cbd8c8639
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4b24dc06ca0cbd8c863a
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49310b72e37bd78c8643
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49310b72e37bd78c8644
failing since 222 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d496060e2385dd38c869b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d496060e2385dd38c869c
failing since 220 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4973c0f144a84b8c8634
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4973c0f144a84b8c8635
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49ba9f0797bdf58c8636
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49ba9f0797bdf58c8637
failing since 220 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4a47e9ae59505b8c8661
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4a47e9ae59505b8c8662
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49300b72e37bd78c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49300b72e37bd78c863e
failing since 220 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d495e60e2385dd38c8698
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d495e60e2385dd38c8699
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4974c0f144a84b8c8637
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4974c0f144a84b8c8638
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d49922e7a3cc4ee8c8639
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d49922e7a3cc4ee8c863a
failing since 306 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4afbe5d7bdfd218c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm64/defconfi…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4afbe5d7bdfd218c8630
failing since 306 days (last pass: v5.4.191-84-gbea55d0a1d975, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d46b429aa20f62d8c8667
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d46b429aa20f62d8c8668
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d46feeac874afcb8c864c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d46feeac874afcb8c864d
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d46ab02839165748c864a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/i386/i386_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d46ab02839165748c864b
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47cdfba7ee2b7b8c8661
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d47cdfba7ee2b7b8c8662
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4848b7d49320558c867e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4848b7d49320558c867f
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47da6adf837a258c8652
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d47da6adf837a258c8653
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d48de4a8276839d8c8653
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d48de4a8276839d8c8654
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47c39e48e40af78c8661
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d47c39e48e40af78c8662
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d48407501fd25e08c864b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d48407501fd25e08c864c
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47ce3b2e4a3a758c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d47ce3b2e4a3a758c8636
failing since 14 days (last pass: v5.4.231-157-gbb5c568fed2b, first fail: v5.4.233) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4847b7d49320558c867b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4847b7d49320558c867c
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d4852172becd2c98c8644
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4852172becd2c98c8645
failing since 14 days (last pass: v5.4.231-157-gbb5c568fed2b, first fail: v5.4.233) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d48662dadd395bd8c8645
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d48662dadd395bd8c8646
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d47c83b2e4a3a758c8630
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d47c83b2e4a3a758c8631
failing since 14 days (last pass: v5.4.231-157-gbb5c568fed2b, first fail: v5.4.233) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d483bb7d49320558c863a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/x86_64/x86_64_…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d483bb7d49320558c863b
failing since 26 days (last pass: v5.4.231, first fail: v5.4.231-88-gcc41b459ac9e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d48be73d327ad2f8c8696
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/multi_v7_d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d48bf73d327ad2f8c869f
failing since 53 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-03-12T03:36:14.518779 / # # 2023-03-12T03:36:14.620567 export SHELL=/bin/sh 2023-03-12T03:36:14.621179 # 2023-03-12T03:36:14.722565 / # export SHELL=/bin/sh. /lava-3406205/environment 2023-03-12T03:36:14.723136 2023-03-12T03:36:14.824540 / # . /lava-3406205/environment/lava-3406205/bin/lava-test-runner /lava-3406205/1 2023-03-12T03:36:14.825723 2023-03-12T03:36:14.842795 / # /lava-3406205/bin/lava-test-runner /lava-3406205/1 2023-03-12T03:36:14.933766 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T03:36:14.934427 + cd /lava-3406205/1/tests/1_bootrr ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d45edb45b990c658c8646
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: sunxi_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/sunxi_defc…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.235/arm/sunxi_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d45edb45b990c658c864f
failing since 53 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-03-12T03:24:04.386670 / # # 2023-03-12T03:24:04.489064 export SHELL=/bin/sh 2023-03-12T03:24:04.489788 # 2023-03-12T03:24:04.591374 / # export SHELL=/bin/sh. /lava-3406115/environment 2023-03-12T03:24:04.592061 2023-03-12T03:24:04.693701 / # . /lava-3406115/environment/lava-3406115/bin/lava-test-runner /lava-3406115/1 2023-03-12T03:24:04.694802 2023-03-12T03:24:04.711058 / # /lava-3406115/bin/lava-test-runner /lava-3406115/1 2023-03-12T03:24:04.743120 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T03:24:04.786913 + cd /lava-3406115/1/tests/1_bootrr ... (10 line(s) more)
1 year, 10 months
1
0
0
0
stable-rc/linux-4.14.y build: 195 builds: 2 failed, 193 passed, 28 warnings (v4.14.308)
by kernelci.org bot
stable-rc/linux-4.14.y build: 195 builds: 2 failed, 193 passed, 28 warnings (v4.14.308) Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.14.y/kernel/v4.14.308/
Tree: stable-rc Branch: linux-4.14.y Git Describe: v4.14.308 Git Commit: 373c2a0d721acdbed9f45bf9816c04edad3704ca Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 6 unique architectures Build Failures Detected: mips: ip27_defconfig: (gcc-10) FAIL ip28_defconfig: (gcc-10) FAIL Warnings Detected: arc: arm64: arm: mini2440_defconfig (gcc-10): 1 warning omap1_defconfig (gcc-10): 1 warning s3c2410_defconfig (gcc-10): 1 warning i386: allnoconfig (gcc-10): 3 warnings i386_defconfig (gcc-10): 3 warnings tinyconfig (gcc-10): 3 warnings mips: malta_qemu_32r6_defconfig (gcc-10): 1 warning mtx1_defconfig (gcc-10): 3 warnings x86_64: allnoconfig (gcc-10): 3 warnings tinyconfig (gcc-10): 3 warnings x86_64_defconfig (gcc-10): 3 warnings x86_64_defconfig+x86-chromebook (gcc-10): 3 warnings Warnings summary: 7 ld: warning: creating DT_TEXTREL in a PIE 4 ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' 4 Warning: synced file at 'tools/objtool/arch/x86/include/asm/insn.h' differs from latest kernel version at 'arch/x86/include/asm/insn.h' 3 ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' 3 arch/x86/entry/entry_32.S:480: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr' 2 sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] 2 drivers/tty/serial/samsung.c:1790:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element 1 {standard input}:30: Warning: macro instruction expanded into multiple instructions 1 sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] 1 drivers/gpio/gpio-omap.c:1152:34: warning: array ‘omap_gpio_match’ assumed to have one element Section mismatches summary: 13 WARNING: modpost: Found 1 section mismatch(es). ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- 32r2el_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- acs5k_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- acs5k_tiny_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: Warning: synced file at 'tools/objtool/arch/x86/include/asm/insn.h' differs from latest kernel version at 'arch/x86/include/asm/insn.h' ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- allnoconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: arch/x86/entry/entry_32.S:480: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr' ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- allnoconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ar7_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath25_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath79_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm47xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm63xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bigsur_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_be_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_stb_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- capcella_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cavium_octeon_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ci20_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x2xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cobalt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- db1xxx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- decstation_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- defconfig+arm64-chromebook (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- dove_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- e55_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- em_x270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- fuloong2e_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gemini_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gpr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h5000_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hackkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hsdk_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- i386_defconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: arch/x86/entry/entry_32.S:480: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr' ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- imote2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v4_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- integrator_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- iop13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop32x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop33x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip22_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip27_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip28_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip32_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jazz_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jmr3927_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- keystone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ks8695_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lasat_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lemote2f_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson1b_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson1c_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson3_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpd270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_guest_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_qemu_32r6_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: {standard input}:30: Warning: macro instruction expanded into multiple instructions -------------------------------------------------------------------------------- maltaaprp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_eva_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_xpa_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- markeins_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mini2440_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/tty/serial/samsung.c:1790:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element -------------------------------------------------------------------------------- mips_paravirt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mmp2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- moxart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mpc30x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- msp71xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mtx1_defconfig (mips, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] -------------------------------------------------------------------------------- multi_v4t_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mxs_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- neponset_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netwinder_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nhk8815_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nlm_xlp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nlm_xlr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsim_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsim_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc950_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc960_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omap1_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/gpio/gpio-omap.c:1152:34: warning: array ‘omap_gpio_match’ assumed to have one element -------------------------------------------------------------------------------- omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omega2p_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pic32mzda_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pistachio_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pnx8335_stb225_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qi_lb60_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- raumfeld_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rb532_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rbtx49xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rm200_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rt305x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c2410_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/tty/serial/samsung.c:1790:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element -------------------------------------------------------------------------------- s3c6400_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- s5pv210_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- sama5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sb1250_swarm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shmobile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- simpad_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- socfpga_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- spear6xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- spitz_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- stm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sunxi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tango4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0219_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0226_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0287_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: Warning: synced file at 'tools/objtool/arch/x86/include/asm/insn.h' differs from latest kernel version at 'arch/x86/include/asm/insn.h' ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- tinyconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: arch/x86/entry/entry_32.S:480: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr' ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- tinyconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- trizeps4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- u300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- u8500_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vdk_hs38_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vdk_hs38_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vocore2_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vt8500_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- workpad_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: Warning: synced file at 'tools/objtool/arch/x86/include/asm/insn.h' differs from latest kernel version at 'arch/x86/include/asm/insn.h' ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: Warning: synced file at 'tools/objtool/arch/x86/include/asm/insn.h' differs from latest kernel version at 'arch/x86/include/asm/insn.h' ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- xcep_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- xilfpga_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zeus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches --- For more info write to <info(a)kernelci.org>
1 year, 10 months
1
0
0
0
stable/linux-5.4.y baseline: 176 runs, 41 regressions (v5.4.235)
by kernelci.org bot
stable/linux-5.4.y baseline: 176 runs, 41 regressions (v5.4.235) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 fsl-ls1028a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/job/stable/branch/linux-5.4.y/kernel/v5.4.235/pla…
Test: baseline Tree: stable Branch: linux-5.4.y Describe: v5.4.235 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
SHA: 126ee8982bfcae6111f0fd157ee5cdd0ec7f5ca5 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3efbeec6bacdb28c8649
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm/multi_v7_defc…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm/multi_v7_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d3efbeec6bacdb28c8652
failing since 52 days (last pass: v5.4.224, first fail: v5.4.229) 2023-03-12T02:54:34.469116 + set +x<8>[ 9.858715] <LAVA_SIGNAL_ENDRUN 0_dmesg 3406080_1.5.2.4.1> 2023-03-12T02:54:34.469802 2023-03-12T02:54:34.580274 / # # 2023-03-12T02:54:34.683206 export SHELL=/bin/sh 2023-03-12T02:54:34.684180 # 2023-03-12T02:54:34.786384 / # export SHELL=/bin/sh. /lava-3406080/environment 2023-03-12T02:54:34.787669 2023-03-12T02:54:34.890075 / # . /lava-3406080/environment/lava-3406080/bin/lava-test-runner /lava-3406080/1 2023-03-12T02:54:34.892176 2023-03-12T02:54:34.893142 / # <3>[ 10.240566] Bluetooth: hci0: command 0x0c03 tx timeout ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ fsl-ls1028a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d9a53596ffca68c863e
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d3d9a53596ffca68c8645
failing since 8 days (last pass: v5.4.225, first fail: v5.4.234) 2023-03-12T02:48:37.553599 + [ 15.674859] <LAVA_SIGNAL_ENDRUN 0_dmesg 1170884_1.5.2.4.1> 2023-03-12T02:48:37.553906 set +x 2023-03-12T02:48:37.659501 / # # 2023-03-12T02:48:37.761416 export SHELL=/bin/sh 2023-03-12T02:48:37.761857 # 2023-03-12T02:48:37.863254 / # export SHELL=/bin/sh. /lava-1170884/environment 2023-03-12T02:48:37.863711 2023-03-12T02:48:37.965172 / # . /lava-1170884/environment/lava-1170884/bin/lava-test-runner /lava-1170884/1 2023-03-12T02:48:37.965932 2023-03-12T02:48:37.967756 / # /lava-1170884/bin/lava-test-runner /lava-1170884/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d41821d747cac8c8691
Results: 3 PASS, 2 FAIL, 2 SKIP Full config: defconfig Compiler: gcc-10 (riscv64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/riscv/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/riscv/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/640d3d41821d747cac8c8696
failing since 136 days (last pass: v5.4.219, first fail: v5.4.220) 3 lines 2023-03-12T02:46:52.861684 / # 2023-03-12T02:46:52.862589 2023-03-12T02:46:54.931290 / # # 2023-03-12T02:46:54.931972 # 2023-03-12T02:46:56.942331 / # export SHELL=/bin/sh 2023-03-12T02:46:56.942798 export SHELL=/bin/sh 2023-03-12T02:46:58.958199 / # . /lava-3406018/environment 2023-03-12T02:46:58.958745 . /lava-3406018/environment 2023-03-12T02:47:00.973680 / # /lava-3406018/bin/lava-test-runner /lava-3406018/0 2023-03-12T02:47:00.975601 /lava-3406018/bin/lava-test-runner /lava-3406018/0 ... (9 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3f2bcc798031ca8c862f
Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm/multi_v7_defc…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm/multi_v7_defc…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d3f2bcc798031ca8c8636
failing since 52 days (last pass: v5.4.224, first fail: v5.4.229) 2023-03-12T02:55:14.852544 + set<8>[ 15.231776] <LAVA_SIGNAL_ENDRUN 0_dmesg 1170892_1.5.2.4.1> 2023-03-12T02:55:14.852799 +x 2023-03-12T02:55:14.958403 / # # 2023-03-12T02:55:16.118104 export SHELL=/bin/sh 2023-03-12T02:55:16.123509 # 2023-03-12T02:55:17.670777 / # export SHELL=/bin/sh. /lava-1170892/environment 2023-03-12T02:55:17.676492 2023-03-12T02:55:20.497750 / # . /lava-1170892/environment/lava-1170892/bin/lava-test-runner /lava-1170892/1 2023-03-12T02:55:20.503829 2023-03-12T02:55:20.508148 / # /lava-1170892/bin/lava-test-runner /lava-1170892/1 ... (18 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e84d743bf829b8c8656
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e84d743bf829b8c8657
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4013427dc8d2498c86b9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4013427dc8d2498c86ba
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3f419c4c26f2058c86bb
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3f419c4c26f2058c86bc
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d40a9c72912ec348c864d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d40a9c72912ec348c864e
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e52d09047be248c8631
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e52d09047be248c8632
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d400c2fd8af17aa8c8652
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d400c2fd8af17aa8c8653
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e82eff04f4c3e8c863c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e82eff04f4c3e8c863d
failing since 225 days (last pass: v5.4.180, first fail: v5.4.208) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4010427dc8d2498c86b0
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4010427dc8d2498c86b1
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3f191637b1bdae8c8664
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3f191637b1bdae8c8665
failing since 225 days (last pass: v5.4.180, first fail: v5.4.208) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4081f68fe094c18c8647
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4081f68fe094c18c8648
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e3ea670e7be838c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e3ea670e7be838c8630
failing since 225 days (last pass: v5.4.180, first fail: v5.4.208) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d400b2fd8af17aa8c864d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d400b2fd8af17aa8c864e
failing since 164 days (last pass: v5.4.180, first fail: v5.4.215) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3ed227120371b48c8706
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3ed227120371b48c8707
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4011427dc8d2498c86b3
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4011427dc8d2498c86b4
failing since 306 days (last pass: v5.4.190, first fail: v5.4.192) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3f7dd96919a5768c865f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3f7dd96919a5768c8660
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4095f68fe094c18c8666
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4095f68fe094c18c8667
failing since 306 days (last pass: v5.4.190, first fail: v5.4.192) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e89d743bf829b8c865c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e89d743bf829b8c865d
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e81d743bf829b8c8650
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e81d743bf829b8c8651
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4012427dc8d2498c86b6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4012427dc8d2498c86b7
failing since 306 days (last pass: v5.4.190, first fail: v5.4.192) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3ef11637b1bdae8c8636
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3ef11637b1bdae8c8637
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d4096c72912ec348c8648
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig+a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d4096c72912ec348c8649
failing since 306 days (last pass: v5.4.190, first fail: v5.4.192) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3e2bedc1290b168c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/arm64/defconfig/g…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e2bedc1290b168c863e
failing since 157 days (last pass: v5.4.180, first fail: v5.4.216) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3dcb5f1de4b0b68c8651
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3dcb5f1de4b0b68c8652
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3dd824d3a9e95e8c8636
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3dd824d3a9e95e8c8637
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3dd55f1de4b0b68c8658
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/i386/i386_defconf…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3dd55f1de4b0b68c8659
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d4576b0553a138c8710
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d4576b0553a138c8711
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3df35f1de4b0b68c8673
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3df35f1de4b0b68c8674
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d381add723ff38c864b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d381add723ff38c864c
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3e144dffe598318c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e144dffe598318c8636
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d3576b0553a138c8637
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d3576b0553a138c8638
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3e03a5c949dd6a8c863d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e03a5c949dd6a8c863e
failing since 17 days (last pass: v5.4.231, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d46cffea20df68c866c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d46cffea20df68c866d
failing since 17 days (last pass: v5.4.230, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3df45f1de4b0b68c8676
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3df45f1de4b0b68c8677
failing since 17 days (last pass: v5.4.229, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d3a821d747cac8c868b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d3a821d747cac8c868c
failing since 17 days (last pass: v5.4.230, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3e16a5c949dd6a8c865b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3e16a5c949dd6a8c865c
failing since 17 days (last pass: v5.4.229, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3d36a5545b0bfc8c8638
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3d36a5545b0bfc8c8639
failing since 17 days (last pass: v5.4.230, first fail: v5.4.232) platform | arch | lab | compiler | defconfig | regressions ---------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3dee5f1de4b0b68c8662
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
HTML log:
https://storage.kernelci.org//stable/linux-5.4.y/v5.4.235/x86_64/x86_64_def…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3dee5f1de4b0b68c8663
failing since 17 days (last pass: v5.4.229, first fail: v5.4.232)
1 year, 10 months
1
0
0
0
stable/linux-4.19.y build: 195 builds: 5 failed, 190 passed, 28 warnings (v4.19.276)
by kernelci.org bot
stable/linux-4.19.y build: 195 builds: 5 failed, 190 passed, 28 warnings (v4.19.276) Full Build Summary:
https://kernelci.org/build/stable/branch/linux-4.19.y/kernel/v4.19.276/
Tree: stable Branch: linux-4.19.y Git Describe: v4.19.276 Git Commit: 6a98afd74b4c2016fb87f5c3b7ce1c53ac215c13 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
Built: 7 unique architectures Build Failures Detected: mips: ip27_defconfig: (gcc-10) FAIL ip28_defconfig: (gcc-10) FAIL riscv: allnoconfig: (gcc-10) FAIL defconfig: (gcc-10) FAIL tinyconfig: (gcc-10) FAIL Warnings Detected: arc: arm64: defconfig (gcc-10): 3 warnings defconfig+arm64-chromebook (gcc-10): 3 warnings arm: omap1_defconfig (gcc-10): 1 warning i386: allnoconfig (gcc-10): 2 warnings i386_defconfig (gcc-10): 2 warnings tinyconfig (gcc-10): 2 warnings mips: lemote2f_defconfig (gcc-10): 1 warning loongson3_defconfig (gcc-10): 1 warning malta_qemu_32r6_defconfig (gcc-10): 1 warning mtx1_defconfig (gcc-10): 3 warnings nlm_xlp_defconfig (gcc-10): 1 warning riscv: x86_64: allnoconfig (gcc-10): 2 warnings tinyconfig (gcc-10): 2 warnings x86_64_defconfig (gcc-10): 2 warnings x86_64_defconfig+x86-chromebook (gcc-10): 2 warnings Warnings summary: 7 ld: warning: creating DT_TEXTREL in a PIE 6 aarch64-linux-gnu-ld: warning: -z norelro ignored 4 ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' 3 ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' 2 sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] 2 net/core/rtnetlink.c:3199:1: warning: the frame size of 1328 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1 {standard input}:132: Warning: macro instruction expanded into multiple instructions 1 sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] 1 net/core/rtnetlink.c:3199:1: warning: the frame size of 1344 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1 drivers/gpio/gpio-omap.c:1233:34: warning: array ‘omap_gpio_match’ assumed to have one element Section mismatches summary: 13 WARNING: modpost: Found 1 section mismatch(es). ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- 32r2el_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- acs5k_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- acs5k_tiny_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ar7_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath25_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath79_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm47xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm63xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bigsur_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_be_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_stb_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- capcella_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cavium_octeon_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ci20_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x2xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cobalt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- db1xxx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- decstation_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (arm64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- defconfig+arm64-chromebook (arm64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- dove_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- e55_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- em_x270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- fuloong2e_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gcw0_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gemini_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gpr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h5000_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hackkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hsdk_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- i386_defconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- imote2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v4_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- integrator_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- iop13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop32x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop33x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip22_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip27_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip28_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip32_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jazz_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jmr3927_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- keystone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ks8695_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lasat_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lemote2f_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: net/core/rtnetlink.c:3199:1: warning: the frame size of 1328 bytes is larger than 1024 bytes [-Wframe-larger-than=] -------------------------------------------------------------------------------- loongson1b_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson1c_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson3_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: net/core/rtnetlink.c:3199:1: warning: the frame size of 1328 bytes is larger than 1024 bytes [-Wframe-larger-than=] -------------------------------------------------------------------------------- lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_guest_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_qemu_32r6_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: {standard input}:132: Warning: macro instruction expanded into multiple instructions -------------------------------------------------------------------------------- maltaaprp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_eva_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_xpa_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- markeins_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mini2440_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mips_paravirt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mmp2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- moxart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mpc30x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- msp71xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mtx1_defconfig (mips, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations] -------------------------------------------------------------------------------- multi_v4t_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mxs_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- neponset_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netwinder_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nhk8815_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nlm_xlp_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: net/core/rtnetlink.c:3199:1: warning: the frame size of 1344 bytes is larger than 1024 bytes [-Wframe-larger-than=] -------------------------------------------------------------------------------- nlm_xlr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsim_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsim_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc950_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc960_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omap1_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/gpio/gpio-omap.c:1233:34: warning: array ‘omap_gpio_match’ assumed to have one element -------------------------------------------------------------------------------- omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omega2p_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- oxnas_v6_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pic32mzda_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pistachio_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pnx8335_stb225_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qi_lb60_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- raumfeld_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rb532_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rbtx49xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rm200_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rt305x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c2410_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c6400_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- s5pv210_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- sama5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sb1250_swarm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shmobile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- simpad_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- socfpga_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- spear6xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- stm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sunxi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tango4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0219_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0226_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0287_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- tinyconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- trizeps4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- u300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- u8500_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vdk_hs38_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vdk_hs38_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vf610m4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vocore2_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vt8500_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- workpad_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- xcep_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zeus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches --- For more info write to <info(a)kernelci.org>
1 year, 10 months
1
0
0
0
stable/linux-4.14.y baseline: 131 runs, 24 regressions (v4.14.308)
by kernelci.org bot
stable/linux-4.14.y baseline: 131 runs, 24 regressions (v4.14.308) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 2 Details:
https://kernelci.org/test/job/stable/branch/linux-4.14.y/kernel/v4.14.308/p…
Test: baseline Tree: stable Branch: linux-4.14.y Describe: v4.14.308 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
SHA: 373c2a0d721acdbed9f45bf9816c04edad3704ca Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3469a06c5511728c8639
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3469a06c5511728c863a
failing since 247 days (last pass: v4.14.275, first fail: v4.14.287) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d34a724a03f8c298c866a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d34a724a03f8c298c866b
failing since 388 days (last pass: v4.14.266, first fail: v4.14.267) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d32a03243860dcc8c865e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d32a03243860dcc8c865f
failing since 172 days (last pass: v4.14.267, first fail: v4.14.294) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3480a06c5511728c8654
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3480a06c5511728c8655
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d33601ec826ade68c8654
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d33601ec826ade68c8655
failing since 172 days (last pass: v4.14.267, first fail: v4.14.294) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d34f27392c598c88c8641
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d34f27392c598c88c8642
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d3285487fd0f5558c8632
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3285487fd0f5558c8633
failing since 172 days (last pass: v4.14.267, first fail: v4.14.294) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d329e3243860dcc8c8658
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d329e3243860dcc8c8659
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3481a06c5511728c8657
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3481a06c5511728c8658
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d334b2115af44818c8666
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d334b2115af44818c8667
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3503ac8adfdb2a8c8631
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3503ac8adfdb2a8c8632
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d329f3243860dcc8c865b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d329f3243860dcc8c865c
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d347fa06c5511728c8651
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d347fa06c5511728c8652
failing since 187 days (last pass: v4.14.267, first fail: v4.14.292) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d335fde8258d5078c8656
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d335fde8258d5078c8657
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d34f075a2780cdd8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d34f075a2780cdd8c8630
failing since 187 days (last pass: v4.14.267, first fail: v4.14.292) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d32840f34ccb9ff8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d32840f34ccb9ff8c8630
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d347ab7dd7460638c8662
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d347ab7dd7460638c8663
failing since 187 days (last pass: v4.14.267, first fail: v4.14.292) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d329d3243860dcc8c8655
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d329d3243860dcc8c8656
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d347da06c5511728c864e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d347da06c5511728c864f
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d33372fe23371f78c8673
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d33372fe23371f78c8674
failing since 303 days (last pass: v4.14.275, first fail: v4.14.278) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d34ef0dc6b745af8c8634
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d34ef0dc6b745af8c8635
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d3479a06c5511728c863e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm64/defconfig…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d3479a06c5511728c863f
failing since 225 days (last pass: v4.14.267, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 2 Details:
https://kernelci.org/test/plan/id/640d33ab30a89a6fa48c8641
Results: 61 PASS, 7 FAIL, 2 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm/multi_v7_de…
HTML log:
https://storage.kernelci.org//stable/linux-4.14.y/v4.14.308/arm/multi_v7_de…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.dwhdmi-rockchip-driver-cec-present:
https://kernelci.org/test/case/id/640d33ab30a89a6fa48c8675
failing since 51 days (last pass: v4.14.302, first fail: v4.14.303) 2023-03-12T02:06:24.105874 BusyBox v1.31.1 (2023-03-03 12:54:59 UTC)[ 11.528897] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-driver-audio-present RESULT=fail> 2023-03-12T02:06:24.108821 multi-call binary. 2023-03-12T02:06:24.109381 * baseline.bootrr.dwhdmi-rockchip-driver-audio-present:
https://kernelci.org/test/case/id/640d33ab30a89a6fa48c8676
failing since 51 days (last pass: v4.14.302, first fail: v4.14.303) 2023-03-12T02:06:24.087968
1 year, 10 months
1
0
0
0
stable-rc/queue/5.4 baseline: 161 runs, 32 regressions (v5.4.234-356-g98b6a330b3231)
by kernelci.org bot
stable-rc/queue/5.4 baseline: 161 runs, 32 regressions (v5.4.234-356-g98b6a330b3231) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.4/kernel/v5.4.234-…
Test: baseline Tree: stable-rc Branch: queue/5.4 Describe: v5.4.234-356-g98b6a330b3231 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 98b6a330b32313a1677b1c23939ba5762ba092a0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2aa547c70a85e48c86c1
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d2aa547c70a85e48c86ca
failing since 40 days (last pass: v5.4.230-81-g2ad0dc06d587, first fail: v5.4.230-108-g761a8268d868) 2023-03-12T01:27:53.266584 + set +x<8>[ 9.864779] <LAVA_SIGNAL_ENDRUN 0_dmesg 3405908_1.5.2.4.1> 2023-03-12T01:27:53.266803 2023-03-12T01:27:53.373313 / # # 2023-03-12T01:27:53.474797 export SHELL=/bin/sh 2023-03-12T01:27:53.475227 # 2023-03-12T01:27:53.576464 / # export SHELL=/bin/sh. /lava-3405908/environment 2023-03-12T01:27:53.576887 2023-03-12T01:27:53.678167 / # . /lava-3405908/environment/lava-3405908/bin/lava-test-runner /lava-3405908/1 2023-03-12T01:27:53.678815 2023-03-12T01:27:53.683886 / # /lava-3405908/bin/lava-test-runner /lava-3405908/1 ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2824b54711e3e48c863d
Results: 3 PASS, 2 FAIL, 2 SKIP Full config: defconfig Compiler: gcc-10 (riscv64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/640d2824b54711e3e48c8642
failing since 143 days (last pass: v5.4.219-270-gde284a6cd1e4, first fail: v5.4.219-266-g5eb28a6c7901) 3 lines 2023-03-12T01:17:07.112988 / # 2023-03-12T01:17:07.118724 2023-03-12T01:17:07.225588 / # # 2023-03-12T01:17:07.230789 # 2023-03-12T01:17:07.349204 / # export SHELL=/bin/sh 2023-03-12T01:17:07.359032 export SHELL=/bin/sh 2023-03-12T01:17:07.462461 / # . /lava-3405827/environment 2023-03-12T01:17:07.471349 . /lava-3405827/environment 2023-03-12T01:17:07.574015 / # /lava-3405827/bin/lava-test-runner /lava-3405827/0 2023-03-12T01:17:07.583087 /lava-3405827/bin/lava-test-runner /lava-3405827/0 ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a90ed54b476d38c8630
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2a90ed54b476d38c8631
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2c4813300dd8c28c879f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2c4813300dd8c28c87a0
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2b7930310db1828c8695
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2b7930310db1828c8696
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2de6f1afa971ea8c863e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2de6f1afa971ea8c863f
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2aa7de5466fa8b8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2aa7de5466fa8b8c8630
failing since 229 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2c4a13300dd8c28c87a5
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2c4a13300dd8c28c87a6
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2bde5bbdfb1a3a8c8693
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2bde5bbdfb1a3a8c8694
failing since 229 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2eae49379eb5d78c8635
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2eae49379eb5d78c8636
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a63c086cc8b928c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2a63c086cc8b928c8630
failing since 229 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a9147c70a85e48c86ae
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2a9147c70a85e48c86af
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2c5ce38bac69158c8630
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2c5ce38bac69158c8631
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2ba15bbdfb1a3a8c8657
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2ba15bbdfb1a3a8c8658
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2ec249379eb5d78c8639
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2ec249379eb5d78c863a
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2aa6ed54b476d38c8648
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2aa6ed54b476d38c8649
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2c49208608d5748c864b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2c49208608d5748c864c
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2bca5bbdfb1a3a8c868f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2bca5bbdfb1a3a8c8690
failing since 305 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d2e0ef1afa971ea8c8665
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2e0ef1afa971ea8c8666
failing since 305 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d29f02900a00e978c8630
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29f02900a00e978c8631
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-broonie | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2ab1de5466fa8b8c863c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: i386_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2ab1de5466fa8b8c863d
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d29b4d091bfba4e8c862f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29b4d091bfba4e8c8630
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d29c8d091bfba4e8c863f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29c8d091bfba4e8c8640
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d29c1d091bfba4e8c8639
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29c1d091bfba4e8c863a
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a76d69286b8d98c865b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2a76d69286b8d98c865c
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d299b90e87b1a788c8637
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d299b90e87b1a788c8638
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d29b5d091bfba4e8c8633
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29b5d091bfba4e8c8634
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-baylibre | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d29c98ec2a3a2668c864c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29c98ec2a3a2668c864d
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/640d29e94ef19b62608c865c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29e94ef19b62608c865d
failing since 26 days (last pass: v5.4.231-79-gef392a6e97bb, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-broonie | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a77d69286b8d98c8693
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d2a77d69286b8d98c8694
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_x86_64-uefi-mixed | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d29af3a4246b97a8c864c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/640d29af3a4246b97a8c864d
failing since 26 days (last pass: v5.4.231-76-g24eb5d727a7b, first fail: v5.4.231-87-g1c61c99ed18f) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/640d2a4099e53f5ec48c8630
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.234-356-g98b6a330b32…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/640d2a4099e53f5ec48c8639
failing since 38 days (last pass: v5.4.230-108-g761a8268d868, first fail: v5.4.230-109-g0a6085bff265) 2023-03-12T01:26:13.834823 / # # 2023-03-12T01:26:13.937059 export SHELL=/bin/sh 2023-03-12T01:26:13.937633 # 2023-03-12T01:26:14.039248 / # export SHELL=/bin/sh. /lava-3405900/environment 2023-03-12T01:26:14.039950 2023-03-12T01:26:14.141580 / # . /lava-3405900/environment/lava-3405900/bin/lava-test-runner /lava-3405900/1 2023-03-12T01:26:14.142660 2023-03-12T01:26:14.159313 / # /lava-3405900/bin/lava-test-runner /lava-3405900/1 2023-03-12T01:26:14.234296 + export 'TESTRUN_ID=1_bootrr' 2023-03-12T01:26:14.235049 + cd /lava-3405900/1/tests/1_bootrr ... (10 line(s) more)
1 year, 10 months
1
0
0
0
← Newer
1
...
109
110
111
112
113
114
115
...
189
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
Results per page:
10
25
50
100
200