[PATCH 4.4 3/3] ALSA: control: use counting semaphore as write lock for ELEM_WRITE operation
Alexander Grund
From: Takashi Sakamoto <o-takashi@...>
In ALSA control interface, applications can execute two types of request for value of members on each element; ELEM_READ and ELEM_WRITE. In ALSA control core, these two requests are handled within read lock of a counting semaphore, therefore several processes can run to execute these two requests at the same time. This has an issue because ELEM_WRITE requests have an effect to change state of the target element. Concurrent access should be controlled for each of ELEM_READ/ELEM_WRITE case. This commit uses the counting semaphore as write lock for ELEM_WRITE requests, while use it as read lock for ELEM_READ requests. The state of a target element is maintained exclusively between ELEM_WRITE/ELEM_READ operations. There's a concern. If the counting semaphore is acquired for read lock in implementations of 'struct snd_kcontrol.put()' in each driver, this commit shall cause dead lock. As of v4.13-rc5, 'snd-mixer-oss.ko', 'snd-emu10k1.ko' and 'snd-soc-sst-atom-hifi2-platform.ko' includes codes for read locks, but these are not in a call graph from 'struct snd_kcontrol.put(). Therefore, this commit is safe. In current implementation, the same solution is applied for the other operations to element; e.g. ELEM_LOCK and ELEM_UNLOCK. There's another discussion about an overhead to maintain concurrent access to an element during operating the other elements on the same card instance, because the lock primitive is originally implemented to maintain a list of elements on the card instance. There's a substantial difference between per-element-list lock and per-element lock. Here, let me investigate another idea to add per-element lock to maintain the concurrent accesses with inquiry/change requests to an element. It's not so frequent for applications to operate members on elements, while adding a new lock primitive to structure increases memory footprint for all of element sets somehow. Experimentally, inquiry operation is more frequent than change operation and usage of counting semaphore for the inquiry operation brings no blocking to the other inquiry operations. Thus the overhead is not so critical for usual applications. For the above reasons, in this commit, the per-element lock is not introduced. Signed-off-by: Takashi Sakamoto <o-takashi@...> Signed-off-by: Takashi Iwai <tiwai@...> Signed-off-by: Alexander Grund <theflamefire89@...> --- sound/core/control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/core/control.c b/sound/core/control.c index 3ca81e85a1492..04b939df3768b 100644 --- a/sound/core/control.c +++ b/sound/core/control.c @@ -963,9 +963,9 @@ static int snd_ctl_elem_write_user(struct snd_ctl_file *file, snd_power_lock(card); result = snd_power_wait(card, SNDRV_CTL_POWER_D0); if (result >= 0) { - down_read(&card->controls_rwsem); + down_write(&card->controls_rwsem); result = snd_ctl_elem_write(card, file, control); - up_read(&card->controls_rwsem); + up_write(&card->controls_rwsem); } snd_power_unlock(card); if (result >= 0) -- 2.40.0 |
|
[PATCH 4.4 2/3] ALSA: control: Fix memory corruption risk in snd_ctl_elem_read
Alexander Grund
From: Richard Fitzgerald <rf@...>
commit 5a23699a39abc5328921a81b89383d088f6ba9cc upstream. The patch "ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations" introduced a potential for kernel memory corruption due to an incorrect if statement allowing non-readable controls to fall through and call the get function. For TLV controls a driver can omit SNDRV_CTL_ELEM_ACCESS_READ to ensure that only the TLV get function can be called. Instead the normal get() can be invoked unexpectedly and as the driver expects that this will only be called for controls <= 512 bytes, potentially try to copy >512 bytes into the 512 byte return array, so corrupting kernel memory. The problem is an attempt to refactor the snd_ctl_elem_read function to invert the logic so that it conditionally aborted if the control is unreadable instead of conditionally executing. But the if statement wasn't inverted correctly. The correct inversion of if (a && !b) is if (!a || b) Fixes: becf9e5d553c2 ("ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations") Signed-off-by: Richard Fitzgerald <rf@...> Cc: <stable@...> Signed-off-by: Takashi Iwai <tiwai@...> Signed-off-by: Greg Kroah-Hartman <gregkh@...> Signed-off-by: Alexander Grund <theflamefire89@...> --- sound/core/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/core/control.c b/sound/core/control.c index a042a30d6a728..3ca81e85a1492 100644 --- a/sound/core/control.c +++ b/sound/core/control.c @@ -884,7 +884,7 @@ static int snd_ctl_elem_read(struct snd_card *card, index_offset = snd_ctl_get_ioff(kctl, &control->id); vd = &kctl->vd[index_offset]; - if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_READ) && kctl->get == NULL) + if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_READ) || kctl->get == NULL) return -EPERM; snd_ctl_build_ioff(&control->id, kctl, index_offset); -- 2.40.0 |
|
[PATCH 4.4 1/3] ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations
Alexander Grund
From: Takashi Sakamoto <o-takashi@...>
ALSA control core handles ELEM_READ/ELEM_WRITE requests within lock acquisition of a counting semaphore. The lock is acquired in helper functions in the end of call path before calling implementations of each driver. ioctl(2) with SNDRV_CTL_ELEM_READ ... ->snd_ctl_ioctl() ->snd_ctl_elem_read_user() ->snd_ctl_elem_read() ->down_read(controls_rwsem) ->snd_ctl_find_id() ->struct snd_kcontrol.get() ->up_read(controls_rwsem) ioctl(2) with SNDRV_CTL_ELEM_WRITE ... ->snd_ctl_ioctl() ->snd_ctl_elem_write_user() ->snd_ctl_elem_write() ->down_read(controls_rwsem) ->snd_ctl_find_id() ->struct snd_kcontrol.put() ->up_read(controls_rwsem) This commit moves the lock acquisition to middle of the call graph to simplify the helper functions. As a result: ioctl(2) with SNDRV_CTL_ELEM_READ ... ->snd_ctl_ioctl() ->snd_ctl_elem_read_user() ->down_read(controls_rwsem) ->snd_ctl_elem_read() ->snd_ctl_find_id() ->struct snd_kcontrol.get() ->up_read(controls_rwsem) ioctl(2) with SNDRV_CTL_ELEM_WRITE ... ->snd_ctl_ioctl() ->snd_ctl_elem_write_user() ->down_read(controls_rwsem) ->snd_ctl_elem_write() ->snd_ctl_find_id() ->struct snd_kcontrol.put() ->up_read(controls_rwsem) Change-Id: I6b39209aaf08afcbeca7c759b77bc96c67db4c77 Signed-off-by: Takashi Sakamoto <o-takashi@...> Signed-off-by: Takashi Iwai <tiwai@...> Fixes: e8064dec769e6 "ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF" Signed-off-by: Alexander Grund <theflamefire89@...> --- sound/core/control.c | 78 +++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 40 deletions(-) diff --git a/sound/core/control.c b/sound/core/control.c index 43c8eac250b8a..a042a30d6a728 100644 --- a/sound/core/control.c +++ b/sound/core/control.c @@ -877,24 +877,18 @@ static int snd_ctl_elem_read(struct snd_card *card, struct snd_kcontrol *kctl; struct snd_kcontrol_volatile *vd; unsigned int index_offset; - int result; - down_read(&card->controls_rwsem); kctl = snd_ctl_find_id(card, &control->id); - if (kctl == NULL) { - result = -ENOENT; - } else { - index_offset = snd_ctl_get_ioff(kctl, &control->id); - vd = &kctl->vd[index_offset]; - if ((vd->access & SNDRV_CTL_ELEM_ACCESS_READ) && - kctl->get != NULL) { - snd_ctl_build_ioff(&control->id, kctl, index_offset); - result = kctl->get(kctl, control); - } else - result = -EPERM; - } - up_read(&card->controls_rwsem); - return result; + if (kctl == NULL) + return -ENOENT; + + index_offset = snd_ctl_get_ioff(kctl, &control->id); + vd = &kctl->vd[index_offset]; + if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_READ) && kctl->get == NULL) + return -EPERM; + + snd_ctl_build_ioff(&control->id, kctl, index_offset); + return kctl->get(kctl, control); } static int snd_ctl_elem_read_user(struct snd_card *card, @@ -909,8 +903,11 @@ static int snd_ctl_elem_read_user(struct snd_card *card, snd_power_lock(card); result = snd_power_wait(card, SNDRV_CTL_POWER_D0); - if (result >= 0) + if (result >= 0) { + down_read(&card->controls_rwsem); result = snd_ctl_elem_read(card, control); + up_read(&card->controls_rwsem); + } snd_power_unlock(card); if (result >= 0) if (copy_to_user(_control, control, sizeof(*control))) @@ -927,30 +924,28 @@ static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file, unsigned int index_offset; int result; - down_read(&card->controls_rwsem); kctl = snd_ctl_find_id(card, &control->id); - if (kctl == NULL) { - result = -ENOENT; - } else { - index_offset = snd_ctl_get_ioff(kctl, &control->id); - vd = &kctl->vd[index_offset]; - if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) || - kctl->put == NULL || - (file && vd->owner && vd->owner != file)) { - result = -EPERM; - } else { - snd_ctl_build_ioff(&control->id, kctl, index_offset); - result = kctl->put(kctl, control); - } - if (result > 0) { - struct snd_ctl_elem_id id = control->id; - up_read(&card->controls_rwsem); - snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &id); - return 0; - } + if (kctl == NULL) + return -ENOENT; + + index_offset = snd_ctl_get_ioff(kctl, &control->id); + vd = &kctl->vd[index_offset]; + if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) || kctl->put == NULL || + (file && vd->owner && vd->owner != file)) { + return -EPERM; } - up_read(&card->controls_rwsem); - return result; + + snd_ctl_build_ioff(&control->id, kctl, index_offset); + result = kctl->put(kctl, control); + if (result < 0) + return result; + + if (result > 0) { + struct snd_ctl_elem_id id = control->id; + snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &id); + } + + return 0; } static int snd_ctl_elem_write_user(struct snd_ctl_file *file, @@ -967,8 +962,11 @@ static int snd_ctl_elem_write_user(struct snd_ctl_file *file, card = file->card; snd_power_lock(card); result = snd_power_wait(card, SNDRV_CTL_POWER_D0); - if (result >= 0) + if (result >= 0) { + down_read(&card->controls_rwsem); result = snd_ctl_elem_write(card, file, control); + up_read(&card->controls_rwsem); + } snd_power_unlock(card); if (result >= 0) if (copy_to_user(_control, control, sizeof(*control))) -- 2.40.0 |
|
[PATCH 4.4 0/3] ALSA: control: Fix locking around snd_ctl_elem_read/write
Alexander Grund
I found a bug in v4.4-st38 caused by e8064dec769e6 "ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF"
The most serious part is a `down_write` call before calling `snd_ctl_elem_write` which will do a `down_read` on the same mutex causing a deadlock. I fix this by taking missing commits from 4.14.y, especially "ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations" which moves the locking out of those 2 functions such that the bug fixed by the above commit is actually introduced so that it can be fixed avoiding the deadlock. This also requires a follow-up commit to fix a bug introduced in a condition by that commit. The final commit replaces `down_read` by `down_write` in `snd_ctl_elem_write_user` similar to what e8064dec769e6 does in control_compat.c so that this use is uniform (and correct). Richard Fitzgerald (1): ALSA: control: Fix memory corruption risk in snd_ctl_elem_read Takashi Sakamoto (2): ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations ALSA: control: use counting semaphore as write lock for ELEM_WRITE operation sound/core/control.c | 78 +++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 40 deletions(-) -- 2.40.0 |
|
cip/linux-5.10.y-cip smc: 4 runs, 2 regressions (v5.10.176-cip30)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip smc: 4 runs, 2 regressions (v5.10.176-cip30)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.176-cip30/plan/smc/ Test: smc Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.176-cip30 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/plan/id/641d68b099481477869c9585 Results: 14 PASS, 2 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/smc-hp-x360-12b-ca0010nr-n4020-octopus.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/smc-hp-x360-12b-ca0010nr-n4020-octopus.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/x86/rootfs.cpio.gz * smc.CVE-2018-3639: https://kernelci.org/test/case/id/641d68b099481477869c9591 failing since 263 days (last pass: v5.10.125-cip10, first fail: v5.10.126-cip11) 2023-03-24T09:08:55.729874 <8>[ 10.376767] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=CVE-2018-3639 RESULT=fail> * smc.CVE-2018-3640: https://kernelci.org/test/case/id/641d68b099481477869c9592 failing since 263 days (last pass: v5.10.125-cip10, first fail: v5.10.126-cip11) 2023-03-24T09:08:55.716409 <8>[ 10.363178] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=CVE-2018-3640 RESULT=fail> |
|
cip/linux-5.10.y-cip ltp-timers: 14 runs, 6 regressions (v5.10.176-cip30)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip ltp-timers: 14 runs, 6 regressions (v5.10.176-cip30)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.176-cip30/plan/ltp-timers/ Test: ltp-timers Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.176-cip30 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Test suite revisions: ltp-tests URL: https://github.com/linux-test-project/ltp.git SHA: f3463a347c37b44bafdf4e882cfb932f6888905d Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/plan/id/641d6cab42154f828b9c96bc Results: 32 PASS, 4 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-asus-C523NA-A20057-coral.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-asus-C523NA-A20057-coral.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20230317.0/amd64/initrd.cpio.gz * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6cab42154f828b9c96c1 failing since 41 days (last pass: v5.10.165-cip25, first fail: v5.10.167-cip26) * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6cab42154f828b9c96c1 failing since 41 days (last pass: v5.10.165-cip25, first fail: v5.10.167-cip26) platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/plan/id/641d6f41527c987b149c95cd Results: 32 PASS, 4 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-hp-11A-G6-EE-grunt.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-hp-11A-G6-EE-grunt.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20230317.0/amd64/initrd.cpio.gz * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6f41527c987b149c95d2 failing since 140 days (last pass: v5.10.147-cip18, first fail: v5.10.147-cip18-12-gcb2b164780be) * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6f41527c987b149c95d2 failing since 140 days (last pass: v5.10.147-cip18, first fail: v5.10.147-cip18-12-gcb2b164780be) 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/641d714953f8c9ea0f9c9510 Results: 32 PASS, 4 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/ltp-timers-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/ltp-timers-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20230317.0/arm64/initrd.cpio.gz * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d714953f8c9ea0f9c9515 failing since 140 days (last pass: v5.10.147-cip18, first fail: v5.10.147-cip18-12-gcb2b164780be) * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d714953f8c9ea0f9c9515 failing since 140 days (last pass: v5.10.147-cip18, first fail: v5.10.147-cip18-12-gcb2b164780be) |
|
cip/linux-4.19.y-cip smc: 4 runs, 2 regressions (v4.19.279-cip95)
#kernelci
kernelci.org bot <bot@...>
cip/linux-4.19.y-cip smc: 4 runs, 2 regressions (v4.19.279-cip95)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-4.19.y-cip/kernel/v4.19.279-cip95/plan/smc/ Test: smc Tree: cip Branch: linux-4.19.y-cip Describe: v4.19.279-cip95 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: a166e121fe317e5b7a79c09a0ca641ca15cb61cf Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/plan/id/641d6745f1beceaae59c9536 Results: 14 PASS, 2 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//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/smc-hp-x360-12b-ca0010nr-n4020-octopus.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/smc-hp-x360-12b-ca0010nr-n4020-octopus.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/x86/rootfs.cpio.gz * smc.CVE-2018-3639: https://kernelci.org/test/case/id/641d6745f1beceaae59c9542 failing since 258 days (last pass: v4.19.249-cip76, first fail: v4.19.251-cip77) 2023-03-24T09:02:51.716747 <8>[ 11.984960] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=CVE-2018-3639 RESULT=fail> * smc.CVE-2018-3640: https://kernelci.org/test/case/id/641d6745f1beceaae59c9543 failing since 258 days (last pass: v4.19.249-cip76, first fail: v4.19.251-cip77) 2023-03-24T09:02:51.706661 <8>[ 11.974746] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=CVE-2018-3640 RESULT=fail> |
|
cip/linux-4.19.y-cip ltp-timers: 9 runs, 3 regressions (v4.19.279-cip95)
#kernelci
kernelci.org bot <bot@...>
cip/linux-4.19.y-cip ltp-timers: 9 runs, 3 regressions (v4.19.279-cip95)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-4.19.y-cip/kernel/v4.19.279-cip95/plan/ltp-timers/ Test: ltp-timers Tree: cip Branch: linux-4.19.y-cip Describe: v4.19.279-cip95 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: a166e121fe317e5b7a79c09a0ca641ca15cb61cf Test suite revisions: ltp-tests URL: https://github.com/linux-test-project/ltp.git SHA: f3463a347c37b44bafdf4e882cfb932f6888905d Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d6d0dc38e7e26659c954c 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//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-asus-C523NA-A20057-coral.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-asus-C523NA-A20057-coral.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20230317.0/amd64/initrd.cpio.gz * ltp-timers.login: https://kernelci.org/test/case/id/641d6d0dc38e7e26659c954d new failure (last pass: v4.19.277-cip94) platform | arch | lab | compiler | defconfig | regressions -------------------------+--------+---------------+----------+------------------------------+------------ hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 2 Details: https://kernelci.org/test/plan/id/641d6e93ca87f444999c9560 Results: 32 PASS, 4 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//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-hp-11A-G6-EE-grunt.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-timers-hp-11A-G6-EE-grunt.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20230317.0/amd64/initrd.cpio.gz * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6e93ca87f444999c9565 failing since 117 days (last pass: v4.19.259-cip82, first fail: v4.19.266-cip86) * ltp-timers.clock_settime: https://kernelci.org/test/case/id/641d6e93ca87f444999c9565 failing since 117 days (last pass: v4.19.259-cip82, first fail: v4.19.266-cip86) |
|
cip/linux-5.10.y-cip baseline: 136 runs, 23 regressions (v5.10.176-cip30)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip baseline: 136 runs, 23 regressions (v5.10.176-cip30)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ acer-cb317-1h-c3z6-dedede | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 fsl-ls1028a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 fsl-ls1088a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 fsl-lx2160a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | imx_v6_v7_defconfig | 1 imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 imx6sx-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 imx6ul-14x14-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 mt8173-elm-hana | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 4 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.176-cip30/plan/baseline/ Test: baseline Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.176-cip30 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ acer-cb317-1h-c3z6-dedede | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d67c7ded4d0bc259c9525 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-acer-cb317-1h-c3z6-dedede.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-acer-cb317-1h-c3z6-dedede.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/x86/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d67c7ded4d0bc259c952e failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:04:59.463114 <8>[ 11.772780] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759684_1.4.2.3.1> 2023-03-24T09:04:59.466752 + set +x 2023-03-24T09:04:59.568285 # 2023-03-24T09:04:59.669466 / # #export SHELL=/bin/sh 2023-03-24T09:04:59.669714 2023-03-24T09:04:59.770673 / # export SHELL=/bin/sh. /lava-9759684/environment 2023-03-24T09:04:59.770892 2023-03-24T09:04:59.871810 / # . /lava-9759684/environment/lava-9759684/bin/lava-test-runner /lava-9759684/1 2023-03-24T09:04:59.872132 2023-03-24T09:04:59.872205 / # <4>[ 12.122395] i2c_designware i2c_designware.2: timeout in disabling adapter ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d67dbd6f6a7ae759c9517 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-asus-C523NA-A20057-coral.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-asus-C523NA-A20057-coral.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/x86/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d67dbd6f6a7ae759c9520 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:05:11.694199 + set +x 2023-03-24T09:05:11.700991 <8>[ 10.279593] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759651_1.4.2.3.1> 2023-03-24T09:05:11.805719 / # # 2023-03-24T09:05:11.906792 export SHELL=/bin/sh 2023-03-24T09:05:11.907010 # 2023-03-24T09:05:12.007957 / # export SHELL=/bin/sh. /lava-9759651/environment 2023-03-24T09:05:12.008177 2023-03-24T09:05:12.109109 / # . /lava-9759651/environment/lava-9759651/bin/lava-test-runner /lava-9759651/1 2023-03-24T09:05:12.109394 2023-03-24T09:05:12.114085 / # /lava-9759651/bin/lava-test-runner /lava-9759651/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d68986b3e715b029c9558 Results: 47 PASS, 7 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-at91sam9g20ek.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-at91sam9g20ek.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d68986b3e715b029c9591 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:08:03.426020 + set +x 2023-03-24T09:08:03.431160 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 221044_1.5.2.4.1> 2023-03-24T09:08:03.545518 / # # 2023-03-24T09:08:03.648320 export SHELL=/bin/sh 2023-03-24T09:08:03.649164 # 2023-03-24T09:08:03.751131 / # export SHELL=/bin/sh. /lava-221044/environment 2023-03-24T09:08:03.751923 2023-03-24T09:08:03.853952 / # . /lava-221044/environment/lava-221044/bin/lava-test-runner /lava-221044/1 2023-03-24T09:08:03.855357 2023-03-24T09:08:03.860854 / # /lava-221044/bin/lava-test-runner /lava-221044/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6a60b125ed01a09c950e Results: 31 PASS, 15 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-broonie/baseline-beaglebone-black.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-broonie/baseline-beaglebone-black.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6a60b125ed01a09c953f failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:15:30.029041 <8>[ 18.571453] <LAVA_SIGNAL_ENDRUN 0_dmesg 221138_1.5.2.4.1> 2023-03-24T09:15:30.247645 / # # 2023-03-24T09:15:30.366256 export SHELL=/bin/sh 2023-03-24T09:15:30.376801 # 2023-03-24T09:15:30.382382 / # export SHELL=/bin/sh 2023-03-24T09:15:30.500422 / # . /lava-221138/environment 2023-03-24T09:15:30.614042 /lava-221138/bin/lava-test-runner /lava-221138/1 2023-03-24T09:15:30.623062 . /lava-221138/environment 2023-03-24T09:15:30.626770 / # /lava-221138/bin/lava-test-runner /lava-221138/1 2023-03-24T09:15:30.721021 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69ee347551c6219c95bf Results: 51 PASS, 4 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/omap2plus_defconfig/gcc-10/lab-broonie/baseline-beaglebone-black.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/omap2plus_defconfig/gcc-10/lab-broonie/baseline-beaglebone-black.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69ee347551c6219c95f7 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:14:13.106781 <8>[ 20.976871] <LAVA_SIGNAL_ENDRUN 0_dmesg 221163_1.5.2.4.1> 2023-03-24T09:14:13.214930 / # # 2023-03-24T09:14:13.317265 export SHELL=/bin/sh 2023-03-24T09:14:13.317905 # 2023-03-24T09:14:13.419556 / # export SHELL=/bin/sh. /lava-221163/environment 2023-03-24T09:14:13.420119 2023-03-24T09:14:13.521910 / # . /lava-221163/environment/lava-221163/bin/lava-test-runner /lava-221163/1 2023-03-24T09:14:13.522792 2023-03-24T09:14:13.527345 / # /lava-221163/bin/lava-test-runner /lava-221163/1 2023-03-24T09:14:13.631320 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ fsl-ls1028a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6b07a603abdd3c9c950a 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-ls1028a-rdb.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-ls1028a-rdb.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6b07a603abdd3c9c9511 failing since 10 days (last pass: v5.10.155-cip21, first fail: v5.10.173-cip28) 2023-03-24T09:18:44.701104 + [ 19.551654] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184979_1.5.2.4.1> 2023-03-24T09:18:44.701396 set +x 2023-03-24T09:18:44.807138 / # # 2023-03-24T09:18:44.908993 export SHELL=/bin/sh 2023-03-24T09:18:44.909456 # 2023-03-24T09:18:45.010839 / # export SHELL=/bin/sh. /lava-1184979/environment 2023-03-24T09:18:45.011326 2023-03-24T09:18:45.112725 / # . /lava-1184979/environment/lava-1184979/bin/lava-test-runner /lava-1184979/1 2023-03-24T09:18:45.113481 2023-03-24T09:18:45.115464 / # /lava-1184979/bin/lava-test-runner /lava-1184979/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ fsl-ls1088a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6b3665568019099c9510 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-ls1088a-rdb.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-ls1088a-rdb.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6b3665568019099c9517 failing since 69 days (last pass: v5.10.155-cip21, first fail: v5.10.162-cip24) 2023-03-24T09:19:15.419370 [ 9.602088] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184982_1.5.2.4.1> 2023-03-24T09:19:15.526860 / # # 2023-03-24T09:19:15.628713 export SHELL=/bin/sh 2023-03-24T09:19:15.629160 # 2023-03-24T09:19:15.730528 / # export SHELL=/bin/sh. /lava-1184982/environment 2023-03-24T09:19:15.731002 2023-03-24T09:19:15.832381 / # . /lava-1184982/environment/lava-1184982/bin/lava-test-runner /lava-1184982/1 2023-03-24T09:19:15.833134 2023-03-24T09:19:15.835056 / # /lava-1184982/bin/lava-test-runner /lava-1184982/1 2023-03-24T09:19:15.853065 + export 'TESTRUN_ID=1_bootrr' ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ fsl-lx2160a-rdb | arm64 | lab-nxp | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6aa4b11a397c449c950b 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-lx2160a-rdb.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-nxp/baseline-fsl-lx2160a-rdb.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6aa4b11a397c449c9512 failing since 2 days (last pass: v5.10.154-cip20, first fail: v5.10.175-cip29) 2023-03-24T09:17:02.419931 [ 10.750425] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184981_1.5.2.4.1> 2023-03-24T09:17:02.526228 / # # 2023-03-24T09:17:02.628292 export SHELL=/bin/sh 2023-03-24T09:17:02.628784 # 2023-03-24T09:17:02.730229 / # export SHELL=/bin/sh. /lava-1184981/environment 2023-03-24T09:17:02.730709 2023-03-24T09:17:02.832181 / # . /lava-1184981/environment/lava-1184981/bin/lava-test-runner /lava-1184981/1 2023-03-24T09:17:02.832979 2023-03-24T09:17:02.834758 / # /lava-1184981/bin/lava-test-runner /lava-1184981/1 2023-03-24T09:17:02.853429 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d696f5c7a83fa7c9c9505 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-imx6q-sabrelite.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-imx6q-sabrelite.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d696f5c7a83fa7c9c950e failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:56.556047 + set<8>[ 9.459078] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759705_1.5.2.4.1> 2023-03-24T09:11:56.556559 +x 2023-03-24T09:11:56.665576 / # # 2023-03-24T09:11:56.769027 export SHELL=/bin/sh 2023-03-24T09:11:56.769918 # 2023-03-24T09:11:56.872021 / # export SHELL=/bin/sh. /lava-9759705/environment 2023-03-24T09:11:56.872934 2023-03-24T09:11:56.974998 / # . /lava-9759705/environment/lava-9759705/bin/lava-test-runner /lava-9759705/1 2023-03-24T09:11:56.976426 2023-03-24T09:11:56.978460 / # /lava-9759705/bin/lava-test-runner /lava-9759705/1 ... (16 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | imx_v6_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6895beb5c49a849c9547 Results: 5 PASS, 1 FAIL, 1 SKIP Full config: imx_v6_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/imx_v6_v7_defconfig/gcc-10/lab-pengutronix/baseline-imx6qp-wandboard-revd1.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/imx_v6_v7_defconfig/gcc-10/lab-pengutronix/baseline-imx6qp-wandboard-revd1.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6895beb5c49a849c9550 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:08:30.992598 + set +x 2023-03-24T09:08:30.992798 [ 10.288616] <LAVA_SIGNAL_ENDRUN 0_dmesg 922336_1.5.2.3.1> 2023-03-24T09:08:31.101422 / # # 2023-03-24T09:08:31.203264 export SHELL=/bin/sh 2023-03-24T09:08:31.203823 # 2023-03-24T09:08:31.305183 / # export SHELL=/bin/sh. /lava-922336/environment 2023-03-24T09:08:31.305749 2023-03-24T09:08:31.407453 / # . /lava-922336/environment/lava-922336/bin/lava-test-runner /lava-922336/1 2023-03-24T09:08:31.408263 2023-03-24T09:08:31.411119 / # /lava-922336/bin/lava-test-runner /lava-922336/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx6qp-wandboard-revd1 | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69353ecc8ce3dc9c9529 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-pengutronix/baseline-imx6qp-wandboard-revd1.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-pengutronix/baseline-imx6qp-wandboard-revd1.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69353ecc8ce3dc9c9532 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:10.291142 + set[ 7.123898] <LAVA_SIGNAL_ENDRUN 0_dmesg 922337_1.5.2.3.1> 2023-03-24T09:11:10.291336 +x 2023-03-24T09:11:10.397617 / # # 2023-03-24T09:11:10.499296 export SHELL=/bin/sh 2023-03-24T09:11:10.499812 # 2023-03-24T09:11:10.601233 / # export SHELL=/bin/sh. /lava-922337/environment 2023-03-24T09:11:10.601795 2023-03-24T09:11:10.703216 / # . /lava-922337/environment/lava-922337/bin/lava-test-runner /lava-922337/1 2023-03-24T09:11:10.703948 2023-03-24T09:11:10.706309 / # /lava-922337/bin/lava-test-runner /lava-922337/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx6sx-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69b4ab52f9ecd99c952e 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx6sx-sdb.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx6sx-sdb.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69b4ab52f9ecd99c9535 failing since 69 days (last pass: v5.10.153-cip19-3-gc76f4e7e5c71, first fail: v5.10.162-cip24) 2023-03-24T09:12:49.411564 <8>[ 23.740286] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184970_1.5.2.4.1> 2023-03-24T09:12:49.517533 / # # 2023-03-24T09:12:50.677129 export SHELL=/bin/sh 2023-03-24T09:12:50.682748 # 2023-03-24T09:12:52.230054 / # export SHELL=/bin/sh. /lava-1184970/environment 2023-03-24T09:12:52.235724 2023-03-24T09:12:52.236049 / # . /lava-1184970/environment 2023-03-24T09:12:55.057911 / # /lava-1184970/bin/lava-test-runner /lava-1184970/1 2023-03-24T09:12:55.074539 /lava-1184970/bin/lava-test-runner /lava-1184970/1 2023-03-24T09:12:55.167989 + export 'TESTRUN_ID=1_bootrr' ... (19 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx6ul-14x14-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69af7022fd124a9c9528 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx6ul-14x14-evk.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx6ul-14x14-evk.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69b07022fd124a9c952f failing since 2 days (last pass: v5.10.145-cip17, first fail: v5.10.175-cip29) 2023-03-24T09:12:51.910915 + set +x 2023-03-24T09:12:51.912021 <8>[ 29.130491] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184969_1.5.2.4.1> 2023-03-24T09:12:52.021585 2023-03-24T09:12:53.180950 / # #export SHELL=/bin/sh 2023-03-24T09:12:53.186628 2023-03-24T09:12:53.186967 / # export SHELL=/bin/sh 2023-03-24T09:12:54.733765 . /lava-1184969/environment 2023-03-24T09:12:57.560557 / # . /lava-1184969/environment/lava-1184969/bin/lava-test-runner /lava-1184969/1 2023-03-24T09:12:57.566563 2023-03-24T09:12:57.566839 / # /lava-1184969/bin/lava-test-runner /lava-1184969/1 ... (18 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx7d-sdb | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69872226fdcc519c9517 Results: 4 PASS, 2 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx7d-sdb.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx7d-sdb.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69872226fdcc519c951e failing since 69 days (last pass: v5.10.155-cip21, first fail: v5.10.162-cip24) 2023-03-24T09:12:14.351191 / # # 2023-03-24T09:12:15.510808 export SHELL=/bin/sh 2023-03-24T09:12:15.516513 # 2023-03-24T09:12:17.064075 / # export SHELL=/bin/sh. /lava-1184973/environment 2023-03-24T09:12:17.069790 2023-03-24T09:12:19.892590 / # . /lava-1184973/environment/lava-1184973/bin/lava-test-runner /lava-1184973/1 2023-03-24T09:12:19.898480 2023-03-24T09:12:19.905668 / # /lava-1184973/bin/lava-test-runner /lava-1184973/1 2023-03-24T09:12:19.998555 + export 'TESTRUN_ID=1_bootrr' 2023-03-24T09:12:19.998839 + cd /lava-1184973/1/tests/1_bootrr ... (18 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69c37022fd124a9c9543 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx7ulp-evk.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-nxp/baseline-imx7ulp-evk.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69c37022fd124a9c954a failing since 10 days (last pass: v5.10.155-cip21, first fail: v5.10.173-cip28) 2023-03-24T09:13:07.589399 + set +x<8>[ 28.964878] <LAVA_SIGNAL_ENDRUN 0_dmesg 1184971_1.5.2.4.1> 2023-03-24T09:13:07.589662 2023-03-24T09:13:07.699104 / # # 2023-03-24T09:13:08.858542 export SHELL=/bin/sh 2023-03-24T09:13:08.864206 # 2023-03-24T09:13:08.864494 / # export SHELL=/bin/sh 2023-03-24T09:13:10.411986 / # . /lava-1184971/environment 2023-03-24T09:13:13.239171 /lava-1184971/bin/lava-test-runner /lava-1184971/1 2023-03-24T09:13:13.245227 . /lava-1184971/environment 2023-03-24T09:13:13.245505 / # /lava-1184971/bin/lava-test-runner /lava-1184971/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ mt8173-elm-hana | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d6c670ea1c9c1939c9583 Results: 28 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-mt8173-elm-hana.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-mt8173-elm-hana.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6c670ea1c9c1939c95a3 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:24:46.499461 <8>[ 15.652020] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=pass UNITS=lines MEASUREMENT=0> 2023-03-24T09:24:46.500179 + set +x 2023-03-24T09:24:46.505402 <8>[ 15.661632] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759753_1.5.2.3.1> 2023-03-24T09:24:46.614665 # 2023-03-24T09:24:46.616018 2023-03-24T09:24:46.718574 / # #export SHELL=/bin/sh 2023-03-24T09:24:46.719565 2023-03-24T09:24:46.821780 / # export SHELL=/bin/sh. /lava-9759753/environment 2023-03-24T09:24:46.822670 2023-03-24T09:24:46.924775 / # . /lava-9759753/environment/lava-9759753/bin/lava-test-runner /lava-9759753/1 ... (17 line(s) more) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ rk3288-veyron-jaq | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 4 Details: https://kernelci.org/test/plan/id/641d69705c7a83fa7c9c9513 Results: 63 PASS, 7 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-rk3288-veyron-jaq.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-rk3288-veyron-jaq.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69705c7a83fa7c9c9544 failing since 67 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:34.296186 + <8>[ 11.431861] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759710_1.5.2.3.1> 2023-03-24T09:11:34.298084 set +x 2023-03-24T09:11:34.405694 2023-03-24T09:11:34.508300 / # #export SHELL=/bin/sh 2023-03-24T09:11:34.509115 2023-03-24T09:11:34.611139 / # export SHELL=/bin/sh. /lava-9759710/environment 2023-03-24T09:11:34.611972 2023-03-24T09:11:34.714142 / # . /lava-9759710/environment/lava-9759710/bin/lava-test-runner /lava-9759710/1 2023-03-24T09:11:34.715482 2023-03-24T09:11:34.717415 / # /lava-9759710/bin/lava-test-runner /lava-9759710/1 ... (18 line(s) more) * baseline.bootrr.dwhdmi-rockchip-driver-i2c-present: https://kernelci.org/test/case/id/641d69705c7a83fa7c9c9548 failing since 67 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:46.394825 FIRST,<8>[ 23.520801] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-driver-cec-present RESULT=fail> 2023-03-24T09:11:46.396239 INC default to 1. 2023-03-24T09:11:46.396696 2023-03-24T09:11:46.400011 -w Pad to last with leading zeros 2023-03-24T09:11:46.402625 -s SEP String separator 2023-03-24T09:11:46.406066 /lava-9759710/1/../bin/lava-test-case 2023-03-24T09:11:46.412692 BusyBox v1.31.1 (2023-03-10 17:51:43 UTC) multi-call binary. 2023-03-24T09:11:46.412903 * baseline.bootrr.dwhdmi-rockchip-driver-cec-present: https://kernelci.org/test/case/id/641d69705c7a83fa7c9c9549 failing since 67 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:46.370742 BusyBox v1.31.1 (2023-03-10 17:51:43 UTC)<8>[ 23.501621] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-driver-audio-present RESULT=fail> 2023-03-24T09:11:46.374052 multi-call binary. 2023-03-24T09:11:46.374291 2023-03-24T09:11:46.378613 Usage: seq [-w] [-s SEP] [FIRST [INC]] LAST 2023-03-24T09:11:46.379069 2023-03-24T09:11:46.383810 Print numbers from FIRST to LAST, in steps of INC. * baseline.bootrr.dwhdmi-rockchip-driver-audio-present: https://kernelci.org/test/case/id/641d69705c7a83fa7c9c954a failing since 67 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:11:46.351812 <8>[ 23.483928] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwhdmi-rockchip-probed RESULT=pass> 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/641d6c9842154f828b9c9505 Results: 84 PASS, 2 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.rockchip-usb2phy1-probed: https://kernelci.org/test/case/id/641d6c9842154f828b9c950f failing since 2 days (last pass: v5.10.173-cip28, first fail: v5.10.175-cip29) 2023-03-24T09:25:22.439772 /lava-9759759/1/../bin/lava-test-case 2023-03-24T09:25:22.451150 <8>[ 34.900493] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy1-probed RESULT=fail> * baseline.bootrr.rockchip-usb2phy0-probed: https://kernelci.org/test/case/id/641d6c9842154f828b9c9510 failing since 2 days (last pass: v5.10.173-cip28, first fail: v5.10.175-cip29) 2023-03-24T09:25:21.405337 /lava-9759759/1/../bin/lava-test-case 2023-03-24T09:25:21.415970 <8>[ 33.865365] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6c0db28b0179209c9562 Results: 36 PASS, 9 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-sun50i-a64-pine64-plus.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-sun50i-a64-pine64-plus.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6c0db28b0179209c9592 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:22:53.213115 + set +x 2023-03-24T09:22:53.217268 <8>[ 17.214399] <LAVA_SIGNAL_ENDRUN 0_dmesg 221182_1.5.2.4.1> 2023-03-24T09:22:53.327767 / # # 2023-03-24T09:22:53.429833 export SHELL=/bin/sh 2023-03-24T09:22:53.430283 # 2023-03-24T09:22:53.531792 / # export SHELL=/bin/sh. /lava-221182/environment 2023-03-24T09:22:53.532434 2023-03-24T09:22:53.635190 / # . /lava-221182/environment/lava-221182/bin/lava-test-runner /lava-221182/1 2023-03-24T09:22:53.636732 2023-03-24T09:22:53.640321 / # /lava-221182/bin/lava-test-runner /lava-221182/1 ... (12 line(s) more) |
|
cip/linux-5.10.y-cip baseline-nfs: 45 runs, 11 regressions (v5.10.176-cip30)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip baseline-nfs: 45 runs, 11 regressions (v5.10.176-cip30)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ acer-cb317-1h-c3z6-dedede | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.176-cip30/plan/baseline-nfs/ Test: baseline-nfs Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.176-cip30 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ acer-cb317-1h-c3z6-dedede | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d67d0c63aa93cf59c9505 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-nfs-acer-cb317-1h-c3z6-dedede.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-nfs-acer-cb317-1h-c3z6-dedede.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/amd64/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d67d0c63aa93cf59c950e failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:05:12.058892 <8>[ 18.856711] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759623_1.5.2.3.1> 2023-03-24T09:05:12.062198 + set +x 2023-03-24T09:05:12.167639 / # # 2023-03-24T09:05:12.268676 export SHELL=/bin/sh 2023-03-24T09:05:12.268873 # 2023-03-24T09:05:12.369864 / # export SHELL=/bin/sh. /lava-9759623/environment 2023-03-24T09:05:12.370063 2023-03-24T09:05:12.471011 / # . /lava-9759623/environment/lava-9759623/bin/lava-test-runner /lava-9759623/1 2023-03-24T09:05:12.471318 2023-03-24T09:05:12.476979 / # /lava-9759623/bin/lava-test-runner /lava-9759623/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C523NA-A20057-coral | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d67fa1cbd2c116e9c952c 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//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-nfs-asus-C523NA-A20057-coral.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/baseline-nfs-asus-C523NA-A20057-coral.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/amd64/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d67fa1cbd2c116e9c9535 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:05:41.267077 + set +x 2023-03-24T09:05:41.272920 <8>[ 20.447346] <LAVA_SIGNAL_ENDRUN 0_dmesg 9759637_1.5.2.3.1> 2023-03-24T09:05:41.385128 2023-03-24T09:05:41.487632 / # #export SHELL=/bin/sh 2023-03-24T09:05:41.488545 2023-03-24T09:05:41.590632 / # export SHELL=/bin/sh. /lava-9759637/environment 2023-03-24T09:05:41.591562 2023-03-24T09:05:41.693656 / # . /lava-9759637/environment/lava-9759637/bin/lava-test-runner /lava-9759637/1 2023-03-24T09:05:41.695103 2023-03-24T09:05:41.697147 / # /lava-9759637/bin/lava-test-runner /lava-9759637/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6ba39c5b0060939c952c Results: 47 PASS, 7 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-nfs-at91sam9g20ek.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-nfs-at91sam9g20ek.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/armel/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6ba39c5b0060939c9561 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:21:04.789425 + set +x 2023-03-24T09:21:04.909758 # 2023-03-24T09:21:05.012702 / # #export SHELL=/bin/sh 2023-03-24T09:21:05.013541 2023-03-24T09:21:05.115476 / # export SHELL=/bin/sh. /lava-221043/environment 2023-03-24T09:21:05.116262 2023-03-24T09:21:05.218394 / # . /lava-221043/environment/lava-221043/bin/lava-test-runner /lava-221043/1 2023-03-24T09:21:05.219743 2023-03-24T09:21:05.226570 / # /lava-221043/bin/lava-test-runner /lava-221043/1 2023-03-24T09:21:05.640616 + export TESTRUN_ID=1_bootrr ... (10 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6a2b6af705aec79c957e Results: 31 PASS, 15 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-broonie/baseline-nfs-beaglebone-black.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-broonie/baseline-nfs-beaglebone-black.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/armhf/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6a2b6af705aec79c95af failing since 69 days (last pass: v5.10.158-cip22, first fail: v5.10.162-cip24) 2023-03-24T09:14:24.927272 [ 57.221861] <LAVA_SIGNAL_ENDRUN 0_dmesg 221131_1.6.2.4.1> 2023-03-24T09:14:25.051738 / # # 2023-03-24T09:14:25.154722 export SHELL=/bin/sh 2023-03-24T09:14:25.155447 # 2023-03-24T09:14:25.257655 / # export SHELL=/bin/sh. /lava-221131/environment 2023-03-24T09:14:25.258355 2023-03-24T09:14:25.360917 / # . /lava-221131/environment/lava-221131/bin/lava-test-runner /lava-221131/1 2023-03-24T09:14:25.362122 2023-03-24T09:14:25.366599 / # /lava-221131/bin/lava-test-runner /lava-221131/1 2023-03-24T09:14:25.591489 + export TESTRUN_ID=1_bootrr ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6a68b125ed01a09c9544 Results: 51 PASS, 4 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/omap2plus_defconfig/gcc-10/lab-broonie/baseline-nfs-beaglebone-black.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/omap2plus_defconfig/gcc-10/lab-broonie/baseline-nfs-beaglebone-black.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/armhf/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6a68b125ed01a09c957d failing since 51 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.165-cip25) 2023-03-24T09:15:50.230436 + set +x 2023-03-24T09:15:50.234171 <8>[ 46.015000] <LAVA_SIGNAL_ENDRUN 0_dmesg 221165_1.6.2.4.1> 2023-03-24T09:15:50.359733 / # # 2023-03-24T09:15:50.462752 export SHELL=/bin/sh 2023-03-24T09:15:50.463474 # 2023-03-24T09:15:50.565647 / # export SHELL=/bin/sh. /lava-221165/environment 2023-03-24T09:15:50.566924 2023-03-24T09:15:50.669836 / # . /lava-221165/environment/lava-221165/bin/lava-test-runner /lava-221165/1 2023-03-24T09:15:50.670987 2023-03-24T09:15:50.675621 / # /lava-221165/bin/lava-test-runner /lava-221165/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ imx6q-sabrelite | arm | lab-collabora | gcc-10 | multi_v7_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d69897201396b699c9557 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-nfs-imx6q-sabrelite.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm/multi_v7_defconfig/gcc-10/lab-collabora/baseline-nfs-imx6q-sabrelite.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/armhf/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d69897201396b699c9560 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:12:23.183983 / # # 2023-03-24T09:12:23.286660 export SHELL=/bin/sh 2023-03-24T09:12:23.287521 # 2023-03-24T09:12:23.389420 / # export SHELL=/bin/sh. /lava-9759714/environment 2023-03-24T09:12:23.389699 2023-03-24T09:12:23.490803 / # . /lava-9759714/environment/lava-9759714/bin/lava-test-runner /lava-9759714/1 2023-03-24T09:12:23.492083 2023-03-24T09:12:23.496802 / # /lava-9759714/bin/lava-test-runner /lava-9759714/1 2023-03-24T09:12:23.624522 + export TESTRUN_ID=1_bootrr 2023-03-24T09:12:23.671184 + cd /lava-9759714/1/tests/1_bootrr ... (14 line(s) more) 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/641d6c5d5ac88eb00d9c950c 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-nfs-meson-gxl-s905x-libretech-cc.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-nfs-meson-gxl-s905x-libretech-cc.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/arm64/initrd.cpio.gz * baseline-nfs.login: https://kernelci.org/test/case/id/641d6c5d5ac88eb00d9c950d new failure (last pass: v5.10.175-cip29) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/641d6e3e80960a17869c951b 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-nfs-meson-gxl-s905x-libretech-cc.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-nfs-meson-gxl-s905x-libretech-cc.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/arm64/initrd.cpio.gz * baseline-nfs.login: https://kernelci.org/test/case/id/641d6e3e80960a17869c951c failing since 10 days (last pass: v5.10.168-cip27, first fail: v5.10.173-cip28) 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/641d6ca442154f828b9c965d Results: 84 PASS, 2 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-nfs-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-nfs-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/arm64/initrd.cpio.gz * baseline-nfs.bootrr.rockchip-usb2phy1-probed: https://kernelci.org/test/case/id/641d6ca442154f828b9c9667 failing since 2 days (last pass: v5.10.173-cip28, first fail: v5.10.175-cip29) 2023-03-24T09:25:35.552081 [ 38.094051] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> 2023-03-24T09:25:36.616187 /lava-9759765/1/../bin/lava-test-case * baseline-nfs.bootrr.rockchip-usb2phy0-probed: https://kernelci.org/test/case/id/641d6ca442154f828b9c9668 failing since 2 days (last pass: v5.10.173-cip28, first fail: v5.10.175-cip29) 2023-03-24T09:25:34.435564 [ 36.976760] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy-driver-present RESULT=pass> 2023-03-24T09:25:35.510580 /lava-9759765/1/../bin/lava-test-case platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6dca18412896769c9514 Results: 36 PASS, 9 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//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-nfs-sun50i-a64-pine64-plus.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.176-cip30/arm64/defconfig/gcc-10/lab-broonie/baseline-nfs-sun50i-a64-pine64-plus.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/arm64/initrd.cpio.gz * baseline-nfs.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d6dca18412896769c9544 failing since 69 days (last pass: v5.10.158-cip22-7-g92462fd9830b, first fail: v5.10.162-cip24) 2023-03-24T09:30:24.290734 <8>[ 56.105359] <LAVA_SIGNAL_ENDRUN 0_dmesg 221203_1.6.2.4.1> 2023-03-24T09:30:24.457919 / # # 2023-03-24T09:30:24.560144 export SHELL=/bin/sh 2023-03-24T09:30:24.560833 # 2023-03-24T09:30:24.662362 / # export SHELL=/bin/sh. /lava-221203/environment 2023-03-24T09:30:24.662801 2023-03-24T09:30:24.764180 / # . /lava-221203/environment/lava-221203/bin/lava-test-runner /lava-221203/1 2023-03-24T09:30:24.765122 2023-03-24T09:30:24.769223 / # /lava-221203/bin/lava-test-runner /lava-221203/1 2023-03-24T09:30:25.045171 + export TESTRUN_ID=1_bootrr ... (11 line(s) more) |
|
cip/linux-4.19.y-cip baseline-nfs: 38 runs, 2 regressions (v4.19.279-cip95)
#kernelci
kernelci.org bot <bot@...>
cip/linux-4.19.y-cip baseline-nfs: 38 runs, 2 regressions (v4.19.279-cip95)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-4.19.y-cip/kernel/v4.19.279-cip95/plan/baseline-nfs/ Test: baseline-nfs Tree: cip Branch: linux-4.19.y-cip Describe: v4.19.279-cip95 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: a166e121fe317e5b7a79c09a0ca641ca15cb61cf Test Regressions ---------------- 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/641d661af9593ecfb29c951c Results: 77 PASS, 5 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-nfs-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-nfs-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20230317.0/arm64/initrd.cpio.gz * baseline-nfs.bootrr.rockchip-usb2phy1-probed: https://kernelci.org/test/case/id/641d661af9593ecfb29c9526 failing since 2 days (last pass: v4.19.276-cip93, first fail: v4.19.277-cip94) 2023-03-24T08:57:55.677260 /lava-9759469/1/../bin/lava-test-case * baseline-nfs.bootrr.rockchip-usb2phy0-probed: https://kernelci.org/test/case/id/641d661af9593ecfb29c9527 failing since 2 days (last pass: v4.19.276-cip93, first fail: v4.19.277-cip94) 2023-03-24T08:57:53.589415 <8>[ 37.548272] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy-driver-present RESULT=pass> 2023-03-24T08:57:54.619050 /lava-9759469/1/../bin/lava-test-case 2023-03-24T08:57:54.645230 <8>[ 38.604774] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> |
|
cip/linux-4.19.y-cip baseline: 129 runs, 22 regressions (v4.19.279-cip95)
#kernelci
kernelci.org bot <bot@...>
cip/linux-4.19.y-cip baseline: 129 runs, 22 regressions (v4.19.279-cip95)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | multi_v5_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 | cip://4.19.y-...64_defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | cip://4.19.y-...64_defconfig | 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 r8a7743-iwg20d-q7 | arm | lab-cip | gcc-10 | shmobile_defconfig | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details: https://kernelci.org/test/job/cip/branch/linux-4.19.y-cip/kernel/v4.19.279-cip95/plan/baseline/ Test: baseline Tree: cip Branch: linux-4.19.y-cip Describe: v4.19.279-cip95 URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: a166e121fe317e5b7a79c09a0ca641ca15cb61cf 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/641d676ad1fbaffb789c9564 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-at91sam9g20ek.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm/multi_v5_defconfig/gcc-10/lab-broonie/baseline-at91sam9g20ek.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.bootrr.deferred-probe-empty: https://kernelci.org/test/case/id/641d676ad1fbaffb789c9598 failing since 10 days (last pass: v4.19.273-cip92, first fail: v4.19.276-cip93) 2023-03-24T09:02:59.569950 + set +x 2023-03-24T09:02:59.575113 <8><LAVA_SIGNAL_ENDRUN 0_dmesg 221010_1.5.2.4.1> 2023-03-24T09:02:59.688352 / # # 2023-03-24T09:02:59.791172 export SHELL=/bin/sh 2023-03-24T09:02:59.791970 # 2023-03-24T09:02:59.893915 / # export SHELL=/bin/sh. /lava-221010/environment 2023-03-24T09:02:59.894700 2023-03-24T09:02:59.996637 / # . /lava-221010/environment/lava-221010/bin/lava-test-runner /lava-221010/1 2023-03-24T09:02:59.997982 2023-03-24T09:03:00.004356 / # /lava-221010/bin/lava-test-runner /lava-221010/1 ... (12 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/641d661894de16edae9c9523 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d661894de16edae9c9524 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d67954e90e653139c950b 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d67954e90e653139c950c failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d660994de16edae9c950c 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d660994de16edae9c950d failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d66d83948329e159c950d 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d66d83948329e159c950e failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d661a537bd5083e9c950a 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d661a537bd5083e9c950b failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d67bcf76ec4d3539c9539 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv2-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d67bcf76ec4d3539c953a failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d660ad1543ee8909c9551 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d660ad1543ee8909c9552 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d66f9ee5c446a8e9c951d 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d66f9ee5c446a8e9c951e failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | cip://4.19.y-...64_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d6a002969ec235a9c950c Results: 0 PASS, 1 FAIL, 0 SKIP Full config: cip://4.19.y-cip/arm64/qemu_arm64_defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/cip---4.19.y-cip-arm64-qemu_arm64_defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/cip---4.19.y-cip-arm64-qemu_arm64_defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d6a002969ec235a9c950d failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | cip://4.19.y-...64_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d68eddf362876de9c9567 Results: 0 PASS, 1 FAIL, 0 SKIP Full config: cip://4.19.y-cip/arm64/qemu_arm64_defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/cip---4.19.y-cip-arm64-qemu_arm64_defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/cip---4.19.y-cip-arm64-qemu_arm64_defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d68eddf362876de9c9568 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d661994de16edae9c9529 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d661994de16edae9c952a failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d6796f7b2ba024c9c9513 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d6796f7b2ba024c9c9514 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/641d65fb0430887c0b9c95a9 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d65fb0430887c0b9c95aa failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d66eb8e6904b7119c950a 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d66eb8e6904b7119c950b failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d661b5bc834d2e49c9506 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d661b5bc834d2e49c9507 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d67944e90e653139c9505 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-broonie/baseline-qemu_arm64-virt-gicv3-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d67944e90e653139c9506 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d660b94de16edae9c9512 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d660b94de16edae9c9513 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) 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/641d66d73d0458c7859c9546 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//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d66d73d0458c7859c9547 failing since 213 days (last pass: v4.19.226-cip66, first fail: v4.19.255-cip79) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+------------------------------+------------ r8a7743-iwg20d-q7 | arm | lab-cip | gcc-10 | shmobile_defconfig | 1 Details: https://kernelci.org/test/plan/id/641d64eb2583474c7d9c9517 Results: 0 PASS, 1 FAIL, 0 SKIP Full config: shmobile_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm/shmobile_defconfig/gcc-10/lab-cip/baseline-r8a7743-iwg20d-q7.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm/shmobile_defconfig/gcc-10/lab-cip/baseline-r8a7743-iwg20d-q7.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/armel/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/641d64eb2583474c7d9c9518 failing since 41 days (last pass: v4.19.271-cip90, first fail: v4.19.272-cip91) 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/641d65f40430887c0b9c9514 Results: 77 PASS, 5 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-4.19.y-cip/v4.19.279-cip95/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230310.0/arm64/rootfs.cpio.gz * baseline.bootrr.rockchip-usb2phy1-probed: https://kernelci.org/test/case/id/641d65f40430887c0b9c951e failing since 2 days (last pass: v4.19.276-cip93, first fail: v4.19.277-cip94) 2023-03-24T08:57:20.865816 /lava-9759454/1/../bin/lava-test-case * baseline.bootrr.rockchip-usb2phy0-probed: https://kernelci.org/test/case/id/641d65f40430887c0b9c951f failing since 2 days (last pass: v4.19.276-cip93, first fail: v4.19.277-cip94) 2023-03-24T08:57:19.839819 /lava-9759454/1/../bin/lava-test-case 2023-03-24T08:57:19.848793 <8>[ 36.285544] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> |
|
cip/linux-5.10.y-cip build: 114 builds: 0 failed, 114 passed, 4 warnings (v5.10.176-cip30)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip build: 114 builds: 0 failed, 114 passed, 4 warnings (v5.10.176-cip30)
Full Build Summary: https://kernelci.org/build/cip/branch/linux-5.10.y-cip/kernel/v5.10.176-cip30/ Tree: cip Branch: linux-5.10.y-cip Git Describe: v5.10.176-cip30 Git Commit: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git Built: 4 unique architectures Warnings Detected: arm64: arm: riscv: rv32_defconfig (gcc-10): 4 warnings x86_64: Warnings summary: 2 <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp] 2 <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp] Section mismatches summary: 1 WARNING: modpost: vmlinux.o(___ksymtab_gpl+ixp4xx_irq_init+0x0): Section mismatch in reference from the variable __ksymtab_ixp4xx_irq_init to the function .init.text:ixp4xx_irq_init() ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://5.10.y-cip/arm/qemu_arm_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://5.10.y-cip/arm64/qemu_arm64_defconfig (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://5.10.y-cip/riscv/qemu_riscv64_defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://5.10.y-cip/x86/cip_qemu_defconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- defconfig+kselftest (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- dove_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gemini_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h5000_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hackkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imote2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v4_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- integrator_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop32x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(___ksymtab_gpl+ixp4xx_irq_init+0x0): Section mismatch in reference from the variable __ksymtab_ixp4xx_irq_init to the function .init.text:ixp4xx_irq_init() -------------------------------------------------------------------------------- jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- keystone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpd270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- milbeaut_m10v_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mini2440_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mmp2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- moxart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v4t_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mxs_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- neponset_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netwinder_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nhk8815_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 -------------------------------------------------------------------------------- omap1_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 -------------------------------------------------------------------------------- orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- oxnas_v6_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rv32_defconfig (riscv, gcc-10) — PASS, 0 errors, 4 warnings, 0 section mismatches Warnings: <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp] <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp] <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp] <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp] -------------------------------------------------------------------------------- s3c2410_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c6400_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s5pv210_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sama5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shmobile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- simpad_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- socfpga_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear6xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spitz_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- stm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sunxi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tango4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- trizeps4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- u300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- u8500_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vf610m4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vt8500_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig+kselftest (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- xcep_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zeus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches --- For more info write to <info@...> |
|
cip/linux-4.19.y-cip build: 122 builds: 0 failed, 122 passed, 23 warnings (v4.19.279-cip95)
#kernelci
kernelci.org bot <bot@...>
cip/linux-4.19.y-cip build: 122 builds: 0 failed, 122 passed, 23 warnings (v4.19.279-cip95)
Full Build Summary: https://kernelci.org/build/cip/branch/linux-4.19.y-cip/kernel/v4.19.279-cip95/ Tree: cip Branch: linux-4.19.y-cip Git Describe: v4.19.279-cip95 Git Commit: a166e121fe317e5b7a79c09a0ca641ca15cb61cf Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git Built: 3 unique architectures Warnings Detected: arm64: cip://4.19.y-cip/arm64/qemu_arm64_defconfig (gcc-10): 3 warnings defconfig (gcc-10): 3 warnings defconfig+arm64-chromebook (gcc-10): 3 warnings defconfig+kselftest (gcc-10): 3 warnings arm: omap1_defconfig (gcc-10): 1 warning x86_64: allnoconfig (gcc-10): 2 warnings cip://4.19.y-cip/x86/cip_qemu_defconfig (gcc-10): 2 warnings x86_64_defconfig (gcc-10): 2 warnings x86_64_defconfig+kselftest (gcc-10): 2 warnings x86_64_defconfig+x86-chromebook (gcc-10): 2 warnings Warnings summary: 12 aarch64-linux-gnu-ld: warning: -z norelro ignored 5 ld: warning: creating DT_TEXTREL in a PIE 5 ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' 1 drivers/gpio/gpio-omap.c:1233:34: warning: array ‘omap_gpio_match’ assumed to have one element Section mismatches summary: 15 WARNING: modpost: Found 1 section mismatch(es). ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- acs5k_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- acs5k_tiny_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://4.19.y-cip/arm/qemu_arm_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cip://4.19.y-cip/arm64/qemu_arm64_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). -------------------------------------------------------------------------------- cip://4.19.y-cip/x86/cip_qemu_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 -------------------------------------------------------------------------------- cm_x2xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- 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). -------------------------------------------------------------------------------- defconfig+kselftest (arm64, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches Warnings: aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored aarch64-linux-gnu-ld: warning: -z norelro ignored Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- dove_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- em_x270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gemini_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h5000_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hackkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imote2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v4_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- integrator_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- iop13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop32x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- iop33x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- keystone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ks8695_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpd270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mini2440_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mmp2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- moxart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v4t_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- multi_v7_defconfig+kselftest (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mvebu_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mxs_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- neponset_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netwinder_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- netx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nhk8815_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- nuc910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc950_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nuc960_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- omap1_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/gpio/gpio-omap.c:1233:34: warning: array ‘omap_gpio_match’ assumed to have one element -------------------------------------------------------------------------------- omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- oxnas_v6_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- raumfeld_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c2410_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- s3c6400_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- s5pv210_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- sama5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shmobile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- simpad_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- socfpga_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- spear3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- spear6xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- spitz_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- stm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- sunxi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tango4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- trizeps4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- u300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- u8500_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: Found 1 section mismatch(es). -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vf610m4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vt8500_v6_v7_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+kselftest (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 2 warnings, 0 section mismatches Warnings: ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text' ld: warning: creating DT_TEXTREL in a PIE -------------------------------------------------------------------------------- xcep_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zeus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- zx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches --- For more info write to <info@...> |
|
[ANNOUNCE] Release v4.19.279-cip95 and v5.10.176-cip30
Nobuhiro Iwamatsu
Hi all,
CIP kernel team has released Linux kernel v4.19.279-cip95 and v5.10.176-cip30. The linux-4.19.y-cip tree has been updated base version from v4.19.277 to v4.19.279, and the linux-5.10.y-cip tree has been updated base version from v5.10.175 to v5.10.176. You can get this release via the git tree at: v4.19.279-cip95: repository: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git branch: linux-4.19.y-cip commit hash: a166e121fe317e5b7a79c09a0ca641ca15cb61cf Fixed CVEs: None added commits: CIP: Bump version suffix to -cip95 after merge from stable v5.10.176-cip30: repository: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git branch: linux-5.10.y-cip commit hash: 530cf8a4dace471f6e04e5887f4993ba1fcd3109 Fixed CVEs: None added commits: CIP: Bump version suffix to -cip30 after merge from stable Best regards, Nobuhiro |
|
Re: [ANNOUNCE] Release v4.4.302-cip73
Nobuhiro Iwamatsu
Hi Uli,
toggle quoted message
Show quoted text
Could you update linux-4.4.y-cip-rebase tree? https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git/log/?h=linux-4.4.y-cip-rebase This tree manages the -cip tree source code rebased from v4.4.y. This time we need to rebase from v4.4-st38. Best regards, Nobuhiro -----Original Message----- |
|
ALSA: pcm: Broken commit in v4.4-st38
Alexander Grund
Hi,
I found a bug in v4.4-st38 caused by e8064dec769e6e0822e179107d0b5b3d2e03e181 "ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF" 1) It introduces down_read/up_read around a call to snd_ctl_elem_read however that is superflous: snd_ctl_elem_read already does that, so the commit 56b88b50565c referenced by the above is already included 2) down_write/up_write around snd_ctl_elem_write causes a deadlock because snd_ctl_elem_write does a down_read at the start. The latter is probably (another) bug likely caused by missing upstream commit becf9e5d553c2389d857a3c178ce80fdb34a02e1 "ALSA: control: code refactoring for ELEM_READ/ELEM_WRITE operations " which removes that lock. Maybe that should be included here too, it also removes the locking in snd_ctl_elem_read which means 1) is no longer superflous Best, Alexander Grund |
|
[isar-cip-core][PATCH 0/3] Enable TPM-based encrypted data partition also for qemu-arm/arm64
Jan Kiszka
Simple follow-up to the already existing enabling for x86, so I think we
can safely squeeze this after rc1 and before final 1.0. Jan Jan Kiszka (3): linux-cip: Bump cip-kernel-config revision kconfig: Allow to select encryption also for qemu-arm and qemu-arm64 start-qemu: Add TPM support also for arm and arm64 Kconfig | 2 +- recipes-kernel/linux/linux-cip-common.inc | 2 +- start-qemu.sh | 8 +++++++- 3 files changed, 9 insertions(+), 3 deletions(-) -- 2.35.3 |
|
[isar-cip-core][PATCH 1/3] linux-cip: Bump cip-kernel-config revision
Jan Kiszka
From: Jan Kiszka <jan.kiszka@...>
This brings TPM/encryption support for qemu-arm/arm64 and fixes mqueues on some arm targets. Signed-off-by: Jan Kiszka <jan.kiszka@...> --- recipes-kernel/linux/linux-cip-common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/linux/linux-cip-common.inc b/recipes-kernel/linux/linux-cip-common.inc index 6dda973a..2d878a1d 100644 --- a/recipes-kernel/linux/linux-cip-common.inc +++ b/recipes-kernel/linux/linux-cip-common.inc @@ -23,6 +23,6 @@ SRC_URI:append = " ${@ "git://gitlab.com/cip-project/cip-kernel/cip-kernel-confi if d.getVar('USE_CIP_KERNEL_CONFIG') == '1' else '' \ }" -SRCREV_cip-kernel-config ?= "351538952cfa7c6336e83bf66ca4f3bbdc06f89b" +SRCREV_cip-kernel-config ?= "0188d9a54615767c00b77116146409edfa35497c" S = "${WORKDIR}/linux-cip-${PV}" -- 2.35.3 |
|
[isar-cip-core][PATCH 2/3] kconfig: Allow to select encryption also for qemu-arm and qemu-arm64
Jan Kiszka
From: Jan Kiszka <jan.kiszka@...>
This is now possible with latest kernel configs. Signed-off-by: Jan Kiszka <jan.kiszka@...> --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index e1e187f9..630cd78d 100644 --- a/Kconfig +++ b/Kconfig @@ -195,7 +195,7 @@ config KAS_INCLUDE_SWUPDATE_SECBOOT config IMAGE_DATA_ENCRYPTION bool "Encrypt data partitions on first boot" - depends on TARGET_QEMU_AMD64 + depends on TARGET_QEMU_AMD64 || TARGET_QEMU_ARM64 || TARGET_QEMU_ARM select IMAGE_SECURE_BOOT help This enables LUKS encryption for the partitions /var and /home. -- 2.35.3 |
|