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
February
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
May 2023
----- 2025 -----
February 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
431 participants
1874 discussions
Start a n
N
ew thread
[PATCH] tpm_vtpm_proxy: fix race condition in /dev/vtpmx creation
by Jarkko Sakkinen
/dev/vtpmx is made visible before the workqueue exist, which can lead memory corruption in the worst case, if workqueue is used before it has been fully initialized. Address this by changing the call order. Cc: Stefan Berger <stefanb(a)linux.vnet.ibm.com> Cc: stable(a)vger.kernel.org Fixes: 6f99612e2500 ("tpm: Proxy driver for supporting multiple emulated TPMs") Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen(a)tuni.fi> --- drivers/char/tpm/tpm_vtpm_proxy.c | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/drivers/char/tpm/tpm_vtpm_proxy.c b/drivers/char/tpm/tpm_vtpm_proxy.c index 5c865987ba5c..ef1367cf2f10 100644 --- a/drivers/char/tpm/tpm_vtpm_proxy.c +++ b/drivers/char/tpm/tpm_vtpm_proxy.c @@ -50,7 +50,7 @@ struct proxy_dev { /* all supported flags */ #define VTPM_PROXY_FLAGS_ALL (VTPM_PROXY_FLAG_TPM2) -static struct workqueue_struct *workqueue; +static struct workqueue_struct *vtpm_workqueue; static void vtpm_proxy_delete_device(struct proxy_dev *proxy_dev); @@ -478,7 +478,7 @@ static void vtpm_proxy_work_stop(struct proxy_dev *proxy_dev) */ static inline void vtpm_proxy_work_start(struct proxy_dev *proxy_dev) { - queue_work(workqueue, &proxy_dev->work); + queue_work(vtpm_workqueue, &proxy_dev->work); } /* @@ -697,30 +697,24 @@ static int __init vtpm_module_init(void) { int rc; - rc = vtpmx_init(); - if (rc) { - pr_err("couldn't create vtpmx device\n"); + vtpm_workqueue = create_workqueue("tpm-vtpm"); + if (!vtpm_workqueue) { + rc = -ENOMEM; return rc; } - workqueue = create_workqueue("tpm-vtpm"); - if (!workqueue) { - pr_err("couldn't create workqueue\n"); - rc = -ENOMEM; - goto err_vtpmx_cleanup; + rc = vtpmx_init(); + if (rc) { + vtpmx_cleanup(); + return rc; } return 0; - -err_vtpmx_cleanup: - vtpmx_cleanup(); - - return rc; } static void __exit vtpm_module_exit(void) { - destroy_workqueue(workqueue); + destroy_workqueue(vtpm_workqueue); vtpmx_cleanup(); } -- 2.39.2
1 year, 8 months
3
2
0
0
stable-rc/queue/4.19 baseline: 122 runs, 22 regressions (v4.19.282-177-g67ddf86b4bbde)
by kernelci.org bot
stable-rc/queue/4.19 baseline: 122 runs, 22 regressions (v4.19.282-177-g67ddf86b4bbde) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ cubietruck | 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-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-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-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-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.19/kernel/v4.19.28…
Test: baseline Tree: stable-rc Branch: queue/4.19 Describe: v4.19.282-177-g67ddf86b4bbde URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 67ddf86b4bbdeb2a9a2d9f5a6611404a4a7aea90 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/645fb5e9c9f54423972e860d
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb5e9c9f54423972e8612
failing since 116 days (last pass: v4.19.269-9-gce7b59ec9d48, first fail: v4.19.269-521-g305d312d039a) 2023-05-13T16:07:58.675531 <8>[ 7.358506] <LAVA_SIGNAL_ENDRUN 0_dmesg 3585333_1.5.2.4.1> 2023-05-13T16:07:58.785509 / # # 2023-05-13T16:07:58.888612 export SHELL=/bin/sh 2023-05-13T16:07:58.889544 # 2023-05-13T16:07:58.991812 / # export SHELL=/bin/sh. /lava-3585333/environment 2023-05-13T16:07:58.992695 2023-05-13T16:07:59.094642 / # . /lava-3585333/environment/lava-3585333/bin/lava-test-runner /lava-3585333/1 2023-05-13T16:07:59.095174 2023-05-13T16:07:59.099975 / # /lava-3585333/bin/lava-test-runner /lava-3585333/1 2023-05-13T16:07:59.183339 + export 'TESTRUN_ID=1_bootrr' ... (11 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/645fb3ff7c1cf153152e8602
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb3ff7c1cf153152e8603
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb6072aa49567562e85ef
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb6072aa49567562e85f0
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb459005f2f41df2e85f8
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb459005f2f41df2e85f9
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb5f4c9f54423972e861b
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb5f4c9f54423972e861c
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/645fb40146b6b57e3b2e85ea
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb40146b6b57e3b2e85eb
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb60a2aa49567562e85f5
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb60a2aa49567562e85f6
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/645fb465e06bb4ce052e85ee
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb465e06bb4ce052e85ef
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb5fe2aa49567562e85e6
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb5fe2aa49567562e85e7
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb40446b6b57e3b2e85f4
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb40446b6b57e3b2e85f5
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb6083e7a5175da2e85f0
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb6083e7a5175da2e85f1
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb46de06bb4ce052e85fb
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb46de06bb4ce052e85fc
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb5e99fc4afb3812e85e6
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb5e99fc4afb3812e85e7
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/645fb4007c1cf153152e8608
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb4007c1cf153152e8609
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb6099fc4afb3812e860a
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb6099fc4afb3812e860b
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/645fb464dcf3e189b52e85eb
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb464dcf3e189b52e85ec
failing since 368 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) 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/645fb5fdc9f54423972e862e
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-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb5fdc9f54423972e862f
failing since 291 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645fb5927ee56061992e85f7
Results: 77 PASS, 5 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-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-usb2phy1-probed:
https://kernelci.org/test/case/id/645fb5927ee56061992e85fd
failing since 60 days (last pass: v4.19.275-252-gcb3c41fc75db9, first fail: v4.19.276-34-ge787294ce440f) 2023-05-13T16:06:37.452971 2023-05-13T16:06:38.472930 /lava-10306932/1/../bin/lava-test-case<8>[ 37.475928] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy1-probed RESULT=fail> 2023-05-13T16:06:38.473461 * baseline.bootrr.rockchip-usb2phy0-probed:
https://kernelci.org/test/case/id/645fb5927ee56061992e85fe
failing since 60 days (last pass: v4.19.275-252-gcb3c41fc75db9, first fail: v4.19.276-34-ge787294ce440f) 2023-05-13T16:06:37.450496 /lava-10306932/1/../bin/lava-test-case<8>[ 36.454405] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb511efef925d6b2e85e7
Results: 23 PASS, 16 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-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb511efef925d6b2e860b
failing since 116 days (last pass: v4.19.268-49-g7ddcf2b97a4b, first fail: v4.19.269-521-g305d312d039a) 2023-05-13T16:03:47.719335 <8>[ 15.909193] <LAVA_SIGNAL_ENDRUN 0_dmesg 3585306_1.5.2.4.1> 2023-05-13T16:03:47.839206 / # # 2023-05-13T16:03:47.944788 export SHELL=/bin/sh 2023-05-13T16:03:47.946286 # 2023-05-13T16:03:48.049690 / # export SHELL=/bin/sh. /lava-3585306/environment 2023-05-13T16:03:48.051269 2023-05-13T16:03:48.154686 / # . /lava-3585306/environment/lava-3585306/bin/lava-test-runner /lava-3585306/1 2023-05-13T16:03:48.157605 2023-05-13T16:03:48.160808 / # /lava-3585306/bin/lava-test-runner /lava-3585306/1 2023-05-13T16:03:48.192351 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb2e9d8e3d349032e866d
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-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb2e9d8e3d349032e8672
failing since 116 days (last pass: v4.19.266-171-g3ff1cc101ea8, first fail: v4.19.269-521-g305d312d039a) 2023-05-13T15:54:56.978323 / # # 2023-05-13T15:54:57.080160 export SHELL=/bin/sh 2023-05-13T15:54:57.080538 # 2023-05-13T15:54:57.181865 / # export SHELL=/bin/sh. /lava-3585305/environment 2023-05-13T15:54:57.182221 2023-05-13T15:54:57.283595 / # . /lava-3585305/environment/lava-3585305/bin/lava-test-runner /lava-3585305/1 2023-05-13T15:54:57.284354 2023-05-13T15:54:57.289604 / # /lava-3585305/bin/lava-test-runner /lava-3585305/1 2023-05-13T15:54:57.359434 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T15:54:57.359919 + cd /lava-3585305<8>[ 15.632174] <LAVA_SIGNAL_STARTRUN 1_bootrr 3585305_1.5.2.4.5> ... (11 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/645fb2dbd8e3d349032e8643
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-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.282-177-g67ddf86b4…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb2dbd8e3d349032e8648
failing since 116 days (last pass: v4.19.266-171-g3ff1cc101ea8, first fail: v4.19.269-521-g305d312d039a) 2023-05-13T15:54:44.373090 / # # 2023-05-13T15:54:44.475264 export SHELL=/bin/sh 2023-05-13T15:54:44.475979 # 2023-05-13T15:54:44.577384 / # export SHELL=/bin/sh. /lava-10306835/environment 2023-05-13T15:54:44.578148 2023-05-13T15:54:44.679468 / # . /lava-10306835/environment/lava-10306835/bin/lava-test-runner /lava-10306835/1 2023-05-13T15:54:44.680457 2023-05-13T15:54:44.697148 / # /lava-10306835/bin/lava-test-runner /lava-10306835/1 2023-05-13T15:54:44.738109 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T15:54:44.755182 + cd /lava-1030683<8>[ 15.606572] <LAVA_SIGNAL_STARTRUN 1_bootrr 10306835_1.5.2.4.5> ... (11 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/queue/5.4 baseline: 168 runs, 30 regressions (v5.4.242-259-gfb49e6525c05c)
by kernelci.org bot
stable-rc/queue/5.4 baseline: 168 runs, 30 regressions (v5.4.242-259-gfb49e6525c05c) 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 hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 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-gicv2-uefi | arm64 | lab-collabora | 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+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | 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.242-…
Test: baseline Tree: stable-rc Branch: queue/5.4 Describe: v5.4.242-259-gfb49e6525c05c URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: fb49e6525c05c1653ad55b679789e625d4c62584 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/645fb1b058ab5cdb672e8609
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb1b058ab5cdb672e860e
failing since 103 days (last pass: v5.4.230-81-g2ad0dc06d587, first fail: v5.4.230-108-g761a8268d868) 2023-05-13T15:49:57.885410 <8>[ 9.863038] <LAVA_SIGNAL_ENDRUN 0_dmesg 3585219_1.5.2.4.1> 2023-05-13T15:49:57.997255 / # # 2023-05-13T15:49:58.100349 export SHELL=/bin/sh 2023-05-13T15:49:58.101284 # 2023-05-13T15:49:58.203671 / # export SHELL=/bin/sh. /lava-3585219/environment 2023-05-13T15:49:58.204576 2023-05-13T15:49:58.306722 / # . /lava-3585219/environment/lava-3585219/bin/lava-test-runner /lava-3585219/1 2023-05-13T15:49:58.308379 2023-05-13T15:49:58.314414 / # /lava-3585219/bin/lava-test-runner /lava-3585219/1 2023-05-13T15:49:58.396831 + 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/645fae91b3e83253342e85ec
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/645fae91b3e83253342e85f5
failing since 206 days (last pass: v5.4.219-270-gde284a6cd1e4, first fail: v5.4.219-266-g5eb28a6c7901) 3 lines 2023-05-13T15:36:24.177459 / # 2023-05-13T15:36:24.183562 2023-05-13T15:36:24.289546 / # # 2023-05-13T15:36:24.295755 # 2023-05-13T15:36:24.398636 / # export SHELL=/bin/sh 2023-05-13T15:36:24.407732 export SHELL=/bin/sh 2023-05-13T15:36:24.509938 / # . /lava-3585182/environment 2023-05-13T15:36:24.519949 . /lava-3585182/environment 2023-05-13T15:36:24.622356 / # /lava-3585182/bin/lava-test-runner /lava-3585182/0 2023-05-13T15:36:24.631843 /lava-3585182/bin/lava-test-runner /lava-3585182/0 ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2014c195381202e85e7
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2014c195381202e85e8
new failure (last pass: v5.4.242-259-ge4fa1c7eff085) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb0f14f4581660b2e862d
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-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb0f14f4581660b2e8632
failing since 45 days (last pass: v5.4.238-29-g39c31e43e3b2b, first fail: v5.4.238-60-gcf51829325af) 2023-05-13T15:46:43.167106 + set<8>[ 10.805121] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306695_1.4.2.3.1> 2023-05-13T15:46:43.167191 +x 2023-05-13T15:46:43.268886 # 2023-05-13T15:46:43.269163 2023-05-13T15:46:43.369751 / # #export SHELL=/bin/sh 2023-05-13T15:46:43.369948 2023-05-13T15:46:43.470489 / # export SHELL=/bin/sh. /lava-10306695/environment 2023-05-13T15:46:43.470704 2023-05-13T15:46:43.571313 / # . /lava-10306695/environment/lava-10306695/bin/lava-test-runner /lava-10306695/1 2023-05-13T15:46:43.571650 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb0f7865d6ec8ec2e85e6
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-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb0f7865d6ec8ec2e85eb
failing since 45 days (last pass: v5.4.238-29-g39c31e43e3b2b, first fail: v5.4.238-60-gcf51829325af) 2023-05-13T15:46:49.017182 <8>[ 12.358984] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306704_1.4.2.3.1> 2023-05-13T15:46:49.020612 + set +x 2023-05-13T15:46:49.125792 / # # 2023-05-13T15:46:49.226656 export SHELL=/bin/sh 2023-05-13T15:46:49.226937 # 2023-05-13T15:46:49.327573 / # export SHELL=/bin/sh. /lava-10306704/environment 2023-05-13T15:46:49.327840 2023-05-13T15:46:49.428480 / # . /lava-10306704/environment/lava-10306704/bin/lava-test-runner /lava-10306704/1 2023-05-13T15:46:49.428912 2023-05-13T15:46:49.434189 / # /lava-10306704/bin/lava-test-runner /lava-10306704/1 ... (12 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/645fb2d3d8e3d349032e8632
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2d3d8e3d349032e8633
failing since 291 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 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb2fd467ceb194a2e862c
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2fd467ceb194a2e862d
failing since 291 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 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2f7467ceb194a2e861a
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2f7467ceb194a2e861b
failing since 291 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 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb45f632de115b32e862b
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb45f632de115b32e862c
failing since 291 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 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2acbf8b01621e2e8618
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2acbf8b01621e2e8619
failing since 291 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 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb2fd467ceb194a2e8629
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2fd467ceb194a2e862a
failing since 291 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/645fb2c7925a98e77d2e8620
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2c7925a98e77d2e8621
failing since 368 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/645fb3108e9ef924572e8625
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb3108e9ef924572e8626
failing since 291 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/645fb334c89f2876612e85fc
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb334c89f2876612e85fd
failing since 368 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/645fb461005f2f41df2e8616
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb461005f2f41df2e8617
failing since 291 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-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2dd5d471143b42e8612
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2dd5d471143b42e8613
failing since 368 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/645fb2f1a2971d9b0c2e8615
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2f1a2971d9b0c2e8616
failing since 291 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+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2c4925a98e77d2e860f
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2c4925a98e77d2e8610
failing since 368 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-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb2fe2a34969d562e85f1
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2fe2a34969d562e85f2
failing since 368 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/645fb2f8467ceb194a2e861d
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2f8467ceb194a2e861e
failing since 368 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/645fb49bad3a9c77592e85f1
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb49bad3a9c77592e85f2
failing since 368 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-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2c9102286802b2e8612
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2c9102286802b2e8613
failing since 368 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-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb4153246dbc12b2e8602
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb4153246dbc12b2e8603
failing since 368 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/645fb2c5925a98e77d2e8612
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2c5925a98e77d2e8613
failing since 368 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/645fb30fb84ce386fa2e863c
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb30fb84ce386fa2e863d
failing since 291 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-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb333c9279a5aa52e85f7
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb333c9279a5aa52e85f8
failing since 368 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/645fb3358a015ecc212e85f7
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb3358a015ecc212e85f8
failing since 291 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-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fb2ca102286802b2e8618
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2ca102286802b2e8619
failing since 368 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-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fb2fc467ceb194a2e8623
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb2fc467ceb194a2e8624
failing since 291 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) 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/645fb1a758ab5cdb672e85e6
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.242-259-gfb49e6525c0…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.242-259-gfb49e6525c0…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fb1a758ab5cdb672e85ea
failing since 101 days (last pass: v5.4.230-108-g761a8268d868, first fail: v5.4.230-109-g0a6085bff265) 2023-05-13T15:49:42.255016 / # # 2023-05-13T15:49:42.357133 export SHELL=/bin/sh 2023-05-13T15:49:42.357605 # 2023-05-13T15:49:42.459095 / # export SHELL=/bin/sh. /lava-3585214/environment 2023-05-13T15:49:42.459571 2023-05-13T15:49:42.561119 / # . /lava-3585214/environment/lava-3585214/bin/lava-test-runner /lava-3585214/1 2023-05-13T15:49:42.561963 2023-05-13T15:49:42.579828 / # /lava-3585214/bin/lava-test-runner /lava-3585214/1 2023-05-13T15:49:42.667651 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T15:49:42.668252 + cd /lava-3585214/1/tests/1_bootrr ... (10 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/queue/4.14 baseline: 131 runs, 26 regressions (v4.14.314-104-gf1401789671f8)
by kernelci.org bot
stable-rc/queue/4.14 baseline: 131 runs, 26 regressions (v4.14.314-104-gf1401789671f8) 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/queue%2F4.14/kernel/v4.14.31…
Test: baseline Tree: stable-rc Branch: queue/4.14 Describe: v4.14.314-104-gf1401789671f8 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: f1401789671f8757f3273562a1d631edb6303423 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/645faf6342231f0f752e8600
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf6342231f0f752e8601
failing since 312 days (last pass: v4.14.285-35-g61a723f50c9f, first fail: v4.14.285-46-ga87318551bac) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fad464eff5079182e8633
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/queue-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fad464eff5079182e8634
failing since 454 days (last pass: v4.14.266-18-g18b83990eba9, first fail: v4.14.266-28-g7d44cfe0255d) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645faf7a53c159c5532e85f0
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf7a53c159c5532e85f1
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb0404c5c92a7d82e85ed
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb0404c5c92a7d82e85ee
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fafd62e9d658e4e2e8608
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fafd62e9d658e4e2e8609
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb1194e24f938af2e85f7
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb1194e24f938af2e85f8
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645faf5bcbcf99629b2e863a
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf5bcbcf99629b2e863b
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb02bd6e8fdeb612e8653
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb02bd6e8fdeb612e8654
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645faf76a0f6f50b952e85ed
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf76a0f6f50b952e85ee
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb08e7b885699942e8652
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb08e7b885699942e8653
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645faf864a617de90b2e873b
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf864a617de90b2e873c
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb13ffa6bc808f02e85eb
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb13ffa6bc808f02e85ec
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645faf58cbcf99629b2e8631
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf58cbcf99629b2e8632
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb0702a3c878c292e860e
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb0702a3c878c292e860f
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645faf784a617de90b2e8721
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf784a617de90b2e8722
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb03e4c5c92a7d82e85e6
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb03e4c5c92a7d82e85e7
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fafaf469c56bbf62e8661
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fafaf469c56bbf62e8662
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb103013ea1595d2e8645
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb103013ea1595d2e8646
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645faf59cbcf99629b2e8634
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf59cbcf99629b2e8635
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fafbc213036af5c2e85f0
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fafbc213036af5c2e85f1
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645faf7973ea96e61e2e867a
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf7973ea96e61e2e867b
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb03f4c5c92a7d82e85ea
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb03f4c5c92a7d82e85eb
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fafb0fb67a634cd2e8600
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fafb0fb67a634cd2e8601
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fb1184e24f938af2e85f4
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fb1184e24f938af2e85f5
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645faf5acbcf99629b2e8637
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645faf5acbcf99629b2e8638
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) 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/645fafdb2e9d658e4e2e861a
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-4.14/v4.14.314-104-gf14017896…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.314-104-gf14017896…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fafdb2e9d658e4e2e861b
failing since 291 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84)
1 year, 8 months
1
0
0
0
stable-rc/queue/6.1 baseline: 181 runs, 10 regressions (v6.1.28-184-gf7399b5543f3d)
by kernelci.org bot
stable-rc/queue/6.1 baseline: 181 runs, 10 regressions (v6.1.28-184-gf7399b5543f3d) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F6.1/kernel/v6.1.28-1…
Test: baseline Tree: stable-rc Branch: queue/6.1 Describe: v6.1.28-184-gf7399b5543f3d URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: f7399b5543f3dd4f5e067908e4f57a0f22fcf5aa Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa91211ae8d0f822e8666
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa91211ae8d0f822e866b
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:12:59.529618 + set +x 2023-05-13T15:12:59.536152 <8>[ 10.519605] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306348_1.4.2.3.1> 2023-05-13T15:12:59.641323 / # # 2023-05-13T15:12:59.741982 export SHELL=/bin/sh 2023-05-13T15:12:59.742219 # 2023-05-13T15:12:59.842736 / # export SHELL=/bin/sh. /lava-10306348/environment 2023-05-13T15:12:59.842970 2023-05-13T15:12:59.943481 / # . /lava-10306348/environment/lava-10306348/bin/lava-test-runner /lava-10306348/1 2023-05-13T15:12:59.943818 2023-05-13T15:12:59.949476 / # /lava-10306348/bin/lava-test-runner /lava-10306348/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa865b97587a9842e861b
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa865b97587a9842e8620
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:10:12.227544 + set<8>[ 11.350926] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306375_1.4.2.3.1> 2023-05-13T15:10:12.228021 +x 2023-05-13T15:10:12.335123 / # # 2023-05-13T15:10:12.437220 export SHELL=/bin/sh 2023-05-13T15:10:12.437862 # 2023-05-13T15:10:12.539176 / # export SHELL=/bin/sh. /lava-10306375/environment 2023-05-13T15:10:12.539823 2023-05-13T15:10:12.641206 / # . /lava-10306375/environment/lava-10306375/bin/lava-test-runner /lava-10306375/1 2023-05-13T15:10:12.642220 2023-05-13T15:10:12.647531 / # /lava-10306375/bin/lava-test-runner /lava-10306375/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa858422b49f31e2e8629
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa858422b49f31e2e862e
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:10:00.450256 <8>[ 10.888700] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306288_1.4.2.3.1> 2023-05-13T15:10:00.453822 + set +x 2023-05-13T15:10:00.559575 2023-05-13T15:10:00.661514 / # #export SHELL=/bin/sh 2023-05-13T15:10:00.662133 2023-05-13T15:10:00.763407 / # export SHELL=/bin/sh. /lava-10306288/environment 2023-05-13T15:10:00.764024 2023-05-13T15:10:00.865301 / # . /lava-10306288/environment/lava-10306288/bin/lava-test-runner /lava-10306288/1 2023-05-13T15:10:00.866452 2023-05-13T15:10:00.871496 / # /lava-10306288/bin/lava-test-runner /lava-10306288/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/645fae695cf8e325972e85fa
Results: 0 PASS, 1 FAIL, 0 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-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fae695cf8e325972e85fb
failing since 23 days (last pass: v6.1.22-477-g2128d4458cbc, first fail: v6.1.22-474-gecc61872327e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa83b6c2f6e26c02e85e6
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa83b6c2f6e26c02e85eb
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:09:39.187328 + set +x 2023-05-13T15:09:39.193830 <8>[ 11.456485] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306280_1.4.2.3.1> 2023-05-13T15:09:39.298687 / # # 2023-05-13T15:09:39.399401 export SHELL=/bin/sh 2023-05-13T15:09:39.399632 # 2023-05-13T15:09:39.500179 / # export SHELL=/bin/sh. /lava-10306280/environment 2023-05-13T15:09:39.500408 2023-05-13T15:09:39.600994 / # . /lava-10306280/environment/lava-10306280/bin/lava-test-runner /lava-10306280/1 2023-05-13T15:09:39.601345 2023-05-13T15:09:39.605874 / # /lava-10306280/bin/lava-test-runner /lava-10306280/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa84a201111ed892e866e
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa84a201111ed892e8673
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:09:46.022817 <8>[ 8.028614] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306296_1.4.2.3.1> 2023-05-13T15:09:46.026030 + set +x 2023-05-13T15:09:46.127980 # 2023-05-13T15:09:46.128407 2023-05-13T15:09:46.229173 / # #export SHELL=/bin/sh 2023-05-13T15:09:46.229470 2023-05-13T15:09:46.330109 / # export SHELL=/bin/sh. /lava-10306296/environment 2023-05-13T15:09:46.330406 2023-05-13T15:09:46.431047 / # . /lava-10306296/environment/lava-10306296/bin/lava-test-runner /lava-10306296/1 2023-05-13T15:09:46.431488 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa857fee94747572e864b
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa857fee94747572e8650
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:09:59.081108 + set<8>[ 11.476112] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306316_1.4.2.3.1> 2023-05-13T15:09:59.081204 +x 2023-05-13T15:09:59.185569 / # # 2023-05-13T15:09:59.286145 export SHELL=/bin/sh 2023-05-13T15:09:59.286308 # 2023-05-13T15:09:59.386850 / # export SHELL=/bin/sh. /lava-10306316/environment 2023-05-13T15:09:59.387020 2023-05-13T15:09:59.487583 / # . /lava-10306316/environment/lava-10306316/bin/lava-test-runner /lava-10306316/1 2023-05-13T15:09:59.487838 2023-05-13T15:09:59.492465 / # /lava-10306316/bin/lava-test-runner /lava-10306316/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa858422b49f31e2e861e
Results: 6 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa858422b49f31e2e8623
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T15:10:04.194883 + set<8>[ 11.901151] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306339_1.4.2.3.1> 2023-05-13T15:10:04.194968 +x 2023-05-13T15:10:04.299390 / # # 2023-05-13T15:10:04.400034 export SHELL=/bin/sh 2023-05-13T15:10:04.400174 # 2023-05-13T15:10:04.500667 / # export SHELL=/bin/sh. /lava-10306339/environment 2023-05-13T15:10:04.500797 2023-05-13T15:10:04.601327 / # . /lava-10306339/environment/lava-10306339/bin/lava-test-runner /lava-10306339/1 2023-05-13T15:10:04.601547 2023-05-13T15:10:04.606061 / # /lava-10306339/bin/lava-test-runner /lava-10306339/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645fabfc1ac87694e32e8629
Results: 166 PASS, 5 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-6.1/v6.1.28-184-gf7399b5543f3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gf7399b5543f3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.mt6577-auxadc-probed:
https://kernelci.org/test/case/id/645fabfc1ac87694e32e8645
failing since 6 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-13T15:25:39.936190 /lava-10306506/1/../bin/lava-test-case 2023-05-13T15:25:39.943044 <8>[ 23.015021] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=mt6577-auxadc-probed RESULT=fail> * baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fabfc1ac87694e32e86d1
failing since 6 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-13T15:25:34.455085 + set +x 2023-05-13T15:25:34.461372 <8>[ 17.531223] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306506_1.5.2.3.1> 2023-05-13T15:25:34.570194 / # # 2023-05-13T15:25:34.672329 export SHELL=/bin/sh 2023-05-13T15:25:34.672813 # 2023-05-13T15:25:34.773864 / # export SHELL=/bin/sh. /lava-10306506/environment 2023-05-13T15:25:34.774511 2023-05-13T15:25:34.875876 / # . /lava-10306506/environment/lava-10306506/bin/lava-test-runner /lava-10306506/1 2023-05-13T15:25:34.876117 2023-05-13T15:25:34.881431 / # /lava-10306506/bin/lava-test-runner /lava-10306506/1 ... (13 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/queue/5.10 baseline: 178 runs, 7 regressions (v5.10.179-361-g5fe530e4a72ff)
by kernelci.org bot
stable-rc/queue/5.10 baseline: 178 runs, 7 regressions (v5.10.179-361-g5fe530e4a72ff) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 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.10/kernel/v5.10.17…
Test: baseline Tree: stable-rc Branch: queue/5.10 Describe: v5.10.179-361-g5fe530e4a72ff URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 5fe530e4a72fff931586ef3dd0bcfc090192879b Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa44736ad95c9c82e85fc
Results: 51 PASS, 4 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-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa44736ad95c9c82e861a
failing since 88 days (last pass: v5.10.167-127-g921934d621e4, first fail: v5.10.167-139-gf9519a5a1701) 2023-05-13T14:52:42.322888 <8>[ 20.638006] <LAVA_SIGNAL_ENDRUN 0_dmesg 457307_1.5.2.4.1> 2023-05-13T14:52:42.431822 / # # 2023-05-13T14:52:42.535300 export SHELL=/bin/sh 2023-05-13T14:52:42.535943 # 2023-05-13T14:52:42.637776 / # export SHELL=/bin/sh. /lava-457307/environment 2023-05-13T14:52:42.638368 2023-05-13T14:52:42.740014 / # . /lava-457307/environment/lava-457307/bin/lava-test-runner /lava-457307/1 2023-05-13T14:52:42.741238 2023-05-13T14:52:42.745585 / # /lava-457307/bin/lava-test-runner /lava-457307/1 2023-05-13T14:52:42.848373 + 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/645fa71ccc10020b922e860d
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.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa71ccc10020b922e8612
failing since 107 days (last pass: v5.10.165-76-g5c2e982fcf18, first fail: v5.10.165-77-g4600242c13ed) 2023-05-13T15:04:51.832582 <8>[ 11.141495] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584952_1.5.2.4.1> 2023-05-13T15:04:51.943427 / # # 2023-05-13T15:04:52.046463 export SHELL=/bin/sh 2023-05-13T15:04:52.047325 # 2023-05-13T15:04:52.150000 / # export SHELL=/bin/sh. /lava-3584952/environment 2023-05-13T15:04:52.150943 2023-05-13T15:04:52.253093 / # . /lava-3584952/environment/lava-3584952/bin/lava-test-runner /lava-3584952/1 2023-05-13T15:04:52.254549 2023-05-13T15:04:52.260852 / # /lava-3584952/bin/lava-test-runner /lava-3584952/1 2023-05-13T15:04:52.350024 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa67d5fd85eab802e8614
Results: 6 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.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa67d5fd85eab802e8619
failing since 44 days (last pass: v5.10.176-61-g2332301f1fab4, first fail: v5.10.176-104-g2b4187983740) 2023-05-13T15:02:13.263412 + set +x 2023-05-13T15:02:13.269705 <8>[ 14.190794] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306243_1.4.2.3.1> 2023-05-13T15:02:13.378943 / # # 2023-05-13T15:02:13.481455 export SHELL=/bin/sh 2023-05-13T15:02:13.481628 # 2023-05-13T15:02:13.582185 / # export SHELL=/bin/sh. /lava-10306243/environment 2023-05-13T15:02:13.582369 2023-05-13T15:02:13.683076 / # . /lava-10306243/environment/lava-10306243/bin/lava-test-runner /lava-10306243/1 2023-05-13T15:02:13.684345 2023-05-13T15:02:13.689104 / # /lava-10306243/bin/lava-test-runner /lava-10306243/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa67e495e6692bc2e8606
Results: 6 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.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa67e495e6692bc2e860b
failing since 44 days (last pass: v5.10.176-61-g2332301f1fab4, first fail: v5.10.176-104-g2b4187983740) 2023-05-13T15:02:07.950801 + set +x 2023-05-13T15:02:07.957346 <8>[ 13.516082] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306208_1.4.2.3.1> 2023-05-13T15:02:08.062391 / # # 2023-05-13T15:02:08.163190 export SHELL=/bin/sh 2023-05-13T15:02:08.163435 # 2023-05-13T15:02:08.264050 / # export SHELL=/bin/sh. /lava-10306208/environment 2023-05-13T15:02:08.264280 2023-05-13T15:02:08.364919 / # . /lava-10306208/environment/lava-10306208/bin/lava-test-runner /lava-10306208/1 2023-05-13T15:02:08.365310 2023-05-13T15:02:08.370072 / # /lava-10306208/bin/lava-test-runner /lava-10306208/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645fa8c0bacc3f6bdd2e85f5
Results: 84 PASS, 2 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-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-usb2phy1-probed:
https://kernelci.org/test/case/id/645fa8c0bacc3f6bdd2e85fb
failing since 60 days (last pass: v5.10.172-529-g06956b9e9396, first fail: v5.10.173-69-gfcbe6bd469ed) 2023-05-13T15:11:44.239660 /lava-10306305/1/../bin/lava-test-case 2023-05-13T15:11:44.250659 <8>[ 62.100781] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy1-probed RESULT=fail> * baseline.bootrr.rockchip-usb2phy0-probed:
https://kernelci.org/test/case/id/645fa8c0bacc3f6bdd2e85fc
failing since 60 days (last pass: v5.10.172-529-g06956b9e9396, first fail: v5.10.173-69-gfcbe6bd469ed) 2023-05-13T15:11:42.177941 <8>[ 60.027327] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy-driver-present RESULT=pass> 2023-05-13T15:11:43.202529 /lava-10306305/1/../bin/lava-test-case 2023-05-13T15:11:43.213364 <8>[ 61.063647] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> 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/645fa5a1f54140fb2d2e8690
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.10/v5.10.179-361-g5fe530e4a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.179-361-g5fe530e4a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa5a1f54140fb2d2e8695
failing since 100 days (last pass: v5.10.165-139-gefb57ce0f880, first fail: v5.10.165-149-ge30e8271d674) 2023-05-13T14:58:16.945348 / # # 2023-05-13T14:58:17.047371 export SHELL=/bin/sh 2023-05-13T14:58:17.047802 # 2023-05-13T14:58:17.149154 / # export SHELL=/bin/sh. /lava-3584942/environment 2023-05-13T14:58:17.149679 2023-05-13T14:58:17.251069 / # . /lava-3584942/environment/lava-3584942/bin/lava-test-runner /lava-3584942/1 2023-05-13T14:58:17.251836 2023-05-13T14:58:17.256489 / # /lava-3584942/bin/lava-test-runner /lava-3584942/1 2023-05-13T14:58:17.320591 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T14:58:17.368315 + cd /lava-3584942/1/tests/1_bootrr ... (10 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/queue/5.15 baseline: 178 runs, 9 regressions (v5.15.111-105-g1c740a39cc067)
by kernelci.org bot
stable-rc/queue/5.15 baseline: 178 runs, 9 regressions (v5.15.111-105-g1c740a39cc067) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 sun8i-h2-plus-orangepi-r1 | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.15/kernel/v5.15.11…
Test: baseline Tree: stable-rc Branch: queue/5.15 Describe: v5.15.111-105-g1c740a39cc067 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 1c740a39cc06703b66091e80cdc063d939d60ec6 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa12762fdeb287a2e860c
Results: 6 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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa12762fdeb287a2e8611
failing since 46 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-13T14:39:27.986728 + set<8>[ 10.937282] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305963_1.4.2.3.1> 2023-05-13T14:39:27.986839 +x 2023-05-13T14:39:28.091003 / # # 2023-05-13T14:39:28.191646 export SHELL=/bin/sh 2023-05-13T14:39:28.191859 # 2023-05-13T14:39:28.292337 / # export SHELL=/bin/sh. /lava-10305963/environment 2023-05-13T14:39:28.292595 2023-05-13T14:39:28.393208 / # . /lava-10305963/environment/lava-10305963/bin/lava-test-runner /lava-10305963/1 2023-05-13T14:39:28.393580 2023-05-13T14:39:28.397959 / # /lava-10305963/bin/lava-test-runner /lava-10305963/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa1337a80792ed62e85f3
Results: 6 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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa1337a80792ed62e85f8
failing since 46 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-13T14:39:23.337895 <8>[ 11.632541] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306016_1.4.2.3.1> 2023-05-13T14:39:23.341404 + set +x 2023-05-13T14:39:23.442689 # 2023-05-13T14:39:23.443230 2023-05-13T14:39:23.544245 / # #export SHELL=/bin/sh 2023-05-13T14:39:23.544981 2023-05-13T14:39:23.646384 / # export SHELL=/bin/sh. /lava-10306016/environment 2023-05-13T14:39:23.647125 2023-05-13T14:39:23.748589 / # . /lava-10306016/environment/lava-10306016/bin/lava-test-runner /lava-10306016/1 2023-05-13T14:39:23.749755 ... (13 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/645fa6f5d7121724202e8600
Results: 0 PASS, 1 FAIL, 0 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-rc/queue-5.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa6f5d7121724202e8601
failing since 99 days (last pass: v5.15.91-12-g3290f78df1ab, first fail: v5.15.91-18-ga7afd81d41cb) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa4e18ed6c7fd9d2e8650
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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa4e18ed6c7fd9d2e8655
failing since 116 days (last pass: v5.15.82-123-gd03dbdba21ef, first fail: v5.15.87-100-ge215d5ead661) 2023-05-13T14:55:04.562073 + set +x<8>[ 10.077607] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584879_1.5.2.4.1> 2023-05-13T14:55:04.562717 2023-05-13T14:55:04.671339 / # # 2023-05-13T14:55:04.774521 export SHELL=/bin/sh 2023-05-13T14:55:04.775347 # 2023-05-13T14:55:04.877154 / # export SHELL=/bin/sh. /lava-3584879/environment 2023-05-13T14:55:04.878284 2023-05-13T14:55:04.980561 / # . /lava-3584879/environment/lava-3584879/bin/lava-test-runner /lava-3584879/1 2023-05-13T14:55:04.982423 2023-05-13T14:55:04.986708 / # /lava-3584879/bin/lava-test-runner /lava-3584879/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa121f7f06dc4ce2e8607
Results: 6 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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa121f7f06dc4ce2e860c
failing since 46 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-13T14:39:17.096971 + <8>[ 10.915157] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306010_1.4.2.3.1> 2023-05-13T14:39:17.097060 set +x 2023-05-13T14:39:17.198243 # 2023-05-13T14:39:17.299084 / # #export SHELL=/bin/sh 2023-05-13T14:39:17.299301 2023-05-13T14:39:17.399801 / # export SHELL=/bin/sh. /lava-10306010/environment 2023-05-13T14:39:17.400042 2023-05-13T14:39:17.500661 / # . /lava-10306010/environment/lava-10306010/bin/lava-test-runner /lava-10306010/1 2023-05-13T14:39:17.500944 2023-05-13T14:39:17.505308 / # /lava-10306010/bin/lava-test-runner /lava-10306010/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa120f7f06dc4ce2e85f1
Results: 6 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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa120f7f06dc4ce2e85f6
failing since 46 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-13T14:39:20.168507 + <8>[ 11.036309] <LAVA_SIGNAL_ENDRUN 0_dmesg 10306008_1.4.2.3.1> 2023-05-13T14:39:20.168630 set +x 2023-05-13T14:39:20.272724 / # # 2023-05-13T14:39:20.373281 export SHELL=/bin/sh 2023-05-13T14:39:20.373470 # 2023-05-13T14:39:20.473976 / # export SHELL=/bin/sh. /lava-10306008/environment 2023-05-13T14:39:20.474174 2023-05-13T14:39:20.574657 / # . /lava-10306008/environment/lava-10306008/bin/lava-test-runner /lava-10306008/1 2023-05-13T14:39:20.574944 2023-05-13T14:39:20.579451 / # /lava-10306008/bin/lava-test-runner /lava-10306008/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa1131ebb7cee862e8600
Results: 6 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.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa1131ebb7cee862e8605
failing since 46 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-13T14:39:02.735866 <8>[ 12.572951] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305957_1.4.2.3.1> 2023-05-13T14:39:02.840086 / # # 2023-05-13T14:39:02.940791 export SHELL=/bin/sh 2023-05-13T14:39:02.941000 # 2023-05-13T14:39:03.041529 / # export SHELL=/bin/sh. /lava-10305957/environment 2023-05-13T14:39:03.041719 2023-05-13T14:39:03.142235 / # . /lava-10305957/environment/lava-10305957/bin/lava-test-runner /lava-10305957/1 2023-05-13T14:39:03.142538 2023-05-13T14:39:03.146955 / # /lava-10305957/bin/lava-test-runner /lava-10305957/1 2023-05-13T14:39:03.152631 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa45836ad95c9c82e868a
Results: 38 PASS, 8 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-rc/queue-5.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa45836ad95c9c82e86b3
failing since 115 days (last pass: v5.15.82-123-gd03dbdba21ef, first fail: v5.15.87-100-ge215d5ead661) 2023-05-13T14:52:46.115374 + set +x 2023-05-13T14:52:46.122673 <8>[ 16.149971] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584817_1.5.2.4.1> 2023-05-13T14:52:46.241936 / # # 2023-05-13T14:52:46.347682 export SHELL=/bin/sh 2023-05-13T14:52:46.349297 # 2023-05-13T14:52:46.452865 / # export SHELL=/bin/sh. /lava-3584817/environment 2023-05-13T14:52:46.454380 2023-05-13T14:52:46.557925 / # . /lava-3584817/environment/lava-3584817/bin/lava-test-runner /lava-3584817/1 2023-05-13T14:52:46.560627 2023-05-13T14:52:46.563925 / # /lava-3584817/bin/lava-test-runner /lava-3584817/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h2-plus-orangepi-r1 | arm | lab-baylibre | gcc-10 | sunxi_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa43309d27d43d52e8651
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/queue-5.15/v5.15.111-105-g1c740a39c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.111-105-g1c740a39c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa43309d27d43d52e8656
failing since 101 days (last pass: v5.15.82-123-gd03dbdba21ef, first fail: v5.15.90-203-gea2e94bef77e) 2023-05-13T14:51:47.166150 / # # 2023-05-13T14:51:47.271621 export SHELL=/bin/sh 2023-05-13T14:51:47.273129 # 2023-05-13T14:51:47.376460 / # export SHELL=/bin/sh. /lava-3584757/environment 2023-05-13T14:51:47.378022 2023-05-13T14:51:47.481359 / # . /lava-3584757/environment/lava-3584757/bin/lava-test-runner /lava-3584757/1 2023-05-13T14:51:47.484062 2023-05-13T14:51:47.491369 / # /lava-3584757/bin/lava-test-runner /lava-3584757/1 2023-05-13T14:51:47.611079 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T14:51:47.614376 + cd /lava-3584757/1/tests/1_bootrr ... (10 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/linux-5.4.y baseline: 170 runs, 36 regressions (v5.4.242-260-gbf2ab422a150f)
by kernelci.org bot
stable-rc/linux-5.4.y baseline: 170 runs, 36 regressions (v5.4.242-260-gbf2ab422a150f) 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 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 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-gicv2-uefi | arm64 | lab-collabora | 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+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | 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 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.4.y/kernel/v5.4.242-…
Test: baseline Tree: stable-rc Branch: linux-5.4.y Describe: v5.4.242-260-gbf2ab422a150f URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: bf2ab422a150ff3aface09d6b8f77918bf78ed14 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/645f9eb2f4df6851072e8604
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9eb2f4df6851072e8609
failing since 116 days (last pass: v5.4.226, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:28:49.998828 <8>[ 23.725860] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584695_1.5.2.4.1> 2023-05-13T14:28:50.108437 / # # 2023-05-13T14:28:50.211651 export SHELL=/bin/sh 2023-05-13T14:28:50.212486 # 2023-05-13T14:28:50.314545 / # export SHELL=/bin/sh. /lava-3584695/environment 2023-05-13T14:28:50.315427 2023-05-13T14:28:50.417383 / # . /lava-3584695/environment/lava-3584695/bin/lava-test-runner /lava-3584695/1 2023-05-13T14:28:50.417993 2023-05-13T14:28:50.423420 / # /lava-3584695/bin/lava-test-runner /lava-3584695/1 2023-05-13T14:28:50.515832 + 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/645f9e8d6088c27fb62e85e7
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9e8d6088c27fb62e85ec
failing since 116 days (last pass: v5.4.226-68-g8c05f5e0777d, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:27:58.432574 + set +x<8>[ 9.882795] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584699_1.5.2.4.1> 2023-05-13T14:27:58.432794 2023-05-13T14:27:58.539327 / # # 2023-05-13T14:27:58.640941 export SHELL=/bin/sh 2023-05-13T14:27:58.641376 # 2023-05-13T14:27:58.742582 / # export SHELL=/bin/sh. /lava-3584699/environment 2023-05-13T14:27:58.743050 2023-05-13T14:27:58.844288 / # . /lava-3584699/environment/lava-3584699/bin/lava-test-runner /lava-3584699/1 2023-05-13T14:27:58.844881 2023-05-13T14:27:58.849140 / # /lava-3584699/bin/lava-test-runner /lava-3584699/1 ... (13 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/645f9e420afddd3a1a2e85fd
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9e420afddd3a1a2e8602
failing since 116 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:26:24.698187 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 3584688_1.5.2.4.1> 2023-05-13T14:26:24.809516 / # # 2023-05-13T14:26:24.912837 export SHELL=/bin/sh 2023-05-13T14:26:24.913887 # 2023-05-13T14:26:25.016105 / # export SHELL=/bin/sh. /lava-3584688/environment 2023-05-13T14:26:25.017485 2023-05-13T14:26:25.119539 / # . /lava-3584688/environment/lava-3584688/bin/lava-test-runner /lava-3584688/1 2023-05-13T14:26:25.120541 2023-05-13T14:26:25.161779 / # /lava-3584688/bin/lava-test-runner /lava-3584688/1 2023-05-13T14:26:25.376508 + 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/645f9b8274168987f82e863e
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/645f9b8274168987f82e8647
failing since 206 days (last pass: v5.4.219, first fail: v5.4.219-267-g4a976f825745) 3 lines 2023-05-13T14:15:12.085724 / # 2023-05-13T14:15:12.086614 2023-05-13T14:15:14.150538 / # # 2023-05-13T14:15:14.151715 # 2023-05-13T14:15:16.162957 / # export SHELL=/bin/sh 2023-05-13T14:15:16.163371 export SHELL=/bin/sh 2023-05-13T14:15:18.179459 / # . /lava-3584576/environment 2023-05-13T14:15:18.179883 . /lava-3584576/environment 2023-05-13T14:15:20.195335 / # /lava-3584576/bin/lava-test-runner /lava-3584576/0 2023-05-13T14:15:20.197670 /lava-3584576/bin/lava-test-runner /lava-3584576/0 ... (9 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9c6db54569bec62e8608
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-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9c6db54569bec62e860d
failing since 44 days (last pass: v5.4.238, first fail: v5.4.238) 2023-05-13T14:19:08.042694 + set +x 2023-05-13T14:19:08.048936 <8>[ 12.609248] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305682_1.4.2.3.1> 2023-05-13T14:19:08.151045 2023-05-13T14:19:08.251674 / # #export SHELL=/bin/sh 2023-05-13T14:19:08.251875 2023-05-13T14:19:08.352395 / # export SHELL=/bin/sh. /lava-10305682/environment 2023-05-13T14:19:08.352597 2023-05-13T14:19:08.453112 / # . /lava-10305682/environment/lava-10305682/bin/lava-test-runner /lava-10305682/1 2023-05-13T14:19:08.453412 2023-05-13T14:19:08.457972 / # /lava-10305682/bin/lava-test-runner /lava-10305682/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9c188b3a777f862e860d
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-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9c188b3a777f862e8612
failing since 44 days (last pass: v5.4.238, first fail: v5.4.238) 2023-05-13T14:17:44.131845 <8>[ 13.132539] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305653_1.4.2.3.1> 2023-05-13T14:17:44.134943 + set +x 2023-05-13T14:17:44.239774 # 2023-05-13T14:17:44.241401 2023-05-13T14:17:44.343435 / # #export SHELL=/bin/sh 2023-05-13T14:17:44.344162 2023-05-13T14:17:44.445746 / # export SHELL=/bin/sh. /lava-10305653/environment 2023-05-13T14:17:44.446483 2023-05-13T14:17:44.547999 / # . /lava-10305653/environment/lava-10305653/bin/lava-test-runner /lava-10305653/1 2023-05-13T14:17:44.549053 ... (13 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/645f9e6c851a227d882e8616
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e6c851a227d882e8617
failing since 368 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 | 1 Details:
https://kernelci.org/test/plan/id/645f9f47e7216feace2e861f
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9f47e7216feace2e8620
failing since 368 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/645f9fa8353dafdaca2e862e
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9fa8353dafdaca2e862f
failing since 368 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/645fa1c586abbd3acf2e8602
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa1c586abbd3acf2e8603
failing since 368 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-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9e6cb6051ffca52e8611
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e6cb6051ffca52e8612
failing since 368 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-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa02449a856f7572e85f6
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa02449a856f7572e85f7
failing since 368 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+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9e80488edc24792e85fb
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e80488edc24792e85fc
failing since 368 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-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9f21156714b4d82e8629
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9f21156714b4d82e862a
failing since 368 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-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa00c5f576bf9282e8637
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa00c5f576bf9282e8638
failing since 368 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/645fa1b0da365e520e2e861d
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa1b0da365e520e2e861e
failing since 368 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-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9e9dcf82e1c6132e85fa
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e9dcf82e1c6132e85fb
failing since 368 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/645f9fdd08a81d54442e8675
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9fdd08a81d54442e8676
failing since 368 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 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9e8219bb8bbce32e86e3
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e8219bb8bbce32e86e4
failing since 368 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-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9f2299bbc4c8d92e85f1
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9f2299bbc4c8d92e85f2
failing since 368 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 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645fa021622632a0f72e85e9
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa021622632a0f72e85ea
failing since 368 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/645fa1b2da365e520e2e8620
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa1b2da365e520e2e8621
failing since 368 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 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9ed22455e52a692e85f8
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9ed22455e52a692e85f9
failing since 368 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/645f9ff1c43677e3aa2e85eb
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9ff1c43677e3aa2e85ec
failing since 368 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/645f9e8192f176e5d52e85e9
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e8192f176e5d52e85ea
failing since 368 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-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9f10cec9f63ee22e85ea
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9f10cec9f63ee22e85eb
failing since 368 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/645fa00d5f576bf9282e8673
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa00d5f576bf9282e8674
failing since 368 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/645fa1887abc0efdf42e85ea
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645fa1887abc0efdf42e85eb
failing since 368 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-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9ed04a950b24242e8602
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9ed04a950b24242e8603
failing since 368 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-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9fc922c81811ee2e8606
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9fc922c81811ee2e8607
failing since 368 days (last pass: v5.4.191-85-ga4a4cbb41380, first fail: v5.4.191-118-g7dae5fe9ddc0) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-collabora | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9e4d30e26e34b12e85f5
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9e4d30e26e34b12e85f6
new failure (last pass: v5.4.242) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645f9d86b75eb604be2e85e8
Results: 82 PASS, 2 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-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-usb2phy1-probed:
https://kernelci.org/test/case/id/645f9d86b75eb604be2e85ee
failing since 60 days (last pass: v5.4.235, first fail: v5.4.235-4-gb829e8b6e1a7) 2023-05-13T14:23:49.026017 <8>[ 32.632306] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> 2023-05-13T14:23:50.038063 /lava-10305782/1/../bin/lava-test-case 2023-05-13T14:23:50.046063 <8>[ 33.653859] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy1-probed RESULT=fail> * baseline.bootrr.rockchip-usb2phy0-probed:
https://kernelci.org/test/case/id/645f9d86b75eb604be2e85ef
failing since 60 days (last pass: v5.4.235, first fail: v5.4.235-4-gb829e8b6e1a7) 2023-05-13T14:23:49.015208 /lava-10305782/1/../bin/lava-test-case platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645fa2c6d7535058592e85e7
Results: 32 PASS, 11 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-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645fa2c6d7535058592e860f
failing since 115 days (last pass: v5.4.226-68-g97ed976894df, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:45:42.231250 <8>[ 16.715862] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584686_1.5.2.4.1> 2023-05-13T14:45:42.351192 / # # 2023-05-13T14:45:42.456721 export SHELL=/bin/sh 2023-05-13T14:45:42.458221 # 2023-05-13T14:45:42.561605 / # export SHELL=/bin/sh. /lava-3584686/environment 2023-05-13T14:45:42.563178 2023-05-13T14:45:42.666569 / # . /lava-3584686/environment/lava-3584686/bin/lava-test-runner /lava-3584686/1 2023-05-13T14:45:42.669322 2023-05-13T14:45:42.671611 / # /lava-3584686/bin/lava-test-runner /lava-3584686/1 2023-05-13T14:45:42.705060 + 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/645f9e6f19bb8bbce32e85e6
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9e6f19bb8bbce32e85eb
failing since 116 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:27:32.032944 / # # 2023-05-13T14:27:32.135344 export SHELL=/bin/sh 2023-05-13T14:27:32.136060 # 2023-05-13T14:27:32.237620 / # export SHELL=/bin/sh. /lava-3584698/environment 2023-05-13T14:27:32.238308 2023-05-13T14:27:32.339882 / # . /lava-3584698/environment/lava-3584698/bin/lava-test-runner /lava-3584698/1 2023-05-13T14:27:32.340927 2023-05-13T14:27:32.357155 / # /lava-3584698/bin/lava-test-runner /lava-3584698/1 2023-05-13T14:27:32.444994 + export 'TESTRUN_ID=1_bootrr' 2023-05-13T14:27:32.445512 + cd /lava-3584698/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/645f9e9692f176e5d52e8630
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.242-260-gbf2ab422a…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.242-260-gbf2ab422a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9e9692f176e5d52e8635
failing since 116 days (last pass: v5.4.227, first fail: v5.4.228-659-gb3b34c474ec7) 2023-05-13T14:28:11.181220 <8>[ 5.889120] <LAVA_SIGNAL_ENDRUN 0_dmesg 3584713_1.5.2.4.1> 2023-05-13T14:28:11.286691 / # # 2023-05-13T14:28:11.388660 export SHELL=/bin/sh 2023-05-13T14:28:11.389153 # 2023-05-13T14:28:11.490513 / # export SHELL=/bin/sh. /lava-3584713/environment 2023-05-13T14:28:11.490994 2023-05-13T14:28:11.592380 / # . /lava-3584713/environment/lava-3584713/bin/lava-test-runner /lava-3584713/1 2023-05-13T14:28:11.593192 2023-05-13T14:28:11.597834 / # /lava-3584713/bin/lava-test-runner /lava-3584713/1 2023-05-13T14:28:11.677781 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more)
1 year, 8 months
1
0
0
0
stable-rc/queue/6.1 baseline: 181 runs, 11 regressions (v6.1.28-184-gd3df9458f0b5a)
by kernelci.org bot
stable-rc/queue/6.1 baseline: 181 runs, 11 regressions (v6.1.28-184-gd3df9458f0b5a) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F6.1/kernel/v6.1.28-1…
Test: baseline Tree: stable-rc Branch: queue/6.1 Describe: v6.1.28-184-gd3df9458f0b5a URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: d3df9458f0b5a5741dd6c115952f586e588a8187 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9dd1e25b69c9c92e860c
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9dd1e25b69c9c92e8611
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:55.809789 <8>[ 10.760553] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305871_1.4.2.3.1> 2023-05-13T14:24:55.809899 + set +x 2023-05-13T14:24:55.914583 / # # 2023-05-13T14:24:56.015152 export SHELL=/bin/sh 2023-05-13T14:24:56.015341 # 2023-05-13T14:24:56.115917 / # export SHELL=/bin/sh. /lava-10305871/environment 2023-05-13T14:24:56.116159 2023-05-13T14:24:56.216742 / # . /lava-10305871/environment/lava-10305871/bin/lava-test-runner /lava-10305871/1 2023-05-13T14:24:56.217009 2023-05-13T14:24:56.222996 / # /lava-10305871/bin/lava-test-runner /lava-10305871/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9db14d170d2e7f2e8650
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9db14d170d2e7f2e8655
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:43.503372 + set +x<8>[ 10.938748] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305831_1.4.2.3.1> 2023-05-13T14:24:43.503462 2023-05-13T14:24:43.607785 / # # 2023-05-13T14:24:43.708401 export SHELL=/bin/sh 2023-05-13T14:24:43.708640 # 2023-05-13T14:24:43.809312 / # export SHELL=/bin/sh. /lava-10305831/environment 2023-05-13T14:24:43.809538 2023-05-13T14:24:43.910306 / # . /lava-10305831/environment/lava-10305831/bin/lava-test-runner /lava-10305831/1 2023-05-13T14:24:43.910813 2023-05-13T14:24:43.915749 / # /lava-10305831/bin/lava-test-runner /lava-10305831/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9dca78649e842c2e860e
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9dca78649e842c2e8613
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:55.905012 <8>[ 10.570388] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305828_1.4.2.3.1> 2023-05-13T14:24:55.908573 + set +x 2023-05-13T14:24:56.010091 # 2023-05-13T14:24:56.010445 2023-05-13T14:24:56.111076 / # #export SHELL=/bin/sh 2023-05-13T14:24:56.111259 2023-05-13T14:24:56.211742 / # export SHELL=/bin/sh. /lava-10305828/environment 2023-05-13T14:24:56.211930 2023-05-13T14:24:56.312455 / # . /lava-10305828/environment/lava-10305828/bin/lava-test-runner /lava-10305828/1 2023-05-13T14:24:56.312845 ... (13 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/645f9d3084dc5fb1bd2e86d4
Results: 0 PASS, 1 FAIL, 0 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-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9d3084dc5fb1bd2e86d5
failing since 23 days (last pass: v6.1.22-477-g2128d4458cbc, first fail: v6.1.22-474-gecc61872327e) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9e1ed4fbc94c222e8606
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9e1ed4fbc94c222e860b
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:26:23.814578 + set +x 2023-05-13T14:26:23.820790 <8>[ 11.298654] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305832_1.4.2.3.1> 2023-05-13T14:26:23.925354 / # # 2023-05-13T14:26:24.026047 export SHELL=/bin/sh 2023-05-13T14:26:24.026241 # 2023-05-13T14:26:24.126833 / # export SHELL=/bin/sh. /lava-10305832/environment 2023-05-13T14:26:24.127063 2023-05-13T14:26:24.227639 / # . /lava-10305832/environment/lava-10305832/bin/lava-test-runner /lava-10305832/1 2023-05-13T14:26:24.227918 2023-05-13T14:26:24.232525 / # /lava-10305832/bin/lava-test-runner /lava-10305832/1 ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9db74d170d2e7f2e868a
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9db74d170d2e7f2e868f
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:39.730018 <8>[ 10.845536] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305850_1.4.2.3.1> 2023-05-13T14:24:39.733002 + set +x 2023-05-13T14:24:39.834088 /# 2023-05-13T14:24:39.934793 # #export SHELL=/bin/sh 2023-05-13T14:24:39.934947 2023-05-13T14:24:40.035402 / # export SHELL=/bin/sh. /lava-10305850/environment 2023-05-13T14:24:40.035582 2023-05-13T14:24:40.136090 / # . /lava-10305850/environment/lava-10305850/bin/lava-test-runner /lava-10305850/1 2023-05-13T14:24:40.136436 2023-05-13T14:24:40.140958 / # /lava-10305850/bin/lava-test-runner /lava-10305850/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9dbb4d170d2e7f2e86be
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9dbb4d170d2e7f2e86c3
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:38.736344 + set<8>[ 8.878008] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305798_1.4.2.3.1> 2023-05-13T14:24:38.736770 +x 2023-05-13T14:24:38.844333 / # # 2023-05-13T14:24:38.946422 export SHELL=/bin/sh 2023-05-13T14:24:38.947028 # 2023-05-13T14:24:39.048315 / # export SHELL=/bin/sh. /lava-10305798/environment 2023-05-13T14:24:39.049080 2023-05-13T14:24:39.150359 / # . /lava-10305798/environment/lava-10305798/bin/lava-test-runner /lava-10305798/1 2023-05-13T14:24:39.151300 2023-05-13T14:24:39.155937 / # /lava-10305798/bin/lava-test-runner /lava-10305798/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645f9db24d170d2e7f2e865b
Results: 6 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9db24d170d2e7f2e8660
failing since 45 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-13T14:24:27.734859 <8>[ 11.470331] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305864_1.4.2.3.1> 2023-05-13T14:24:27.839243 / # # 2023-05-13T14:24:27.939842 export SHELL=/bin/sh 2023-05-13T14:24:27.940074 # 2023-05-13T14:24:28.040543 / # export SHELL=/bin/sh. /lava-10305864/environment 2023-05-13T14:24:28.040742 2023-05-13T14:24:28.141298 / # . /lava-10305864/environment/lava-10305864/bin/lava-test-runner /lava-10305864/1 2023-05-13T14:24:28.141622 2023-05-13T14:24:28.146809 / # /lava-10305864/bin/lava-test-runner /lava-10305864/1 2023-05-13T14:24:28.153073 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645f9d1482f54f6e712e85f6
Results: 166 PASS, 5 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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.mt6577-auxadc-probed:
https://kernelci.org/test/case/id/645f9d1482f54f6e712e8612
failing since 6 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-13T14:21:43.225189 /lava-10305738/1/../bin/lava-test-case * baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645f9d1482f54f6e712e869e
failing since 6 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-13T14:21:37.762282 + set +x 2023-05-13T14:21:37.768940 <8>[ 17.634567] <LAVA_SIGNAL_ENDRUN 0_dmesg 10305738_1.5.2.3.1> 2023-05-13T14:21:37.878201 / # # 2023-05-13T14:21:37.980239 export SHELL=/bin/sh 2023-05-13T14:21:37.981145 # 2023-05-13T14:21:38.082763 / # export SHELL=/bin/sh. /lava-10305738/environment 2023-05-13T14:21:38.083730 2023-05-13T14:21:38.185481 / # . /lava-10305738/environment/lava-10305738/bin/lava-test-runner /lava-10305738/1 2023-05-13T14:21:38.186796 2023-05-13T14:21:38.192205 / # /lava-10305738/bin/lava-test-runner /lava-10305738/1 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_i386-uefi | i386 | lab-baylibre | gcc-10 | i386_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645f9b8ad337c76dd42e8604
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-6.1/v6.1.28-184-gd3df9458f0b5…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.28-184-gd3df9458f0b5…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645f9b8ad337c76dd42e8605
new failure (last pass: v6.1.28-183-gb35b1f6de36bb)
1 year, 8 months
1
0
0
0
[PATCH] iio: imu: inv_icm42600: fix too big timestamp jitter
by inv.git-commit@tdk.com
From: Jean-Baptiste Maneyrol <jean-baptiste.maneyrol(a)tdk.com> We are adjusting timestamp with interrupt every time, leading to a lot of jitter in timestamp values. Now the adjustment is done only when the delta is bigger than the jitter. Refactorize code and delete the unnecessary handling of multiple FIFO data. Fixes: ec74ae9fd37c ("iio: imu: inv_icm42600: add accurate timestamping") Signed-off-by: Jean-Baptiste Maneyrol <jean-baptiste.maneyrol(a)tdk.com> Signed-off-by: <inv.git-commit(a)tdk.com> Cc: <stable(a)vger.kernel.org> --- .../imu/inv_icm42600/inv_icm42600_timestamp.c | 49 ++++++++++--------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.c b/drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.c index 7f2dc41f807b..af2e59fb7258 100644 --- a/drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.c +++ b/drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.c @@ -93,8 +93,8 @@ static bool inv_validate_period(uint32_t period, uint32_t mult) return false; } -static bool inv_compute_chip_period(struct inv_icm42600_timestamp *ts, - uint32_t mult, uint32_t period) +static bool inv_update_chip_period(struct inv_icm42600_timestamp *ts, + uint32_t mult, uint32_t period) { uint32_t new_chip_period; @@ -104,10 +104,31 @@ static bool inv_compute_chip_period(struct inv_icm42600_timestamp *ts, /* update chip internal period estimation */ new_chip_period = period / mult; inv_update_acc(&ts->chip_period, new_chip_period); + ts->period = ts->mult * ts->chip_period.val; return true; } +static void inv_align_timestamp_it(struct inv_icm42600_timestamp *ts) +{ + int64_t delta, jitter; + int64_t adjust; + + /* delta time between last sample and last interrupt */ + delta = ts->it.lo - ts->timestamp; + + /* adjust timestamp while respecting jitter */ + jitter = ((int64_t)ts->period * INV_ICM42600_TIMESTAMP_JITTER) / 100; + if (delta > jitter) + adjust = jitter; + else if (delta < -jitter) + adjust = -jitter; + else + adjust = 0; + + ts->timestamp += adjust; +} + void inv_icm42600_timestamp_interrupt(struct inv_icm42600_timestamp *ts, uint32_t fifo_period, size_t fifo_nb, size_t sensor_nb, int64_t timestamp) @@ -116,7 +137,6 @@ void inv_icm42600_timestamp_interrupt(struct inv_icm42600_timestamp *ts, int64_t delta, interval; const uint32_t fifo_mult = fifo_period / INV_ICM42600_TIMESTAMP_PERIOD; uint32_t period = ts->period; - int32_t m; bool valid = false; if (fifo_nb == 0) @@ -130,10 +150,7 @@ void inv_icm42600_timestamp_interrupt(struct inv_icm42600_timestamp *ts, if (it->lo != 0) { /* compute period: delta time divided by number of samples */ period = div_s64(delta, fifo_nb); - valid = inv_compute_chip_period(ts, fifo_mult, period); - /* update sensor period if chip internal period is updated */ - if (valid) - ts->period = ts->mult * ts->chip_period.val; + valid = inv_update_chip_period(ts, fifo_mult, period); } /* no previous data, compute theoritical value from interrupt */ @@ -145,22 +162,8 @@ void inv_icm42600_timestamp_interrupt(struct inv_icm42600_timestamp *ts, } /* if interrupt interval is valid, sync with interrupt timestamp */ - if (valid) { - /* compute measured fifo_period */ - fifo_period = fifo_mult * ts->chip_period.val; - /* delta time between last sample and last interrupt */ - delta = it->lo - ts->timestamp; - /* if there are multiple samples, go back to first one */ - while (delta >= (fifo_period * 3 / 2)) - delta -= fifo_period; - /* compute maximal adjustment value */ - m = INV_ICM42600_TIMESTAMP_MAX_PERIOD(ts->period) - ts->period; - if (delta > m) - delta = m; - else if (delta < -m) - delta = -m; - ts->timestamp += delta; - } + if (valid) + inv_align_timestamp_it(ts); } void inv_icm42600_timestamp_apply_odr(struct inv_icm42600_timestamp *ts, -- 2.34.1
1 year, 8 months
3
3
0
0
← Newer
1
...
103
104
105
106
107
108
109
...
188
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
Results per page:
10
25
50
100
200