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
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
September 2023
----- 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
442 participants
1071 discussions
Start a n
N
ew thread
[PATCH 1/5] usb: dwc3: reference clock period configuration
by Tomasz Rostanski
From: Balaji Prakash J <bjagadee(a)codeaurora.org> Set reference clock period when it differs from dwc3 default hardware set. We could calculate clock period based on reference clock frequency. But this information is not always available. This is the case of PCI bus attached USB host. For that reason we use a custom property. Tested (USB2 only) on IPQ6010 SoC based board with 24 MHz reference clock while hardware default is 19.2 MHz. [ baruch: rewrite commit message; drop GFLADJ code; remove 'quirk-' from property name; mention tested hardware ] Acked-by: Felipe Balbi <balbi(a)kernel.org> Signed-off-by: Balaji Prakash J <bjagadee(a)codeaurora.org> Signed-off-by: Baruch Siach <baruch(a)tkos.co.il> Nacked-by: Rob Herring <robh(a)kernel.org> Link:
https://lore.kernel.org/r/9f399bdf1ff752e31ab7497e3d5ce19bbb3ff247.16303894…
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org> --- drivers/usb/dwc3/core.c | 29 +++++++++++++++++++++++++++++ drivers/usb/dwc3/core.h | 6 ++++++ 2 files changed, 35 insertions(+) diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 6377b9cf81a5..7908c151b95d 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -26,6 +26,7 @@ #include <linux/acpi.h> #include <linux/pinctrl/consumer.h> #include <linux/reset.h> +#include <linux/bitfield.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> @@ -343,6 +344,29 @@ static void dwc3_frame_length_adjustment(struct dwc3 *dwc) } } +/** + * dwc3_ref_clk_period - Reference clock period configuration + * Default reference clock period depends on hardware + * configuration. For systems with reference clock that differs + * from the default, this will set clock period in DWC3_GUCTL + * register. + * @dwc: Pointer to our controller context structure + * @ref_clk_per: reference clock period in ns + */ +static void dwc3_ref_clk_period(struct dwc3 *dwc) +{ + u32 reg; + + if (dwc->ref_clk_per == 0) + return; + + reg = dwc3_readl(dwc->regs, DWC3_GUCTL); + reg &= ~DWC3_GUCTL_REFCLKPER_MASK; + reg |= FIELD_PREP(DWC3_GUCTL_REFCLKPER_MASK, dwc->ref_clk_per); + dwc3_writel(dwc->regs, DWC3_GUCTL, reg); +} + + /** * dwc3_free_one_event_buffer - Frees one event buffer * @dwc: Pointer to our controller context structure @@ -1021,6 +1045,9 @@ static int dwc3_core_init(struct dwc3 *dwc) /* Adjust Frame Length */ dwc3_frame_length_adjustment(dwc); + /* Adjust Reference Clock Period */ + dwc3_ref_clk_period(dwc); + dwc3_set_incr_burst_type(dwc); usb_phy_set_suspend(dwc->usb2_phy, 0); @@ -1404,6 +1431,8 @@ static void dwc3_get_properties(struct dwc3 *dwc) &dwc->hsphy_interface); device_property_read_u32(dev, "snps,quirk-frame-length-adjustment", &dwc->fladj); + device_property_read_u32(dev, "snps,ref-clock-period-ns", + &dwc->ref_clk_per); dwc->dis_metastability_quirk = device_property_read_bool(dev, "snps,dis_metastability_quirk"); diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index 3dcb5b744f7c..968608bd98e3 100644 --- a/drivers/usb/dwc3/core.h +++ b/drivers/usb/dwc3/core.h @@ -385,6 +385,10 @@ #define DWC3_GFLADJ_30MHZ_SDBND_SEL BIT(7) #define DWC3_GFLADJ_30MHZ_MASK 0x3f +/* Global User Control Register*/ +#define DWC3_GUCTL_REFCLKPER_MASK 0xffc00000 +#define DWC3_GUCTL_REFCLKPER_SEL 22 + /* Global User Control Register 2 */ #define DWC3_GUCTL2_RST_ACTBITLATER BIT(14) @@ -969,6 +973,7 @@ struct dwc3_scratchpad_array { * @regs: base address for our registers * @regs_size: address space size * @fladj: frame length adjustment + * @ref_clk_per: reference clock period configuration * @irq_gadget: peripheral controller's IRQ number * @otg_irq: IRQ number for OTG IRQs * @current_otg_role: current role of operation while using the OTG block @@ -1153,6 +1158,7 @@ struct dwc3 { struct power_supply *usb_psy; u32 fladj; + u32 ref_clk_per; u32 irq_gadget; u32 otg_irq; u32 current_otg_role; -- 2.41.0
1 year, 3 months
3
6
0
0
[PATCH] Revert "fuse: Apply flags2 only when userspace set the FUSE_INIT_EXT"
by André Draszik
From: André Draszik <andre.draszik(a)linaro.org> This reverts commit 3066ff93476c35679cb07a97cce37d9bb07632ff. This patch breaks all existing userspace by requiring updates as mentioned in the commit message, which is not allowed. Revert to restore compatibility with existing userspace implementations. Cc: <stable(a)vger.kernel.org> Signed-off-by: André Draszik <andre.draszik(a)linaro.org> --- fs/fuse/inode.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 549358ffea8b..0b966b0e0962 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -1132,10 +1132,7 @@ static void process_init_reply(struct fuse_mount *fm, struct fuse_args *args, process_init_limits(fc, arg); if (arg->minor >= 6) { - u64 flags = arg->flags; - - if (flags & FUSE_INIT_EXT) - flags |= (u64) arg->flags2 << 32; + u64 flags = arg->flags | (u64) arg->flags2 << 32; ra_pages = arg->max_readahead / PAGE_SIZE; if (flags & FUSE_ASYNC_READ) -- 2.40.1
1 year, 3 months
1
0
0
0
stable-rc/linux-5.15.y baseline: 96 runs, 9 regressions (v5.15.130-27-g8b47c0181c8e)
by kernelci.org bot
stable-rc/linux-5.15.y baseline: 96 runs, 9 regressions (v5.15.130-27-g8b47c0181c8e) 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-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 fsl-ls2088a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 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 r8a779m1-ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.15.y/kernel/v5.15.13…
Test: baseline Tree: stable-rc Branch: linux-5.15.y Describe: v5.15.130-27-g8b47c0181c8e URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 8b47c0181c8e7dac2978a87dcad976913f34e282 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/64f59a418e28510dfb286da9
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a418e28510dfb286dae
failing since 159 days (last pass: v5.15.104, first fail: v5.15.104-147-gea115396267e) 2023-09-04T08:50:03.049986 <8>[ 10.884564] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428568_1.4.2.3.1> 2023-09-04T08:50:03.053368 + set +x 2023-09-04T08:50:03.160909 / # # 2023-09-04T08:50:03.263297 export SHELL=/bin/sh 2023-09-04T08:50:03.264165 # 2023-09-04T08:50:03.365706 / # export SHELL=/bin/sh. /lava-11428568/environment 2023-09-04T08:50:03.366505 2023-09-04T08:50:03.468084 / # . /lava-11428568/environment/lava-11428568/bin/lava-test-runner /lava-11428568/1 2023-09-04T08:50:03.469291 2023-09-04T08:50:03.476311 / # /lava-11428568/bin/lava-test-runner /lava-11428568/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/64f59a2da03d3195c4286d73
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a2da03d3195c4286d78
failing since 159 days (last pass: v5.15.104, first fail: v5.15.104-147-gea115396267e) 2023-09-04T08:49:43.742172 <8>[ 9.935448] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428551_1.4.2.3.1> 2023-09-04T08:49:43.745214 + set +x 2023-09-04T08:49:43.846677 2023-09-04T08:49:43.947300 / # #export SHELL=/bin/sh 2023-09-04T08:49:43.947537 2023-09-04T08:49:44.048095 / # export SHELL=/bin/sh. /lava-11428551/environment 2023-09-04T08:49:44.048328 2023-09-04T08:49:44.148937 / # . /lava-11428551/environment/lava-11428551/bin/lava-test-runner /lava-11428551/1 2023-09-04T08:49:44.149310 2023-09-04T08:49:44.154005 / # /lava-11428551/bin/lava-test-runner /lava-11428551/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/64f59a345b5593a070286d9b
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59a345b5593a070286d9c
failing since 40 days (last pass: v5.15.120, first fail: v5.15.122-79-g3bef1500d246a) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ fsl-ls2088a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f599ed06ad851ef5286d7e
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f599ee06ad851ef5286d81
failing since 52 days (last pass: v5.15.67, first fail: v5.15.119-16-g66130849c020f) 2023-09-04T08:48:25.106246 [ 10.658011] <LAVA_SIGNAL_ENDRUN 0_dmesg 1249085_1.5.2.4.1> 2023-09-04T08:48:25.211323 2023-09-04T08:48:25.312469 / # #export SHELL=/bin/sh 2023-09-04T08:48:25.312869 2023-09-04T08:48:25.413794 / # export SHELL=/bin/sh. /lava-1249085/environment 2023-09-04T08:48:25.414188 2023-09-04T08:48:25.515187 / # . /lava-1249085/environment/lava-1249085/bin/lava-test-runner /lava-1249085/1 2023-09-04T08:48:25.516006 2023-09-04T08:48:25.520299 / # /lava-1249085/bin/lava-test-runner /lava-1249085/1 2023-09-04T08:48:25.536688 + export 'TESTRUN_ID=1_bootrr' ... (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/64f59a2baac5f5d44e286d7f
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a2baac5f5d44e286d84
failing since 159 days (last pass: v5.15.104, first fail: v5.15.104-147-gea115396267e) 2023-09-04T08:49:36.781989 <8>[ 10.628949] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428554_1.4.2.3.1> 2023-09-04T08:49:36.785159 + set +x 2023-09-04T08:49:36.888992 / # # 2023-09-04T08:49:36.989700 export SHELL=/bin/sh 2023-09-04T08:49:36.989879 # 2023-09-04T08:49:37.090411 / # export SHELL=/bin/sh. /lava-11428554/environment 2023-09-04T08:49:37.090580 2023-09-04T08:49:37.191146 / # . /lava-11428554/environment/lava-11428554/bin/lava-test-runner /lava-11428554/1 2023-09-04T08:49:37.191427 2023-09-04T08:49:37.196566 / # /lava-11428554/bin/lava-test-runner /lava-11428554/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/64f59a3f8e28510dfb286d93
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a3f8e28510dfb286d98
failing since 159 days (last pass: v5.15.104, first fail: v5.15.104-147-gea115396267e) 2023-09-04T08:49:51.373122 + <8>[ 10.776018] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428555_1.4.2.3.1> 2023-09-04T08:49:51.373206 set +x 2023-09-04T08:49:51.477780 / # # 2023-09-04T08:49:51.578398 export SHELL=/bin/sh 2023-09-04T08:49:51.578619 # 2023-09-04T08:49:51.679174 / # export SHELL=/bin/sh. /lava-11428555/environment 2023-09-04T08:49:51.679391 2023-09-04T08:49:51.779883 / # . /lava-11428555/environment/lava-11428555/bin/lava-test-runner /lava-11428555/1 2023-09-04T08:49:51.780194 2023-09-04T08:49:51.785147 / # /lava-11428555/bin/lava-test-runner /lava-11428555/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/64f59a428e28510dfb286db4
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a428e28510dfb286db9
failing since 159 days (last pass: v5.15.104, first fail: v5.15.104-147-gea115396267e) 2023-09-04T08:49:59.653471 + set<8>[ 11.463831] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428563_1.4.2.3.1> 2023-09-04T08:49:59.653562 +x 2023-09-04T08:49:59.758019 / # # 2023-09-04T08:49:59.858652 export SHELL=/bin/sh 2023-09-04T08:49:59.858900 # 2023-09-04T08:49:59.959484 / # export SHELL=/bin/sh. /lava-11428563/environment 2023-09-04T08:49:59.959738 2023-09-04T08:50:00.060269 / # . /lava-11428563/environment/lava-11428563/bin/lava-test-runner /lava-11428563/1 2023-09-04T08:50:00.060601 2023-09-04T08:50:00.065013 / # /lava-11428563/bin/lava-test-runner /lava-11428563/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ r8a779m1-ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f599b6f705d29ae7286d82
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f599b6f705d29ae7286d87
failing since 46 days (last pass: v5.15.120-274-g478387c57e172, first fail: v5.15.120) 2023-09-04T08:47:50.842457 / # # 2023-09-04T08:47:51.922056 export SHELL=/bin/sh 2023-09-04T08:47:51.923984 # 2023-09-04T08:47:53.411858 / # export SHELL=/bin/sh. /lava-11428505/environment 2023-09-04T08:47:53.413809 2023-09-04T08:47:56.137736 / # . /lava-11428505/environment/lava-11428505/bin/lava-test-runner /lava-11428505/1 2023-09-04T08:47:56.140009 2023-09-04T08:47:56.149783 / # /lava-11428505/bin/lava-test-runner /lava-11428505/1 2023-09-04T08:47:56.210122 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:47:56.210616 + cd /lava-114285<8>[ 25.538999] <LAVA_SIGNAL_STARTRUN 1_bootrr 11428505_1.5.2.4.5> ... (39 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/64f599a71530e94338286d8e
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/linux-5.15.y/v5.15.130-27-g8b47c018…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.130-27-g8b47c018…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f599a71530e94338286d93
failing since 46 days (last pass: v5.15.120-274-g478387c57e172, first fail: v5.15.120) 2023-09-04T08:49:00.914050 / # # 2023-09-04T08:49:01.014487 export SHELL=/bin/sh 2023-09-04T08:49:01.014609 # 2023-09-04T08:49:01.115062 / # export SHELL=/bin/sh. /lava-11428513/environment 2023-09-04T08:49:01.115264 2023-09-04T08:49:01.215830 / # . /lava-11428513/environment/lava-11428513/bin/lava-test-runner /lava-11428513/1 2023-09-04T08:49:01.216986 2023-09-04T08:49:01.228417 / # /lava-11428513/bin/lava-test-runner /lava-11428513/1 2023-09-04T08:49:01.289212 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:49:01.289352 + cd /lava-1142851<8>[ 16.881972] <LAVA_SIGNAL_STARTRUN 1_bootrr 11428513_1.5.2.4.5> ... (10 line(s) more)
1 year, 3 months
1
0
0
0
stable-rc/linux-4.19.y baseline: 99 runs, 19 regressions (v4.19.294-15-g530503262cfd8)
by kernelci.org bot
stable-rc/linux-4.19.y baseline: 99 runs, 19 regressions (v4.19.294-15-g530503262cfd8) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 beagle-xm | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 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-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-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-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-4.19.y/kernel/v4.19.29…
Test: baseline Tree: stable-rc Branch: linux-4.19.y Describe: v4.19.294-15-g530503262cfd8 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 530503262cfd8dc02ad8dff52be0642a585e729f Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59ba8e73ee5669a286d7a
Results: 42 PASS, 9 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-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59ba8e73ee5669a286da9
failing since 21 days (last pass: v4.19.291-26-g3c7623350250, first fail: v4.19.291-34-g84b9d8b93009) 2023-09-04T08:55:28.339271 + set +x 2023-09-04T08:55:28.339776 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 85838_1.5.2.4.1> 2023-09-04T08:55:28.452186 / # # 2023-09-04T08:55:28.555124 export SHELL=/bin/sh 2023-09-04T08:55:28.555914 # 2023-09-04T08:55:28.657823 / # export SHELL=/bin/sh. /lava-85838/environment 2023-09-04T08:55:28.658663 2023-09-04T08:55:28.760630 / # . /lava-85838/environment/lava-85838/bin/lava-test-runner /lava-85838/1 2023-09-04T08:55:28.761891 2023-09-04T08:55:28.765536 / # /lava-85838/bin/lava-test-runner /lava-85838/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/64f59da472d57343ed286dde
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/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59da472d57343ed286ddf
new failure (last pass: v4.19.294) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59d0a43a27683a3286d8f
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-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59d0a43a27683a3286d94
failing since 230 days (last pass: v4.19.268-50-gbf741d1d7e6d, first fail: v4.19.269-522-gc75d2b5524ab) 2023-09-04T09:01:40.066859 <8>[ 7.389815] <LAVA_SIGNAL_ENDRUN 0_dmesg 3762666_1.5.2.4.1> 2023-09-04T09:01:40.175744 / # # 2023-09-04T09:01:40.277348 export SHELL=/bin/sh 2023-09-04T09:01:40.277746 # 2023-09-04T09:01:40.378785 / # export SHELL=/bin/sh. /lava-3762666/environment 2023-09-04T09:01:40.379251 2023-09-04T09:01:40.480642 / # . /lava-3762666/environment/lava-3762666/bin/lava-test-runner /lava-3762666/1 2023-09-04T09:01:40.481188 2023-09-04T09:01:40.486323 / # /lava-3762666/bin/lava-test-runner /lava-3762666/1 2023-09-04T09:01:40.564138 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59f521815652982286d82
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59f521815652982286d83
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-191-gab9c8d4442969) 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/64f5a07fea3e6e458a286d75
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5a07fea3e6e458a286d76
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-215-g4373264025937) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59d7572d57343ed286d6c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59d7572d57343ed286d6d
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-191-gab9c8d4442969) 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/64f59e431f8f96748b286d94
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e431f8f96748b286d95
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-215-g4373264025937) 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/64f59e6252b5acf3e7286e58
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e6252b5acf3e7286e59
failing since 370 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.256-37-g34c3cf0160a8) 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/64f5a051c6c6749479286d6e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5a051c6c6749479286d6f
failing since 376 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-288-g9901269a16d1) 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/64f59d733db6ae628b286dec
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59d733db6ae628b286ded
failing since 370 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.256-37-g34c3cf0160a8) 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/64f59e1b1fae679c6e286d94
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e1b1fae679c6e286d95
failing since 376 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-288-g9901269a16d1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59e99d792281416286d87
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e99d792281416286d88
failing since 396 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.254) 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/64f5a0808c1cd48cd1286d6c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5a0808c1cd48cd1286d6d
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-191-gab9c8d4442969) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59d673db6ae628b286dc1
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59d673db6ae628b286dc2
failing since 396 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.254) 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/64f59e5752b5acf3e7286e32
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e5752b5acf3e7286e33
failing since 384 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-191-gab9c8d4442969) 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/64f59f2b1815652982286d72
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59f2b1815652982286d73
failing since 382 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255) 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/64f5a06bc6c6749479286d75
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5a06bc6c6749479286d76
failing since 376 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-288-g9901269a16d1) 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/64f59d743042d28b46286d6f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59d743042d28b46286d70
failing since 382 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255) 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/64f59e3b1f8f96748b286d8e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.294-15-g53050326…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59e3b1f8f96748b286d8f
failing since 376 days (last pass: v4.19.230-41-g73351b9c55d9, first fail: v4.19.255-288-g9901269a16d1)
1 year, 3 months
1
0
0
0
stable-rc/linux-5.10.y baseline: 126 runs, 14 regressions (v5.10.194-24-g1be601d24d330)
by kernelci.org bot
stable-rc/linux-5.10.y baseline: 126 runs, 14 regressions (v5.10.194-24-g1be601d24d330) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ at91-sama5d4_xplained | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 fsl-ls2088a-rdb | arm64 | lab-nxp | 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 juno-uboot | arm64 | lab-broonie | gcc-10 | defconfig | 1 meson-g12b-odroid-n2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 r8a774b1-hihope-rzg2n-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig | 1 r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 rk3399-rock-pi-4b | arm64 | lab-collabora | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.10.y/kernel/v5.10.19…
Test: baseline Tree: stable-rc Branch: linux-5.10.y Describe: v5.10.194-24-g1be601d24d330 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 1be601d24d330a2c43ee62de09931f937d7f8549 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ at91-sama5d4_xplained | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f599a92d9d7a5cb0286e25
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f599a92d9d7a5cb0286e26
new failure (last pass: v5.10.194) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ cubietruck | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f598e09fcad6f7d3286d82
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.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f598e09fcad6f7d3286d87
failing since 229 days (last pass: v5.10.158-107-gd2432186ff47, first fail: v5.10.162-852-geeaac3cf2eb3) 2023-09-04T08:43:51.443983 <8>[ 11.125865] <LAVA_SIGNAL_ENDRUN 0_dmesg 3762547_1.5.2.4.1> 2023-09-04T08:43:51.550939 / # # 2023-09-04T08:43:51.652152 export SHELL=/bin/sh 2023-09-04T08:43:51.652512 # 2023-09-04T08:43:51.753605 / # export SHELL=/bin/sh. /lava-3762547/environment 2023-09-04T08:43:51.753960 2023-09-04T08:43:51.855059 / # . /lava-3762547/environment/lava-3762547/bin/lava-test-runner /lava-3762547/1 2023-09-04T08:43:51.855591 2023-09-04T08:43:51.855728 / # <3>[ 11.451678] Bluetooth: hci0: command 0x0c03 tx timeout 2023-09-04T08:43:51.860404 /lava-3762547/bin/lava-test-runner /lava-3762547/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ fsl-ls2088a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59824a41f73d195286d87
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59824a41f73d195286d8a
failing since 48 days (last pass: v5.10.142, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:40:41.615365 [ 9.739984] <LAVA_SIGNAL_ENDRUN 0_dmesg 1249077_1.5.2.4.1> 2023-09-04T08:40:41.720558 2023-09-04T08:40:41.821715 / # #export SHELL=/bin/sh 2023-09-04T08:40:41.822147 2023-09-04T08:40:41.923089 / # export SHELL=/bin/sh. /lava-1249077/environment 2023-09-04T08:40:41.923540 2023-09-04T08:40:42.024503 / # . /lava-1249077/environment/lava-1249077/bin/lava-test-runner /lava-1249077/1 2023-09-04T08:40:42.025206 2023-09-04T08:40:42.029545 / # /lava-1249077/bin/lava-test-runner /lava-1249077/1 2023-09-04T08:40:42.051885 + export 'TESTRUN_[ 10.175364] <LAVA_SIGNAL_STARTRUN 1_bootrr 1249077_1.5.2.4.5> ... (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/64f595e7d5f87ce937286daf
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f595e7d5f87ce937286db4
failing since 159 days (last pass: v5.10.176, first fail: v5.10.176-105-g18265b240021) 2023-09-04T08:31:28.049013 + <8>[ 14.221127] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428427_1.4.2.3.1> 2023-09-04T08:31:28.049097 set +x 2023-09-04T08:31:28.150442 2023-09-04T08:31:28.251012 / # #export SHELL=/bin/sh 2023-09-04T08:31:28.251164 2023-09-04T08:31:28.351681 / # export SHELL=/bin/sh. /lava-11428427/environment 2023-09-04T08:31:28.351825 2023-09-04T08:31:28.452356 / # . /lava-11428427/environment/lava-11428427/bin/lava-test-runner /lava-11428427/1 2023-09-04T08:31:28.452597 2023-09-04T08:31:28.457043 / # /lava-11428427/bin/lava-test-runner /lava-11428427/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/64f595ec23b70bee3a286d6d
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f595ec23b70bee3a286d72
failing since 159 days (last pass: v5.10.176, first fail: v5.10.176-105-g18265b240021) 2023-09-04T08:32:37.368435 + set +x 2023-09-04T08:32:37.374830 <8>[ 12.589556] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428411_1.4.2.3.1> 2023-09-04T08:32:37.476544 # 2023-09-04T08:32:37.476825 2023-09-04T08:32:37.577401 / # #export SHELL=/bin/sh 2023-09-04T08:32:37.577609 2023-09-04T08:32:37.678159 / # export SHELL=/bin/sh. /lava-11428411/environment 2023-09-04T08:32:37.678376 2023-09-04T08:32:37.778908 / # . /lava-11428411/environment/lava-11428411/bin/lava-test-runner /lava-11428411/1 2023-09-04T08:32:37.779244 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ juno-uboot | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f598608e06a091ef286d70
Results: 50 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.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f598608e06a091ef286da1
failing since 3 days (last pass: v5.10.192-85-gc40f751018f92, first fail: v5.10.193-12-ge25611a229ff9) 2023-09-04T08:41:49.329986 <8>[ 15.553585] <LAVA_SIGNAL_ENDRUN 0_dmesg 85760_1.5.2.4.1> 2023-09-04T08:41:49.438415 / # # 2023-09-04T08:41:49.541200 export SHELL=/bin/sh 2023-09-04T08:41:49.541962 # 2023-09-04T08:41:49.643935 / # export SHELL=/bin/sh. /lava-85760/environment 2023-09-04T08:41:49.644742 2023-09-04T08:41:49.746732 / # . /lava-85760/environment/lava-85760/bin/lava-test-runner /lava-85760/1 2023-09-04T08:41:49.747998 2023-09-04T08:41:49.762349 / # /lava-85760/bin/lava-test-runner /lava-85760/1 2023-09-04T08:41:49.821182 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ meson-g12b-odroid-n2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f598f29fcad6f7d3286d8f
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.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f598f29fcad6f7d3286d90
new failure (last pass: v5.10.194) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f598694aa90a8a97286d71
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f598694aa90a8a97286d74
failing since 33 days (last pass: v5.10.186-10-g5f99a36aeb1c, first fail: v5.10.188-107-gc262f74329e1) 2023-09-04T08:41:56.273659 + set +x 2023-09-04T08:41:56.274148 <8>[ 84.063201] <LAVA_SIGNAL_ENDRUN 0_dmesg 1004752_1.5.2.4.1> 2023-09-04T08:41:56.383357 / # # 2023-09-04T08:41:57.848473 export SHELL=/bin/sh 2023-09-04T08:41:57.869607 # 2023-09-04T08:41:57.870130 / # export SHELL=/bin/sh 2023-09-04T08:41:59.827233 / # . /lava-1004752/environment 2023-09-04T08:42:03.437093 /lava-1004752/bin/lava-test-runner /lava-1004752/1 2023-09-04T08:42:03.459073 . /lava-1004752/environment 2023-09-04T08:42:03.459544 / # /lava-1004752/bin/lava-test-runner /lava-1004752/1 ... (28 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f598bc6cfd63e579286df5
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f598bc6cfd63e579286df8
failing since 48 days (last pass: v5.10.186-221-gf178eace6e074, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:43:22.997007 + set +x 2023-09-04T08:43:22.997174 <8>[ 84.002962] <LAVA_SIGNAL_ENDRUN 0_dmesg 1004760_1.5.2.4.1> 2023-09-04T08:43:23.099948 / # # 2023-09-04T08:43:24.560084 export SHELL=/bin/sh 2023-09-04T08:43:24.580520 # 2023-09-04T08:43:24.580659 / # export SHELL=/bin/sh 2023-09-04T08:43:26.533009 / # . /lava-1004760/environment 2023-09-04T08:43:30.125584 /lava-1004760/bin/lava-test-runner /lava-1004760/1 2023-09-04T08:43:30.146402 . /lava-1004760/environment 2023-09-04T08:43:30.146540 / # /lava-1004760/bin/lava-test-runner /lava-1004760/1 ... (28 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ r8a774b1-hihope-rzg2n-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f59a88bbb547cec9286da6
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59a88bbb547cec9286da9
failing since 48 days (last pass: v5.10.186-221-gf178eace6e074, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:51:00.832072 + set +x 2023-09-04T08:51:00.832193 <8>[ 84.219197] <LAVA_SIGNAL_ENDRUN 0_dmesg 1004762_1.5.2.4.1> 2023-09-04T08:51:00.937957 / # # 2023-09-04T08:51:02.397725 export SHELL=/bin/sh 2023-09-04T08:51:02.418158 # 2023-09-04T08:51:02.418310 / # export SHELL=/bin/sh 2023-09-04T08:51:04.370982 / # . /lava-1004762/environment 2023-09-04T08:51:07.963266 /lava-1004762/bin/lava-test-runner /lava-1004762/1 2023-09-04T08:51:07.983912 . /lava-1004762/environment 2023-09-04T08:51:07.984038 / # /lava-1004762/bin/lava-test-runner /lava-1004762/1 ... (15 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59882ff556114a4286d7a
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59882ff556114a4286d7d
failing since 48 days (last pass: v5.10.186-221-gf178eace6e074, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:42:08.546519 / # # 2023-09-04T08:42:10.006686 export SHELL=/bin/sh 2023-09-04T08:42:10.027148 # 2023-09-04T08:42:10.027297 / # export SHELL=/bin/sh 2023-09-04T08:42:11.980096 / # . /lava-1004754/environment 2023-09-04T08:42:15.573069 /lava-1004754/bin/lava-test-runner /lava-1004754/1 2023-09-04T08:42:15.593656 . /lava-1004754/environment 2023-09-04T08:42:15.593763 / # /lava-1004754/bin/lava-test-runner /lava-1004754/1 2023-09-04T08:42:15.670721 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:42:15.670934 + cd /lava-1004754/1/tests/1_bootrr ... (25 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f59970d02ab20b1a286d6c
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59970d02ab20b1a286d6f
failing since 48 days (last pass: v5.10.186-221-gf178eace6e074, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:46:18.284795 / # # 2023-09-04T08:46:19.744306 export SHELL=/bin/sh 2023-09-04T08:46:19.764794 # 2023-09-04T08:46:19.764974 / # export SHELL=/bin/sh 2023-09-04T08:46:21.716995 / # . /lava-1004758/environment 2023-09-04T08:46:25.308910 /lava-1004758/bin/lava-test-runner /lava-1004758/1 2023-09-04T08:46:25.329693 . /lava-1004758/environment 2023-09-04T08:46:25.329837 / # /lava-1004758/bin/lava-test-runner /lava-1004758/1 2023-09-04T08:46:25.406156 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:46:25.406381 + cd /lava-1004758/1/tests/1_bootrr ... (25 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ rk3399-rock-pi-4b | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f597eac6395c1d07286e40
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f597eac6395c1d07286e45
failing since 10 days (last pass: v5.10.191, first fail: v5.10.190-136-gda59b7b5c515e) 2023-09-04T08:40:01.038991 / # # 2023-09-04T08:40:02.299536 export SHELL=/bin/sh 2023-09-04T08:40:02.310453 # 2023-09-04T08:40:02.310913 / # export SHELL=/bin/sh 2023-09-04T08:40:04.054213 / # . /lava-11428458/environment 2023-09-04T08:40:07.258459 /lava-11428458/bin/lava-test-runner /lava-11428458/1 2023-09-04T08:40:07.269854 . /lava-11428458/environment 2023-09-04T08:40:07.272920 / # /lava-11428458/bin/lava-test-runner /lava-11428458/1 2023-09-04T08:40:07.324655 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:40:07.325139 + cd /lava-11428458/1/tests/1_bootrr ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f597c5f628bcc4c8286dca
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/linux-5.10.y/v5.10.194-24-g1be601d2…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.10.y/v5.10.194-24-g1be601d2…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f597c5f628bcc4c8286dcf
failing since 48 days (last pass: v5.10.186-221-gf178eace6e074, first fail: v5.10.186-332-gf98a4d3a5cec) 2023-09-04T08:40:59.323206 / # # 2023-09-04T08:40:59.425242 export SHELL=/bin/sh 2023-09-04T08:40:59.425947 # 2023-09-04T08:40:59.527332 / # export SHELL=/bin/sh. /lava-11428463/environment 2023-09-04T08:40:59.528041 2023-09-04T08:40:59.629436 / # . /lava-11428463/environment/lava-11428463/bin/lava-test-runner /lava-11428463/1 2023-09-04T08:40:59.630516 2023-09-04T08:40:59.647448 / # /lava-11428463/bin/lava-test-runner /lava-11428463/1 2023-09-04T08:40:59.689470 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:40:59.705278 + cd /lava-1142846<8>[ 18.167079] <LAVA_SIGNAL_STARTRUN 1_bootrr 11428463_1.5.2.4.5> ... (10 line(s) more)
1 year, 3 months
1
0
0
0
stable-rc/linux-6.1.y baseline: 121 runs, 10 regressions (v6.1.51-32-g652995c5153b)
by kernelci.org bot
stable-rc/linux-6.1.y baseline: 121 runs, 10 regressions (v6.1.51-32-g652995c5153b) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ acer-chromebox-cxi4-puff | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 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 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 imx6dl-riotboard | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 r8a779m1-ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-6.1.y/kernel/v6.1.51-3…
Test: baseline Tree: stable-rc Branch: linux-6.1.y Describe: v6.1.51-32-g652995c5153b URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 652995c5153b4cd24238c240f723afee17f8ce7e Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ acer-chromebox-cxi4-puff | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f591f2a43bece2bf286e2a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591f2a43bece2bf286e2b
failing since 1 day (last pass: v6.1.50-11-g1767553758a66, first fail: v6.1.51) 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/64f59102cc6673ef9f286d6e
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59102cc6673ef9f286d73
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:11:29.497273 + set +x 2023-09-04T08:11:29.503716 <8>[ 10.116957] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428319_1.4.2.3.1> 2023-09-04T08:11:29.605848 # 2023-09-04T08:11:29.606148 2023-09-04T08:11:29.706714 / # #export SHELL=/bin/sh 2023-09-04T08:11:29.706957 2023-09-04T08:11:29.807515 / # export SHELL=/bin/sh. /lava-11428319/environment 2023-09-04T08:11:29.807816 2023-09-04T08:11:29.908419 / # . /lava-11428319/environment/lava-11428319/bin/lava-test-runner /lava-11428319/1 2023-09-04T08:11:29.908785 ... (13 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/64f590fc63b8a2e909286d6e
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f590fc63b8a2e909286d73
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:10:21.864049 + set<8>[ 10.987419] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428330_1.4.2.3.1> 2023-09-04T08:10:21.864153 +x 2023-09-04T08:10:21.968500 / # # 2023-09-04T08:10:22.069149 export SHELL=/bin/sh 2023-09-04T08:10:22.069369 # 2023-09-04T08:10:22.169908 / # export SHELL=/bin/sh. /lava-11428330/environment 2023-09-04T08:10:22.170131 2023-09-04T08:10:22.270675 / # . /lava-11428330/environment/lava-11428330/bin/lava-test-runner /lava-11428330/1 2023-09-04T08:10:22.270991 2023-09-04T08:10:22.275470 / # /lava-11428330/bin/lava-test-runner /lava-11428330/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/64f591011d2f241f2b286d8e
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f591011d2f241f2b286d93
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:10:36.035620 <8>[ 10.339898] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428283_1.4.2.3.1> 2023-09-04T08:10:36.039049 + set +x 2023-09-04T08:10:36.142566 2023-09-04T08:10:36.243705 / # #export SHELL=/bin/sh 2023-09-04T08:10:36.244222 2023-09-04T08:10:36.345371 / # export SHELL=/bin/sh. /lava-11428283/environment 2023-09-04T08:10:36.346138 2023-09-04T08:10:36.447539 / # . /lava-11428283/environment/lava-11428283/bin/lava-test-runner /lava-11428283/1 2023-09-04T08:10:36.448631 2023-09-04T08:10:36.453399 / # /lava-11428283/bin/lava-test-runner /lava-11428283/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/64f590f30a3be84289286dba
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f590f30a3be84289286dbf
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:10:20.195399 + set +x 2023-09-04T08:10:20.201822 <8>[ 10.388427] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428329_1.4.2.3.1> 2023-09-04T08:10:20.306360 / # # 2023-09-04T08:10:20.406948 export SHELL=/bin/sh 2023-09-04T08:10:20.407186 # 2023-09-04T08:10:20.507813 / # export SHELL=/bin/sh. /lava-11428329/environment 2023-09-04T08:10:20.508020 2023-09-04T08:10:20.608620 / # . /lava-11428329/environment/lava-11428329/bin/lava-test-runner /lava-11428329/1 2023-09-04T08:10:20.608943 2023-09-04T08:10:20.613967 / # /lava-11428329/bin/lava-test-runner /lava-11428329/1 ... (11 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/64f5910563b8a2e909286d95
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f5910563b8a2e909286d9a
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:10:27.320978 + <8>[ 11.343137] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428297_1.4.2.3.1> 2023-09-04T08:10:27.321502 set +x 2023-09-04T08:10:27.429336 / # # 2023-09-04T08:10:27.531438 export SHELL=/bin/sh 2023-09-04T08:10:27.532274 # 2023-09-04T08:10:27.633729 / # export SHELL=/bin/sh. /lava-11428297/environment 2023-09-04T08:10:27.634533 2023-09-04T08:10:27.736232 / # . /lava-11428297/environment/lava-11428297/bin/lava-test-runner /lava-11428297/1 2023-09-04T08:10:27.737435 2023-09-04T08:10:27.742604 / # /lava-11428297/bin/lava-test-runner /lava-11428297/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx6dl-riotboard | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f5902977dc6cef43286e00
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-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f5902977dc6cef43286e05
new failure (last pass: v6.1.51) 2023-09-04T08:06:41.311490 + set[ 14.922312] <LAVA_SIGNAL_ENDRUN 0_dmesg 999429_1.5.2.3.1> 2023-09-04T08:06:41.311709 +x 2023-09-04T08:06:41.417414 / # # 2023-09-04T08:06:41.519063 export SHELL=/bin/sh 2023-09-04T08:06:41.519569 # 2023-09-04T08:06:41.620870 / # export SHELL=/bin/sh. /lava-999429/environment 2023-09-04T08:06:41.621364 2023-09-04T08:06:41.722645 / # . /lava-999429/environment/lava-999429/bin/lava-test-runner /lava-999429/1 2023-09-04T08:06:41.723257 2023-09-04T08:06:41.726141 / # /lava-999429/bin/lava-test-runner /lava-999429/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/64f5910a1d2f241f2b286db2
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f5910a1d2f241f2b286db7
failing since 157 days (last pass: v6.1.21, first fail: v6.1.22) 2023-09-04T08:10:30.631838 <8>[ 10.869295] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428328_1.4.2.3.1> 2023-09-04T08:10:30.736038 / # # 2023-09-04T08:10:30.836684 export SHELL=/bin/sh 2023-09-04T08:10:30.836877 # 2023-09-04T08:10:30.937392 / # export SHELL=/bin/sh. /lava-11428328/environment 2023-09-04T08:10:30.937568 2023-09-04T08:10:31.038181 / # . /lava-11428328/environment/lava-11428328/bin/lava-test-runner /lava-11428328/1 2023-09-04T08:10:31.038430 2023-09-04T08:10:31.043330 / # /lava-11428328/bin/lava-test-runner /lava-11428328/1 2023-09-04T08:10:31.050681 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ r8a779m1-ulcb | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58f45bf8c875eda286db4
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f58f45bf8c875eda286db9
failing since 48 days (last pass: v6.1.38-393-gb6386e7314b4, first fail: v6.1.38-590-gce7ec1011187) 2023-09-04T08:04:27.391408 / # # 2023-09-04T08:04:28.468601 export SHELL=/bin/sh 2023-09-04T08:04:28.469919 # 2023-09-04T08:04:29.958756 / # export SHELL=/bin/sh. /lava-11428143/environment 2023-09-04T08:04:29.960550 2023-09-04T08:04:32.683083 / # . /lava-11428143/environment/lava-11428143/bin/lava-test-runner /lava-11428143/1 2023-09-04T08:04:32.685279 2023-09-04T08:04:32.690894 / # /lava-11428143/bin/lava-test-runner /lava-11428143/1 2023-09-04T08:04:32.753704 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:04:32.754205 + cd /lava-114281<8>[ 28.450968] <LAVA_SIGNAL_STARTRUN 1_bootrr 11428143_1.5.2.4.5> ... (44 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/64f58f1bb9db795226286d7c
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/linux-6.1.y/v6.1.51-32-g652995c5153…
HTML log:
https://storage.kernelci.org//stable-rc/linux-6.1.y/v6.1.51-32-g652995c5153…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f58f1bb9db795226286d81
failing since 48 days (last pass: v6.1.38-393-gb6386e7314b4, first fail: v6.1.38-590-gce7ec1011187) 2023-09-04T08:04:03.026373 / # # 2023-09-04T08:04:03.128741 export SHELL=/bin/sh 2023-09-04T08:04:03.129024 # 2023-09-04T08:04:03.229964 / # export SHELL=/bin/sh. /lava-11428146/environment 2023-09-04T08:04:03.230683 2023-09-04T08:04:03.332149 / # . /lava-11428146/environment/lava-11428146/bin/lava-test-runner /lava-11428146/1 2023-09-04T08:04:03.333286 2023-09-04T08:04:03.377453 / # /lava-11428146/bin/lava-test-runner /lava-11428146/1 2023-09-04T08:04:03.377961 + export 'TESTRUN_ID=1_bootrr' 2023-09-04T08:04:03.413812 + cd /lava-1142814<8>[ 18.749638] <LAVA_SIGNAL_STARTRUN 1_bootrr 11428146_1.5.2.4.5> ... (11 line(s) more)
1 year, 3 months
1
0
0
0
stable-rc/linux-5.4.y baseline: 113 runs, 20 regressions (v5.4.256-18-g24e31ba5afd8c)
by kernelci.org bot
stable-rc/linux-5.4.y baseline: 113 runs, 20 regressions (v5.4.256-18-g24e31ba5afd8c) 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-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-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-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-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-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.4.y/kernel/v5.4.256-…
Test: baseline Tree: stable-rc Branch: linux-5.4.y Describe: v5.4.256-18-g24e31ba5afd8c URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 24e31ba5afd8cf4793e05aa3f37ec494f28e6974 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/64f59228bfcedda15e286d6d
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59228bfcedda15e286d72
failing since 229 days (last pass: v5.4.226-68-g8c05f5e0777d, first fail: v5.4.228-659-gb3b34c474ec7) 2023-09-04T08:15:16.211327 <8>[ 9.831340] <LAVA_SIGNAL_ENDRUN 0_dmesg 3762408_1.5.2.4.1> 2023-09-04T08:15:16.317922 / # # 2023-09-04T08:15:16.420161 export SHELL=/bin/sh 2023-09-04T08:15:16.420557 # 2023-09-04T08:15:16.521747 / # export SHELL=/bin/sh. /lava-3762408/environment 2023-09-04T08:15:16.522129 2023-09-04T08:15:16.522318 / # <3>[ 10.080255] Bluetooth: hci0: command 0xfc18 tx timeout 2023-09-04T08:15:16.623611 . /lava-3762408/environment/lava-3762408/bin/lava-test-runner /lava-3762408/1 2023-09-04T08:15:16.624228 2023-09-04T08:15:16.629447 / # /lava-3762408/bin/lava-test-runner /lava-3762408/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f592961f4f3655b9286df6
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/64f592961f4f3655b9286dff
failing since 319 days (last pass: v5.4.219, first fail: v5.4.219-267-g4a976f825745) 3 lines 2023-09-04T08:16:51.500054 / # 2023-09-04T08:16:51.508382 2023-09-04T08:16:51.615055 / # # 2023-09-04T08:16:51.620087 # 2023-09-04T08:16:51.738587 / # export SHELL=/bin/sh 2023-09-04T08:16:51.748481 export SHELL=/bin/sh 2023-09-04T08:16:51.850784 / # . /lava-3762273/environment 2023-09-04T08:16:51.860252 . /lava-3762273/environment 2023-09-04T08:16:51.962242 / # /lava-3762273/bin/lava-test-runner /lava-3762273/0 2023-09-04T08:16:51.971749 /lava-3762273/bin/lava-test-runner /lava-3762273/0 ... (10 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/64f59017aa5fe17080286d72
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f59017aa5fe17080286d77
failing since 157 days (last pass: v5.4.238, first fail: v5.4.238) 2023-09-04T08:06:37.025335 + set<8>[ 10.030128] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428225_1.4.2.3.1> 2023-09-04T08:06:37.025440 +x 2023-09-04T08:06:37.127576 # 2023-09-04T08:06:37.127814 2023-09-04T08:06:37.228355 / # #export SHELL=/bin/sh 2023-09-04T08:06:37.228525 2023-09-04T08:06:37.328992 / # export SHELL=/bin/sh. /lava-11428225/environment 2023-09-04T08:06:37.329168 2023-09-04T08:06:37.429658 / # . /lava-11428225/environment/lava-11428225/bin/lava-test-runner /lava-11428225/1 2023-09-04T08:06:37.429938 ... (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/64f5900e01d8003e29286e38
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/64f5900e01d8003e29286e3d
failing since 157 days (last pass: v5.4.238, first fail: v5.4.238) 2023-09-04T08:07:30.678222 <8>[ 12.862418] <LAVA_SIGNAL_ENDRUN 0_dmesg 11428213_1.4.2.3.1> 2023-09-04T08:07:30.681920 + set +x 2023-09-04T08:07:30.783497 # 2023-09-04T08:07:30.783796 2023-09-04T08:07:30.884383 / # #export SHELL=/bin/sh 2023-09-04T08:07:30.884579 2023-09-04T08:07:30.985026 / # export SHELL=/bin/sh. /lava-11428213/environment 2023-09-04T08:07:30.985221 2023-09-04T08:07:31.085696 / # . /lava-11428213/environment/lava-11428213/bin/lava-test-runner /lava-11428213/1 2023-09-04T08:07:31.085978 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f591f4a43bece2bf286e2d
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591f4a43bece2bf286e2e
failing since 376 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) 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/64f5935d02a9923916286dc4
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5935d02a9923916286dc5
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f591a51b2a9d79aa286eac
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591a51b2a9d79aa286ead
failing since 376 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) 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/64f5933f02a9923916286dc0
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5933f02a9923916286dc1
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) 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/64f591f6a43bece2bf286e3b
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591f6a43bece2bf286e3c
failing since 398 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f593854d71cab49c286d85
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f593854d71cab49c286d86
failing since 398 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f591b931db535754286d6d
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591b931db535754286d6e
failing since 398 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f5935f021344bafa286d7e
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5935f021344bafa286d7f
failing since 398 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f59208378e2c6c07286d8d
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59208378e2c6c07286d8e
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f59373f40453c872286d9e
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59373f40453c872286d9f
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f591ba31db535754286d71
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591ba31db535754286d72
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f5935d02a9923916286dc7
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5935d02a9923916286dc8
failing since 396 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f591efa43bece2bf286e27
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f591efa43bece2bf286e28
failing since 376 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) 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/64f59374cf15c1563f286da1
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f59374cf15c1563f286da2
failing since 384 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-258-ge86027f8111f5) 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/64f5919a49807736f2286d6d
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5919a49807736f2286d6e
failing since 376 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) 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/64f5935e4d71cab49c286d79
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.256-18-g24e31ba5af…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.256-18-g24e31ba5af…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f5935e4d71cab49c286d7a
failing since 384 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-258-ge86027f8111f5)
1 year, 3 months
1
0
0
0
stable-rc/linux-4.14.y baseline: 93 runs, 18 regressions (v4.14.325-13-gd2f63e965fee2)
by kernelci.org bot
stable-rc/linux-4.14.y baseline: 93 runs, 18 regressions (v4.14.325-13-gd2f63e965fee2) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ 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-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-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-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 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-4.14.y/kernel/v4.14.32…
Test: baseline Tree: stable-rc Branch: linux-4.14.y Describe: v4.14.325-13-gd2f63e965fee2 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: d2f63e965fee2f0f3eb62fe5518feaf9e6c74f0d Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c7e7cecd739c7286da4
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c7e7cecd739c7286da5
failing since 376 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58de4ca2b57d518286d6e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58de4ca2b57d518286d6f
failing since 384 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-154-gc3e4c291190ba) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c6905d943b3c6286d81
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c6905d943b3c6286d82
failing since 376 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58c90ba042af383286d9b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c90ba042af383286d9c
failing since 384 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-154-gc3e4c291190ba) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c7c7cecd739c7286d90
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c7c7cecd739c7286d91
failing since 398 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.289-48-gdea72dca89ea9) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58df8e87e17791d286d99
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58df8e87e17791d286d9a
failing since 366 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c6005d943b3c6286d6c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c6005d943b3c6286d6d
failing since 398 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.289-48-gdea72dca89ea9) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58c887cecd739c7286daf
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c887cecd739c7286db0
failing since 366 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c767cecd739c7286d8d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c767cecd739c7286d8e
failing since 376 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58ddee87e17791d286d92
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58ddee87e17791d286d93
failing since 366 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c5f2fe2847dec286dfe
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c5f2fe2847dec286dff
failing since 376 days (last pass: v4.14.266-45-gce409501ca5f, first fail: v4.14.290-230-g4d54ef55c38e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58c86ba042af383286d7c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c87ba042af383286d7d
failing since 366 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.291-43-g3eabc273fb308) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/64f58c7d7cecd739c7286d96
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c7d7cecd739c7286d97
failing since 382 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58df9e87e17791d286d9f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58df9e87e17791d286da0
failing since 384 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-176-g1ee5c98a9d0bc) 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/64f58c6805d943b3c6286d7b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58c6805d943b3c6286d7c
failing since 382 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/64f58cccb1668809af286da6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/64f58cccb1668809af286da7
failing since 384 days (last pass: v4.14.267-33-g871c9e115feb, first fail: v4.14.290-176-g1ee5c98a9d0bc) 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/64f58bb6c644aa5faa286d6c
Results: 49 PASS, 23 FAIL, 2 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
HTML log:
https://storage.kernelci.org//stable-rc/linux-4.14.y/v4.14.325-13-gd2f63e96…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-usb2phy1-probed:
https://kernelci.org/test/case/id/64f58bb6c644aa5faa286d72
failing since 174 days (last pass: v4.14.308, first fail: v4.14.308-4-ge7a701196c571) 2023-09-04T07:47:58.453221 /lava-11428030/1/../bin/lava-test-case * baseline.bootrr.rockchip-usb2phy0-probed:
https://kernelci.org/test/case/id/64f58bb6c644aa5faa286d73
failing since 174 days (last pass: v4.14.308, first fail: v4.14.308-4-ge7a701196c571) 2023-09-04T07:47:57.430012 /lava-11428030/1/../bin/lava-test-case 2023-09-04T07:47:57.439245 [ 49.126517] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail>
1 year, 3 months
1
0
0
0
stable-rc/linux-5.15.y build: 19 builds: 0 failed, 19 passed, 3 warnings (v5.15.130-27-g8b47c0181c8e)
by kernelci.org bot
stable-rc/linux-5.15.y build: 19 builds: 0 failed, 19 passed, 3 warnings (v5.15.130-27-g8b47c0181c8e) Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-5.15.y/kernel/v5.15.130-2…
Tree: stable-rc Branch: linux-5.15.y Git Describe: v5.15.130-27-g8b47c0181c8e Git Commit: 8b47c0181c8e7dac2978a87dcad976913f34e282 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 7 unique architectures Warnings Detected: arc: arm64: arm: i386: mips: 32r2el_defconfig (gcc-10): 1 warning riscv: x86_64: x86_64_defconfig (gcc-10): 1 warning x86_64_defconfig+x86-chromebook (gcc-10): 1 warning Warnings summary: 2 arch/x86/kernel/smp.o: warning: objtool: sysvec_reboot()+0x45: unreachable instruction 1 arch/mips/boot/dts/img/boston.dts:128.19-178.5: Warning (pci_device_reg): /pci@14000000/pci2_root@0,0,0: PCI unit address format error, expected "0,0" ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- 32r2el_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: arch/mips/boot/dts/img/boston.dts:128.19-178.5: Warning (pci_device_reg): /pci@14000000/pci2_root@0,0,0: PCI unit address format error, expected "0,0" -------------------------------------------------------------------------------- allnoconfig (i386, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig+arm64-chromebook (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- i386_defconfig (i386, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nommu_k210_defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nommu_k210_sdcard_defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rv32_defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (i386, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: arch/x86/kernel/smp.o: warning: objtool: sysvec_reboot()+0x45: unreachable instruction -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: arch/x86/kernel/smp.o: warning: objtool: sysvec_reboot()+0x45: unreachable instruction --- For more info write to <info(a)kernelci.org>
1 year, 3 months
1
0
0
0
stable-rc/linux-4.19.y build: 19 builds: 3 failed, 16 passed, 20 warnings (v4.19.294-15-g530503262cfd8)
by kernelci.org bot
stable-rc/linux-4.19.y build: 19 builds: 3 failed, 16 passed, 20 warnings (v4.19.294-15-g530503262cfd8) Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.19.y/kernel/v4.19.294-1…
Tree: stable-rc Branch: linux-4.19.y Git Describe: v4.19.294-15-g530503262cfd8 Git Commit: 530503262cfd8dc02ad8dff52be0642a585e729f Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 7 unique architectures Build Failures Detected: riscv: allnoconfig: (gcc-10) FAIL defconfig: (gcc-10) FAIL tinyconfig: (gcc-10) FAIL Warnings Detected: arc: arm64: defconfig (gcc-10): 3 warnings defconfig+arm64-chromebook (gcc-10): 3 warnings arm: i386: allnoconfig (gcc-10): 2 warnings i386_defconfig (gcc-10): 2 warnings tinyconfig (gcc-10): 2 warnings mips: riscv: x86_64: allnoconfig (gcc-10): 2 warnings tinyconfig (gcc-10): 2 warnings x86_64_defconfig (gcc-10): 2 warnings x86_64_defconfig+x86-chromebook (gcc-10): 2 warnings Warnings summary: 7 ld: warning: creating DT_TEXTREL in a PIE 6 aarch64-linux-gnu-ld: warning: -z norelro ignored 4 ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' 3 ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' Section mismatches summary: 3 WARNING: modpost: Found 1 section mismatch(es). ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- 32r2el_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- allnoconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- defconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- defconfig (arm64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- defconfig+arm64-chromebook (arm64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- haps_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- i386_defconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (riscv, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- tinyconfig (i386, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE --- For more info write to <info(a)kernelci.org>
1 year, 3 months
1
0
0
0
← Newer
1
...
96
97
98
99
100
101
102
...
108
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
Results per page:
10
25
50
100
200