lists.linaro.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
List overview
Download
Linux-stable-mirror
November 2022
----- 2025 -----
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
linux-stable-mirror@lists.linaro.org
378 participants
1539 discussions
Start a n
N
ew thread
[PATCH V2 05/12] vDPA/ifcvf: decouple config IRQ releaser from the adapter
by Zhu Lingshan
This commit decouples config IRQ releaser from the adapter, so that it could be invoked once probe or in err handlers. ifcvf_free_irq() works on ifcvf_hw in this commit Signed-off-by: Zhu Lingshan <lingshan.zhu(a)intel.com> Cc: stable(a)vger.kernel.org --- drivers/vdpa/ifcvf/ifcvf_main.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c index 7dac0285b71d..c635f78f5c4c 100644 --- a/drivers/vdpa/ifcvf/ifcvf_main.c +++ b/drivers/vdpa/ifcvf/ifcvf_main.c @@ -101,10 +101,9 @@ static void ifcvf_free_vq_irq(struct ifcvf_hw *vf) ifcvf_free_vqs_reused_irq(vf); } -static void ifcvf_free_config_irq(struct ifcvf_adapter *adapter) +static void ifcvf_free_config_irq(struct ifcvf_hw *vf) { - struct pci_dev *pdev = adapter->pdev; - struct ifcvf_hw *vf = &adapter->vf; + struct pci_dev *pdev = vf->pdev; if (vf->config_irq == -EINVAL) return; @@ -119,13 +118,12 @@ static void ifcvf_free_config_irq(struct ifcvf_adapter *adapter) } } -static void ifcvf_free_irq(struct ifcvf_adapter *adapter) +static void ifcvf_free_irq(struct ifcvf_hw *vf) { - struct pci_dev *pdev = adapter->pdev; - struct ifcvf_hw *vf = &adapter->vf; + struct pci_dev *pdev = vf->pdev; ifcvf_free_vq_irq(vf); - ifcvf_free_config_irq(adapter); + ifcvf_free_config_irq(vf); ifcvf_free_irq_vectors(pdev); } @@ -187,7 +185,7 @@ static int ifcvf_request_per_vq_irq(struct ifcvf_adapter *adapter) return 0; err: - ifcvf_free_irq(adapter); + ifcvf_free_irq(vf); return -EFAULT; } @@ -221,7 +219,7 @@ static int ifcvf_request_vqs_reused_irq(struct ifcvf_adapter *adapter) return 0; err: - ifcvf_free_irq(adapter); + ifcvf_free_irq(vf); return -EFAULT; } @@ -262,7 +260,7 @@ static int ifcvf_request_dev_irq(struct ifcvf_adapter *adapter) return 0; err: - ifcvf_free_irq(adapter); + ifcvf_free_irq(vf); return -EFAULT; @@ -317,7 +315,7 @@ static int ifcvf_request_config_irq(struct ifcvf_adapter *adapter) return 0; err: - ifcvf_free_irq(adapter); + ifcvf_free_irq(vf); return -EFAULT; } @@ -508,7 +506,7 @@ static int ifcvf_vdpa_reset(struct vdpa_device *vdpa_dev) if (status_old & VIRTIO_CONFIG_S_DRIVER_OK) { ifcvf_stop_datapath(adapter); - ifcvf_free_irq(adapter); + ifcvf_free_irq(vf); } ifcvf_reset_vring(adapter); -- 2.31.1
2 years, 1 month
1
0
0
0
[PATCH V2 04/12] vDPA/ifcvf: decouple vq IRQ releasers from the adapter
by Zhu Lingshan
This commit decouples the IRQ releasers from the adapter, so that these functions could be safely invoked once probe Signed-off-by: Zhu Lingshan <lingshan.zhu(a)intel.com> Cc: stable(a)vger.kernel.org --- drivers/vdpa/ifcvf/ifcvf_main.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c index 306a57c05509..7dac0285b71d 100644 --- a/drivers/vdpa/ifcvf/ifcvf_main.c +++ b/drivers/vdpa/ifcvf/ifcvf_main.c @@ -69,10 +69,9 @@ static void ifcvf_free_irq_vectors(void *data) pci_free_irq_vectors(data); } -static void ifcvf_free_per_vq_irq(struct ifcvf_adapter *adapter) +static void ifcvf_free_per_vq_irq(struct ifcvf_hw *vf) { - struct pci_dev *pdev = adapter->pdev; - struct ifcvf_hw *vf = &adapter->vf; + struct pci_dev *pdev = vf->pdev; int i; for (i = 0; i < vf->nr_vring; i++) { @@ -83,10 +82,9 @@ static void ifcvf_free_per_vq_irq(struct ifcvf_adapter *adapter) } } -static void ifcvf_free_vqs_reused_irq(struct ifcvf_adapter *adapter) +static void ifcvf_free_vqs_reused_irq(struct ifcvf_hw *vf) { - struct pci_dev *pdev = adapter->pdev; - struct ifcvf_hw *vf = &adapter->vf; + struct pci_dev *pdev = vf->pdev; if (vf->vqs_reused_irq != -EINVAL) { devm_free_irq(&pdev->dev, vf->vqs_reused_irq, vf); @@ -95,14 +93,12 @@ static void ifcvf_free_vqs_reused_irq(struct ifcvf_adapter *adapter) } -static void ifcvf_free_vq_irq(struct ifcvf_adapter *adapter) +static void ifcvf_free_vq_irq(struct ifcvf_hw *vf) { - struct ifcvf_hw *vf = &adapter->vf; - if (vf->msix_vector_status == MSIX_VECTOR_PER_VQ_AND_CONFIG) - ifcvf_free_per_vq_irq(adapter); + ifcvf_free_per_vq_irq(vf); else - ifcvf_free_vqs_reused_irq(adapter); + ifcvf_free_vqs_reused_irq(vf); } static void ifcvf_free_config_irq(struct ifcvf_adapter *adapter) @@ -126,8 +122,9 @@ static void ifcvf_free_config_irq(struct ifcvf_adapter *adapter) static void ifcvf_free_irq(struct ifcvf_adapter *adapter) { struct pci_dev *pdev = adapter->pdev; + struct ifcvf_hw *vf = &adapter->vf; - ifcvf_free_vq_irq(adapter); + ifcvf_free_vq_irq(vf); ifcvf_free_config_irq(adapter); ifcvf_free_irq_vectors(pdev); } -- 2.31.1
2 years, 1 month
1
0
0
0
[PATCH V2 03/12] vDPA/ifcvf: alloc the mgmt_dev before the adapter
by Zhu Lingshan
This commit reverses the order of allocating the management device and the adapter. So that it would be possible to move the allocation of the adapter to dev_add(). Signed-off-by: Zhu Lingshan <lingshan.zhu(a)intel.com> Cc: stable(a)vger.kernel.org --- drivers/vdpa/ifcvf/ifcvf_main.c | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c index 28c82d796c90..306a57c05509 100644 --- a/drivers/vdpa/ifcvf/ifcvf_main.c +++ b/drivers/vdpa/ifcvf/ifcvf_main.c @@ -831,22 +831,30 @@ static int ifcvf_probe(struct pci_dev *pdev, const struct pci_device_id *id) } pci_set_master(pdev); + ifcvf_mgmt_dev = kzalloc(sizeof(struct ifcvf_vdpa_mgmt_dev), GFP_KERNEL); + if (!ifcvf_mgmt_dev) { + IFCVF_ERR(pdev, "Failed to alloc memory for the vDPA management device\n"); + return -ENOMEM; + } adapter = vdpa_alloc_device(struct ifcvf_adapter, vdpa, dev, &ifc_vdpa_ops, 1, 1, NULL, false); if (IS_ERR(adapter)) { IFCVF_ERR(pdev, "Failed to allocate vDPA structure"); - return PTR_ERR(adapter); + ret = PTR_ERR(adapter); + goto err; } + adapter->pdev = pdev; + adapter->vdpa.dma_dev = &pdev->dev; + adapter->vdpa.mdev = &ifcvf_mgmt_dev->mdev; + ifcvf_mgmt_dev->adapter = adapter; + vf = &adapter->vf; vf->dev_type = get_dev_type(pdev); vf->base = pcim_iomap_table(pdev); vf->pdev = pdev; - adapter->pdev = pdev; - adapter->vdpa.dma_dev = &pdev->dev; - ret = ifcvf_init_hw(vf, pdev); if (ret) { IFCVF_ERR(pdev, "Failed to init IFCVF hw\n"); @@ -859,16 +867,6 @@ static int ifcvf_probe(struct pci_dev *pdev, const struct pci_device_id *id) vf->hw_features = ifcvf_get_hw_features(vf); vf->config_size = ifcvf_get_config_size(vf); - ifcvf_mgmt_dev = kzalloc(sizeof(struct ifcvf_vdpa_mgmt_dev), GFP_KERNEL); - if (!ifcvf_mgmt_dev) { - IFCVF_ERR(pdev, "Failed to alloc memory for the vDPA management device\n"); - return -ENOMEM; - } - - ifcvf_mgmt_dev->mdev.ops = &ifcvf_vdpa_mgmt_dev_ops; - ifcvf_mgmt_dev->mdev.device = dev; - ifcvf_mgmt_dev->adapter = adapter; - dev_type = get_dev_type(pdev); switch (dev_type) { case VIRTIO_ID_NET: @@ -883,12 +881,11 @@ static int ifcvf_probe(struct pci_dev *pdev, const struct pci_device_id *id) goto err; } + ifcvf_mgmt_dev->mdev.ops = &ifcvf_vdpa_mgmt_dev_ops; + ifcvf_mgmt_dev->mdev.device = dev; ifcvf_mgmt_dev->mdev.max_supported_vqs = vf->nr_vring; ifcvf_mgmt_dev->mdev.supported_features = vf->hw_features; - adapter->vdpa.mdev = &ifcvf_mgmt_dev->mdev; - - ret = vdpa_mgmtdev_register(&ifcvf_mgmt_dev->mdev); if (ret) { IFCVF_ERR(pdev, -- 2.31.1
2 years, 1 month
1
0
0
0
[PATCH V2 02/12] vDPA/ifcvf: decouple config space ops from the adapter
by Zhu Lingshan
This commit decopules the config space ops from the adapter layer, so these functions can be invoked once the device is probed. Signed-off-by: Zhu Lingshan <lingshan.zhu(a)intel.com> Cc: stable(a)vger.kernel.org --- drivers/vdpa/ifcvf/ifcvf_base.c | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/drivers/vdpa/ifcvf/ifcvf_base.c b/drivers/vdpa/ifcvf/ifcvf_base.c index 7a7e6ba66f88..3ec5ca3aefe1 100644 --- a/drivers/vdpa/ifcvf/ifcvf_base.c +++ b/drivers/vdpa/ifcvf/ifcvf_base.c @@ -10,11 +10,6 @@ #include "ifcvf_base.h" -struct ifcvf_adapter *vf_to_adapter(struct ifcvf_hw *hw) -{ - return container_of(hw, struct ifcvf_adapter, vf); -} - u16 ifcvf_set_vq_vector(struct ifcvf_hw *hw, u16 qid, int vector) { struct virtio_pci_common_cfg __iomem *cfg = hw->common_cfg; @@ -37,8 +32,6 @@ u16 ifcvf_set_config_vector(struct ifcvf_hw *hw, int vector) static void __iomem *get_cap_addr(struct ifcvf_hw *hw, struct virtio_pci_cap *cap) { - struct ifcvf_adapter *ifcvf; - struct pci_dev *pdev; u32 length, offset; u8 bar; @@ -46,17 +39,14 @@ static void __iomem *get_cap_addr(struct ifcvf_hw *hw, offset = le32_to_cpu(cap->offset); bar = cap->bar; - ifcvf= vf_to_adapter(hw); - pdev = ifcvf->pdev; - if (bar >= IFCVF_PCI_MAX_RESOURCE) { - IFCVF_DBG(pdev, + IFCVF_DBG(hw->pdev, "Invalid bar number %u to get capabilities\n", bar); return NULL; } - if (offset + length > pci_resource_len(pdev, bar)) { - IFCVF_DBG(pdev, + if (offset + length > pci_resource_len(hw->pdev, bar)) { + IFCVF_DBG(hw->pdev, "offset(%u) + len(%u) overflows bar%u's capability\n", offset, length, bar); return NULL; @@ -92,6 +82,7 @@ int ifcvf_init_hw(struct ifcvf_hw *hw, struct pci_dev *pdev) IFCVF_ERR(pdev, "Failed to read PCI capability list\n"); return -EIO; } + hw->pdev = pdev; while (pos) { ret = ifcvf_read_config_range(pdev, (u32 *)&cap, @@ -230,13 +221,11 @@ int ifcvf_verify_min_features(struct ifcvf_hw *hw, u64 features) u32 ifcvf_get_config_size(struct ifcvf_hw *hw) { - struct ifcvf_adapter *adapter; u32 net_config_size = sizeof(struct virtio_net_config); u32 blk_config_size = sizeof(struct virtio_blk_config); u32 cap_size = hw->cap_dev_config_size; u32 config_size; - adapter = vf_to_adapter(hw); /* If the onboard device config space size is greater than * the size of struct virtio_net/blk_config, only the spec * implementing contents size is returned, this is very @@ -251,7 +240,7 @@ u32 ifcvf_get_config_size(struct ifcvf_hw *hw) break; default: config_size = 0; - IFCVF_ERR(adapter->pdev, "VIRTIO ID %u not supported\n", hw->dev_type); + IFCVF_ERR(hw->pdev, "VIRTIO ID %u not supported\n", hw->dev_type); } return config_size; -- 2.31.1
2 years, 1 month
1
0
0
0
[PATCH V2 01/12] vDPA/ifcvf: decouple hw features manipulators from the adapter
by Zhu Lingshan
This commit gets rid of ifcvf_adapter in hw features related functions in ifcvf_base. Then these functions are more rubust and de-coupling from the ifcvf_adapter layer. So these functions could be invoded once the device is probed, even before the adapter is allocaed. Signed-off-by: Zhu Lingshan <lingshan.zhu(a)intel.com> Cc: stable(a)vger.kernel.org --- drivers/vdpa/ifcvf/ifcvf_base.c | 9 ++------- drivers/vdpa/ifcvf/ifcvf_base.h | 1 + drivers/vdpa/ifcvf/ifcvf_main.c | 1 + 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/vdpa/ifcvf/ifcvf_base.c b/drivers/vdpa/ifcvf/ifcvf_base.c index 3e4486bfa0b7..7a7e6ba66f88 100644 --- a/drivers/vdpa/ifcvf/ifcvf_base.c +++ b/drivers/vdpa/ifcvf/ifcvf_base.c @@ -220,10 +220,8 @@ u64 ifcvf_get_features(struct ifcvf_hw *hw) int ifcvf_verify_min_features(struct ifcvf_hw *hw, u64 features) { - struct ifcvf_adapter *ifcvf = vf_to_adapter(hw); - if (!(features & BIT_ULL(VIRTIO_F_ACCESS_PLATFORM)) && features) { - IFCVF_ERR(ifcvf->pdev, "VIRTIO_F_ACCESS_PLATFORM is not negotiated\n"); + IFCVF_ERR(hw->pdev, "VIRTIO_F_ACCESS_PLATFORM is not negotiated\n"); return -EINVAL; } @@ -301,14 +299,11 @@ static void ifcvf_set_features(struct ifcvf_hw *hw, u64 features) static int ifcvf_config_features(struct ifcvf_hw *hw) { - struct ifcvf_adapter *ifcvf; - - ifcvf = vf_to_adapter(hw); ifcvf_set_features(hw, hw->req_features); ifcvf_add_status(hw, VIRTIO_CONFIG_S_FEATURES_OK); if (!(ifcvf_get_status(hw) & VIRTIO_CONFIG_S_FEATURES_OK)) { - IFCVF_ERR(ifcvf->pdev, "Failed to set FEATURES_OK status\n"); + IFCVF_ERR(hw->pdev, "Failed to set FEATURES_OK status\n"); return -EIO; } diff --git a/drivers/vdpa/ifcvf/ifcvf_base.h b/drivers/vdpa/ifcvf/ifcvf_base.h index f5563f665cc6..e1fe947d61b7 100644 --- a/drivers/vdpa/ifcvf/ifcvf_base.h +++ b/drivers/vdpa/ifcvf/ifcvf_base.h @@ -89,6 +89,7 @@ struct ifcvf_hw { u16 nr_vring; /* VIRTIO_PCI_CAP_DEVICE_CFG size */ u32 cap_dev_config_size; + struct pci_dev *pdev; }; struct ifcvf_adapter { diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c index f9c0044c6442..28c82d796c90 100644 --- a/drivers/vdpa/ifcvf/ifcvf_main.c +++ b/drivers/vdpa/ifcvf/ifcvf_main.c @@ -842,6 +842,7 @@ static int ifcvf_probe(struct pci_dev *pdev, const struct pci_device_id *id) vf = &adapter->vf; vf->dev_type = get_dev_type(pdev); vf->base = pcim_iomap_table(pdev); + vf->pdev = pdev; adapter->pdev = pdev; adapter->vdpa.dma_dev = &pdev->dev; -- 2.31.1
2 years, 1 month
1
0
0
0
stable-rc/queue/4.14 baseline: 81 runs, 14 regressions (v4.14.299-87-g0183d1413c16)
by kernelci.org bot
stable-rc/queue/4.14 baseline: 81 runs, 14 regressions (v4.14.299-87-g0183d1413c16) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.14/kernel/v4.14.29…
Test: baseline Tree: stable-rc Branch: queue/4.14 Describe: v4.14.299-87-g0183d1413c16 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 0183d1413c1678d7b5e25c8ea0c772cfcaf6c6d3 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096725715d9f0642abd5c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096725715d9f0642abd5d
failing since 143 days (last pass: v4.14.285-35-g61a723f50c9f, first fail: v4.14.285-46-ga87318551bac) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096885715d9f0642abd6f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096885715d9f0642abd70
failing since 220 days (last pass: v4.14.275-277-gda5c0b6bebbb1, first fail: v4.14.275-284-gdf8ec5b4383b9) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096c5cfbf9d1b092abd05
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096c5cfbf9d1b092abd06
failing since 285 days (last pass: v4.14.266-18-g18b83990eba9, first fail: v4.14.266-28-g7d44cfe0255d) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096d68dbc24de712abd06
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096d68dbc24de712abd07
failing since 199 days (last pass: v4.14.277-54-gfa6de16ffc4e, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/6380986500172ff11d2abd02
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/6380986500172ff11d2abd03
failing since 199 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809700d6d2e51da42abd79
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809700d6d2e51da42abd7a
failing since 199 days (last pass: v4.14.277-54-gfa6de16ffc4e, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638098696b94cb2d0e2abd21
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638098696b94cb2d0e2abd22
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638097fd3677bbc5132abd07
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638097fd3677bbc5132abd08
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096b0a4e1526feb2abd02
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096b0a4e1526feb2abd03
failing since 199 days (last pass: v4.14.277-54-gfa6de16ffc4e, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/6380986700172ff11d2abd08
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/6380986700172ff11d2abd09
failing since 199 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638096fed6d2e51da42abd75
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638096fed6d2e51da42abd76
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638098666b94cb2d0e2abd1b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638098666b94cb2d0e2abd1c
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809681570bd874412abd02
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809681570bd874412abd03
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638097e9263e3289e12abd16
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.299-87-g0183d1413c…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638097e9263e3289e12abd17
failing since 122 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84)
2 years, 1 month
1
0
0
0
stable-rc/queue/5.4 baseline: 110 runs, 11 regressions (v5.4.224-155-g79afd58e501c)
by kernelci.org bot
stable-rc/queue/5.4 baseline: 110 runs, 11 regressions (v5.4.224-155-g79afd58e501c) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.4/kernel/v5.4.224-…
Test: baseline Tree: stable-rc Branch: queue/5.4 Describe: v5.4.224-155-g79afd58e501c URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 79afd58e501c48f93e932d6321360d29fbb7ce38 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63809357864e18671a2abd07
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809357864e18671a2abd08
failing since 199 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638094a53d60d1a43b2abd03
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638094a53d60d1a43b2abd04
failing since 199 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63809355e83e8aeec32abd2c
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809355e83e8aeec32abd2d
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638094a67ced550b782abd02
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638094a67ced550b782abd03
failing since 199 days (last pass: v5.4.191-77-g1a3b249e415b, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638092fb229c4c682d2abcff
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638092fb229c4c682d2abd00
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/638093580a1ae2467c2abd0d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638093580a1ae2467c2abd0e
failing since 199 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638094a93d60d1a43b2abd0f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638094a93d60d1a43b2abd10
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/6380946451093926182abcfc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/6380946451093926182abcfd
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/6380935225d7b176232abd45
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/6380935225d7b176232abd46
failing since 199 days (last pass: v5.4.191-84-g56ce42d78d96, first fail: v5.4.191-125-g5917d1547e6e) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638094a83d60d1a43b2abd09
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638094a83d60d1a43b2abd0a
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809478cd34dc0d232abd15
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.224-155-g79afd58e501…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809478cd34dc0d232abd16
failing since 122 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1)
2 years, 1 month
1
0
0
0
stable-rc/queue/4.19 baseline: 93 runs, 11 regressions (v4.19.266-113-g31aa3f26a1bd)
by kernelci.org bot
stable-rc/queue/4.19 baseline: 93 runs, 11 regressions (v4.19.266-113-g31aa3f26a1bd) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.19/kernel/v4.19.26…
Test: baseline Tree: stable-rc Branch: queue/4.19 Describe: v4.19.266-113-g31aa3f26a1bd URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 31aa3f26a1bd91ef14b17526b43a77b28b81837a Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/638090af5a03818b942abe07
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638090af5a03818b942abe08
failing since 220 days (last pass: v4.19.238-22-gb215381f8cf05, first fail: v4.19.238-32-g4d86c9395c31a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808ef741c2846fce2abcfa
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808ef741c2846fce2abcfb
failing since 199 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/6380911d488313dc502abd0a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/6380911d488313dc502abd0b
failing since 199 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808f0f41c2846fce2abd30
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808f0f41c2846fce2abd31
failing since 122 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809182cde3eedea32abdff
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809182cde3eedea32abe00
failing since 199 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808e87d4d82badda2abd07
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808e87d4d82badda2abd08
failing since 122 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808f12ff94eb9b9f2abd1b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808f12ff94eb9b9f2abd1c
failing since 199 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809185cde3eedea32abe10
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809185cde3eedea32abe11
failing since 199 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808f1041c2846fce2abd35
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808f1041c2846fce2abd36
failing since 199 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/63809181cde3eedea32abdd8
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63809181cde3eedea32abdd9
failing since 199 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/63808db7a81329e05a2abd5f
Results: 83 PASS, 7 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.266-113-g31aa3f26a…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.bootrr.rockchip-i2s1-probed:
https://kernelci.org/test/case/id/63808db7a81329e05a2abd80
failing since 264 days (last pass: v4.19.232-31-g5cf846953aa2, first fail: v4.19.232-44-gfd65e02206f4) 2022-11-25T09:40:48.642854 /lava-8121111/1/../bin/lava-test-case
2 years, 1 month
1
0
0
0
stable-rc/linux-5.15.y baseline: 83 runs, 2 regressions (v5.15.79-181-gd0344da1eca6)
by kernelci.org bot
stable-rc/linux-5.15.y baseline: 83 runs, 2 regressions (v5.15.79-181-gd0344da1eca6) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.15.y/kernel/v5.15.79…
Test: baseline Tree: stable-rc Branch: linux-5.15.y Describe: v5.15.79-181-gd0344da1eca6 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: d0344da1eca6840c665685e68ae82c09b301fc02 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/63808cbd389eec5c712abcfc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: imx_v6_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.79-181-gd0344da1…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.79-181-gd0344da1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808cbd389eec5c712abcfd
failing since 59 days (last pass: v5.15.70, first fail: v5.15.70-144-g0b09b5df445f9) platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/63808b2eb2dab1c7b52abd3f
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.15.y/v5.15.79-181-gd0344da1…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.15.y/v5.15.79-181-gd0344da1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808b2eb2dab1c7b52abd40
failing since 59 days (last pass: v5.15.70, first fail: v5.15.70-144-g0b09b5df445f9)
2 years, 1 month
1
0
0
0
stable-rc/queue/5.15 baseline: 124 runs, 2 regressions (v5.15.79-180-g8c27062366ee)
by kernelci.org bot
stable-rc/queue/5.15 baseline: 124 runs, 2 regressions (v5.15.79-180-g8c27062366ee) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.15/kernel/v5.15.79…
Test: baseline Tree: stable-rc Branch: queue/5.15 Describe: v5.15.79-180-g8c27062366ee URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 8c27062366eea1c27fa7d7430352a15590c1336b Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/63808759129f94f3192abd10
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: imx_v6_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.79-180-g8c27062366…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.79-180-g8c27062366…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/63808759129f94f3192abd11
failing since 60 days (last pass: v5.15.70-117-g5ae36aa8ead6e, first fail: v5.15.70-133-gbad831d5b9cf) platform | arch | lab | compiler | defconfig | regressions ------------+------+---------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/638088d64ae91cee282abd23
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.79-180-g8c27062366…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.79-180-g8c27062366…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/638088d64ae91cee282abd24
failing since 60 days (last pass: v5.15.69-44-g09c929d3da79, first fail: v5.15.70-123-gaf951c1b9b36)
2 years, 1 month
1
0
0
0
← Newer
1
...
38
39
40
41
42
43
44
...
154
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
Results per page:
10
25
50
100
200