Re: CIP IRC weekly meeting today on libera.chat
Pavel Machek
Hi!
Kindly be reminded to attend the weekly meeting through IRC to discuss... IMPORTANT NOTE: I'm unfortunately not able to run the meeting myselfAfter DST shift, 13 UTC is not really great time for me, either. 12 UTC would be better, 9 or 10 UTC would be even better. I don't propose shifting today's meeting, but should we talk about shift? Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
|
|
Re: 5.10.110-rc2 mirroring/testing
Chris Paterson
Hello Pavel,
From: Jan Kiszka <jan.kiszka@...>As Jan hinted, the mirroring has stopped because the linux-stable-rc repository has now gone over the 10GB size limit. I guess we could remove all the branches/tags we don't care about, then protect the branches we do care about (LTS) and configure GitLab to only mirror protected branches? Hopefully that'll reduce the size a lot and mirroring will work again. Chris Maybe the problem is rather this:
|
|
CIP IRC weekly meeting today on libera.chat
Jan Kiszka
Hi all,
Kindly be reminded to attend the weekly meeting through IRC to discuss technical topics with CIP kernel today. Our channel is the following: irc:irc.libera.chat:6667/cip The IRC meeting is scheduled to UTC (GMT) 13:00: https://www.timeanddate.com/worldclock/meetingdetails.html?year=2022&month=4&day=7&hour=13&min=0&sec=0&p1=224&p2=179&p3=136&p4=37&p5=241&p6=248 USWest USEast UK DE TW JP 06:00 09:00 14:00 15:00 21:00 22:00 Last meeting minutes: https://ircbot.wl.linuxfoundation.org/meetings/cip/2022/03/cip.2022-03-17-13.00.log.html * Action items 1. Resolve/filter irrelevant failures of KernelCI for 4.4-cip - patersonc & alicefm * Kernel maintenance updates * Kernel testing * AOB IMPORTANT NOTE: I'm unfortunately not able to run the meeting myself today due to an appointment conflict (damn DST...). Could someone else from the kernel team take over again? Thanks in advance. Jan
|
|
Re: 5.10.110-rc2 mirroring/testing
Jan Kiszka
On 07.04.22 00:06, Pavel Machek wrote:
Hi!Maybe the problem is rather this: https://gitlab.com/groups/cip-project/-/usage_quotas#storage-quota-tab Already linux-stable-rc uses 11G by now. Jan -- Siemens AG, Technology Competence Center Embedded Linux
|
|
New CVE entries this week
Masami Ichikawa
Hi !
It's this week's CVE report. This week reported 11 new CVEs and 1 updated CVE. There are three can/usb driver bugs and three ax25 protocol bugs. * New CVEs CVE-2021-3714: Remote Page Deduplication Attacks CVSS v3 score is not provided Red hat bugzilla describes that an attacker can leak information via this issue. Fixed status Not fixed yet. CVE-2022-1198: use-after-free in drivers/net/hamradio/6pack.c CVSS v3 score is not provided An UAF bug was found in drivers/net/hamradio/6pack.c . An attacker is able to crash system by this vulnerability. This bug looks to exist in 5.10, 4.19, and 4.4 kernels. However, backpoting this patch requires fixing conflicts. Fixed status mainline: [efe4186e6a1b54bf38b9e05450d43b0da1fd7739] stable/5.16: [4356343fb70c899901bce33acedf4fede797d21f] CVE-2022-1199: Null pointer dereference and use-after-free in ax25_release() CVSS v3 score is not provided An UAF bug was found in net/ax25/af_ax25.c. An attacker is able to crash system by this vulnerability. Patches were merged in the mainline by following order. 2022-03-09: ax25: Fix NULL pointer dereference in ax25_kill_by_device(71171ac8eb34ce7fe6b3267dce27c313ab3cb3ac) 2022-02-09: ax25: fix NPD bug in ax25_disconnect(7ec02f5ac8a5be5a3f20611731243dc5e1d9ba10) 2022-01-28: ax25: improve the incomplete fix to avoid UAF and NPD bugs(4e0f718daf97d47cf7dec122da1be970f145c809) Commit 7ec02f5 ("fix NPD bug in ax25_disconnect") changed releasing order to sock struct to avoid NULL pointer dereference if sk is NULL. - release_sock(sk); ax25_disconnect(s, ENETUNREACH); + release_sock(sk); However, commit 71171ac ("ax25: Fix NULL pointer dereference in ax25_kill_by_device") added NULL pointer check before releasing sock struct. + if (!sk) { + spin_unlock_bh(&ax25_list_lock); + s->ax25_dev = NULL; + ax25_disconnect(s, ENETUNREACH); + spin_lock_bh(&ax25_list_lock); + goto again; + } So, it looks like commit 7ec02f5 ("fix NPD bug in ax25_disconnect") is not needed to fix this CVE to older kernels. Additionally commit 7ec02f5 is the route cause of CVE-2022-1205. v4.4 looks to be affected by this CVE. Fixed status mainline: [4e0f718daf97d47cf7dec122da1be970f145c809, 7ec02f5ac8a5be5a3f20611731243dc5e1d9ba10, 71171ac8eb34ce7fe6b3267dce27c313ab3cb3ac] stable/4.19: [3072e72814de56f3c674650a8af98233ddf78b19, 5ab8de9377edde3eaf1de9872e2f01d43157cd6c] stable/4.9: [851901d339b2ba766ffcf754d37a6f52fa07cea2, cad71f1094834eb69f7ceec8100d300c26b43053] stable/5.10: [b9a229fd48bfa45edb954c75a57e3931a3da6c5f, e2201ef32f933944ee02e59205adb566bafcdf91] CVE-2022-1204: UAF caused by binding operation when ax25 device is detaching CVSS v3 score is not provided An UAF bug was found in net/ax25/af_ax25.c. An attacker is able to crash system by this vulnerability. Patches were merged in the following order. 2022-03-29: ax25: fix UAF bug in ax25_send_control(5352a761308397a0e6250fdc629bb3f615b94747) fixes 9fd75b6 2022-03-21: ax25: Fix refcount leaks caused by ax25_cb_del(9fd75b66b8f68498454d685dc4ba13192ae069b0) fixes d01ffb9, 87563a0, and feef318 2022-02-09: ax25: fix UAF bugs of net_device caused by rebinding operation(feef318c855a361a1eccd880f33e88c460eb63b4) 2022-02-03: ax25: fix reference count leaks of ax25_dev(87563a043cef044fed5db7967a75741cc16ad2b1) fixes d01ffb9 2022-01-28: ax25: add refcount in ax25_dev to avoid UAF bugs(d01ffb9eee4af165d83b08dd73ebdf9fe94a519b) It looks like the route cause is commit d01ffb ("ax25: add refcount in ax25_dev to avoid UAF bugs"). It was merged in 5.17-rc3. This commit isn't backported to stable kernels. So, stable kernels seem not to be affected by this CVE. Fixed status mainline: [d01ffb9eee4af165d83b08dd73ebdf9fe94a519b, 87563a043cef044fed5db7967a75741cc16ad2b1, feef318c855a361a1eccd880f33e88c460eb63b4, 9fd75b66b8f68498454d685dc4ba13192ae069b0, 5352a761308397a0e6250fdc629bb3f615b94747] CVE-2022-1205: Null pointer dereference and use-after-free in net/ax25/ax25_timer.c CVSS v3 score is not provided A Null pointer dereference and use after free in net/ax25/ax25_timer.c. An attacker is able to crash the system by this vulnerability. This bug was introduced by commit 7ec02f5 ("ax25: fix NPD bug in ax25_disconnect") which was merged in 5.17-rc4. This commit isn't backported to stable kernels so that this bug only affects the mainline kernel. Fixed status mainline: [fc6d01ff9ef03b66d4a3a23b46fc3c3d8cf92009, 82e31755e55fbcea6a9dfaae5fe4860ade17cbc0] CVE-2022-28356: llc: fix netdevice reference leaks in llc_ui_bind() CVSS v3 score is not provided A refcount leak bug was found in net/llc/af_llc.c. This bug was introduced before git era. Patch can be applied to 4.4-st. Fixed status mainline: [764f4eb6846f5475f1244767d24d25dd86528a4a] stable/4.14: [0f294bc04be87f1c9e1d1a908db9fcc84ce94210] stable/4.19: [d14193111c436fc5de33206c67c7afd45c730099] stable/4.9: [0a7aad979bfb43c4a78d33a5f356caf4ceb28bca] stable/5.10: [571df3393f523b59cba87e2f3e80a3a624030f9c] stable/5.15: [e9072996108387ab19b497f5b557c93f98d96b0b] stable/5.16: [6f5bf395c60ed2643de51f2b1041cb0882e9d97f] stable/5.17: [ef1a6fe3563cf47ce4fd555727ca80085cf18884] stable/5.4: [572f9a0d3f3feb8bd3422e88ad71882bc034b3ff] CVE-2022-28388: can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path CVSS v3 score is not provided A double free bug was found in usb_8dev_start_xmit() in drivers/net/can/usb/usb_8dev.c. Applying this fix to 4.4, it needs to modify the patch to fix conflict. Fixed status mainline: [3d3925ff6433f98992685a9679613a2cc97f3ce2] CVE-2022-28389: can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path CVSS v3 score is not provided A double free bug in mcba_usb_start_xmit() in drivers/net/can/usb/mcba_usb.c. This bug was introduced by commit 51f3baa ("can: mcba_usb: Add support for Microchip CAN BUS Analyzer") which was merged in 4.12-rc1. So, 4.9 and 4.4 kernels aren't affected by this issue. Fixed status mainline: [04c9b00ba83594a29813d6b1fb8fdc93a3915174] CVE-2022-28390: can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path CVSS v3 score is not provided A double free bug in ems_usb_start_xmit() in drivers/net/can/usb/ems_usb.c. This patch can be applied to 4.4.y without any errors. Fixed status mainline: [c70222752228a62135cee3409dccefd494a24646] CVE-2021-39802: The most severe vulnerability in this section could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation CVSS v3 score is not provided ac44888: Revert "FROMGIT: mm: improve mprotect(R|W) efficiency on pages referenced once" b44e46b: FROMGIT: mm: improve mprotect(R|W) efficiency on pages referenced once 67d075d: Revert "FROMGIT: mm: improve mprotect(R|W) efficiency on pages referenced once" 6f9aba5: FROMGIT: mm: improve mprotect(R|W) efficiency on pages referenced once Commit ac44888 reverts b44e46b and commit 67d075d reverts 6f9aba5. These commits aren't in the mainline. It seems as if this vulnerability android kernel specific. Fixed status Fixed in android kernel CVE-2021-0707: dmabuf: fix use-after-free of dmabuf's file->f_inode CVSS v3 score is not provided An UAF bug was found in dma_buf_release(). This bug was introduced by commit 4ab59c3 ("dma-buf: Move dma_buf_release() from fops to dentry_ops") which was merged in v5.8-rc4. The commit 4ab59c3 ("dma-buf: Move dma_buf_release() from fops to dentry_ops") fixes bb2bb90 ("dma-buf: add DMA_BUF_SET_NAME ioctls") which was merged in 5.3-rc1. Therefore, kernel 4.4, 4.9, and 4.19 are not affected by this vulnerability. This vulnerability was fixed in 5.11-rc3. The mainline and stable kernels are fixed. Fixed status mainline: [05cd84691eafcd7959a1e120d5e72c0dd98c5d91] stable/5.10: [a19dae4254c434a1ac8937a809fe08fd15ad3be5] stable/5.4: [ef8133b1b47ed67873c291e9248fafd428d1767d] * Updated CVEs CVE-2021-33061: Intel(R) 82599 Ethernet Controllers and Adapters may allow an authenticated user to potentially enable denial of service via local access Fixed in 5.18-rc1. This patch can't be applied to 4.4.y because it modifies ixgbe_priv_flags_strings(), ixgbe_get_priv_flags(), and ixgbe_set_priv_flags() in drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c but 4.4.y doesn't have these functions and drivers/net/ethernet/intel/ixgbe/ixgbe.h doesn't contain IXGBE_FLAG2_ macros in it. Fixed status mainline: [008ca35f6e87be1d60b6af3d1ae247c6d5c2531d] Currently tracking CVEs CVE-2021-31615: Unencrypted Bluetooth Low Energy baseband links in Bluetooth Core Specifications 4.0 through 5.2 There is no fix information. CVE-2020-26556: kernel: malleable commitment Bluetooth Mesh Provisioning No fix information. CVE-2020-26557: kernel: predictable Authvalue in Bluetooth Mesh Provisioning Leads to MITM No fix information. CVE-2020-26559: kernel: Authvalue leak in Bluetooth Mesh Provisioning No fix information. CVE-2020-26560: kernel: impersonation attack in Bluetooth Mesh Provisioning No fix information. Regards, -- Masami Ichikawa Cybertrust Japan Co., Ltd. Email :masami.ichikawa@... :masami.ichikawa@...
|
|
5.10.110-rc2 mirroring/testing
Pavel Machek
Hi!
5.10.110-rc2 is out, and it would be good to test it, but somehow we are still at -rc1...? https://gitlab.com/cip-project/cip-testing/linux-stable-rc-ci/-/tree/linux-5.10.y Does mirroring need to be kicked again? Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
|
|
Re: [PATCH 5.10.y-cip 26/29] thermal/drivers: Add TSU driver for RZ/G2L
Lad Prabhakar
Hi Pavel,
toggle quoted messageShow quoted text
Thank you for the review.
-----Original Message-----Agreed. Cheers, Prabhakar Best regards,
|
|
Re: [PATCH 5.10.y-cip 23/29] clk: renesas: r9a07g044: Rename CLK_PLL3_DIV4 macro
Lad Prabhakar
Hi Pavel,
toggle quoted messageShow quoted text
Thank you for the review.
-----Original Message-----thanks for the eagle eye, yes the change was intended. Cheers, Prabhakar Best regards,
|
|
Re: [PATCH 5.10.y-cip 11/29] watchdog: Add Watchdog Timer driver for RZ/G2L
Lad Prabhakar
Hi Pavel,
toggle quoted messageShow quoted text
Thank you for the review.
-----Original Message-----Agreed. Right, for upstream the patch has been already sent out once its part of -rc release I will backport it to CIP.+ ret = pm_runtime_resume_and_get(&pdev->dev);ERR_PTR(ret)); Cheers, Prabhakar Best regards,
|
|
cip/linux-5.10.y-cip ltp-mm: 6 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip ltp-mm: 6 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+----------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/ltp-mm/ Test: ltp-mm Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test suite revisions: ltp-tests URL: https://github.com/linux-test-project/ltp.git SHA: 163cca9acb71d06492836a667a53554ceec37639 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+----------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/624cf13f7bb7c7fe97ae067e 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig/gcc-10/lab-cip/ltp-mm-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig/gcc-10/lab-cip/ltp-mm-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/arm64/initrd.cpio.gz * ltp-mm.login: https://kernelci.org/test/case/id/624cf13f7bb7c7fe97ae067f failing since 84 days (last pass: v5.10.83-cip1-74-g842fbb4554b8, first fail: v5.10.83-cip1-89-ga7f9ee34265b) platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+----------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/624cf53c2a12fe1949ae06ac 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/ltp-mm-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/ltp-mm-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/arm64/initrd.cpio.gz * ltp-mm.login: https://kernelci.org/test/case/id/624cf53c2a12fe1949ae06ad failing since 84 days (last pass: v5.10.83-cip1-74-g842fbb4554b8, first fail: v5.10.83-cip1-89-ga7f9ee34265b)
|
|
cip/linux-5.10.y-cip ltp-pty: 5 runs, 4 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip ltp-pty: 5 runs, 4 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/ltp-pty/ Test: ltp-pty Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test suite revisions: ltp-tests URL: https://github.com/linux-test-project/ltp.git SHA: 163cca9acb71d06492836a667a53554ceec37639 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details: https://kernelci.org/test/plan/id/624ceedb39ab88c10bae06af 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-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-pty-asus-C433TA-AJ0005-rammus.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook/gcc-10/lab-collabora/ltp-pty-asus-C433TA-AJ0005-rammus.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/amd64/initrd.cpio.gz * ltp-pty.login: https://kernelci.org/test/case/id/624ceedb39ab88c10bae06b0 failing since 7 days (last pass: v5.10.83-cip1-151-ga4163710a1dc, first fail: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig | 1 Details: https://kernelci.org/test/plan/id/624cec641091904bbaae067c 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig/gcc-10/lab-cip/ltp-pty-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig/gcc-10/lab-cip/ltp-pty-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/arm64/initrd.cpio.gz * ltp-pty.login: https://kernelci.org/test/case/id/624cec641091904bbaae067d failing since 7 days (last pass: v5.10.83-cip1-178-g2cf1d12aab81, first fail: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/624cf4ea35f0a06f3dae0693 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/ltp-pty-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/ltp-pty-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/arm64/initrd.cpio.gz * ltp-pty.login: https://kernelci.org/test/case/id/624cf4ea35f0a06f3dae0694 failing since 7 days (last pass: v5.10.83-cip1-178-g2cf1d12aab81, first fail: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/624cf2565729f8dbb5ae0685 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/ltp-pty-rk3399-gru-kevin.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/ltp-pty-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-ltp/20220401.0/arm64/initrd.cpio.gz * ltp-pty.login: https://kernelci.org/test/case/id/624cf2565729f8dbb5ae0686 failing since 7 days (last pass: v5.10.83-cip1-178-g2cf1d12aab81, first fail: v5.10.106-cip4)
|
|
cip/linux-5.10.y-cip kselftest-seccomp: 5 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip kselftest-seccomp: 5 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...ok+kselftest | 1 hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...ok+kselftest | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/kselftest-seccomp/ Test: kselftest-seccomp Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ asus-C433TA-AJ0005-rammus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...ok+kselftest | 1 Details: https://kernelci.org/test/plan/id/624cef6d81cfdf861cae067c Results: 83 PASS, 4 FAIL, 8 SKIP Full config: x86_64_defconfig+x86-chromebook+kselftest 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.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook+kselftest/gcc-10/lab-collabora/kselftest-seccomp-asus-C433TA-AJ0005-rammus.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook+kselftest/gcc-10/lab-collabora/kselftest-seccomp-asus-C433TA-AJ0005-rammus.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-kselftest/20220401.0/amd64/initrd.cpio.gz * kselftest-seccomp.seccomp_seccomp_bpf_TSYNC_siblings_fail_prctl: https://kernelci.org/test/case/id/624cef6d81cfdf861cae0683 failing since 7 days (last pass: v5.10.100-cip2, first fail: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions --------------------------+--------+---------------+----------+------------------------------+------------ hp-11A-G6-EE-grunt | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...ok+kselftest | 1 Details: https://kernelci.org/test/plan/id/624cfe2571f87ff4a5ae0681 Results: 83 PASS, 4 FAIL, 8 SKIP Full config: x86_64_defconfig+x86-chromebook+kselftest 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.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook+kselftest/gcc-10/lab-collabora/kselftest-seccomp-hp-11A-G6-EE-grunt.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/x86_64/x86_64_defconfig+x86-chromebook+kselftest/gcc-10/lab-collabora/kselftest-seccomp-hp-11A-G6-EE-grunt.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-kselftest/20220401.0/amd64/initrd.cpio.gz * kselftest-seccomp.seccomp_seccomp_bpf_TSYNC_siblings_fail_prctl: https://kernelci.org/test/case/id/624cfe2571f87ff4a5ae0688 failing since 7 days (last pass: v5.10.100-cip2, first fail: v5.10.106-cip4)
|
|
cip/linux-5.10.y-cip kselftest-lkdtm: 4 runs, 1 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip kselftest-lkdtm: 4 runs, 1 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+---------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+kselftest | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/kselftest-lkdtm/ Test: kselftest-lkdtm Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+---------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+kselftest | 1 Details: https://kernelci.org/test/plan/id/624cf9edd46d0adfbfae079f Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+kselftest 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+kselftest/gcc-10/lab-cip/kselftest-lkdtm-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+kselftest/gcc-10/lab-cip/kselftest-lkdtm-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-kselftest/20220401.0/arm64/initrd.cpio.gz * kselftest-lkdtm.login: https://kernelci.org/test/case/id/624cf9edd46d0adfbfae07a0 new failure (last pass: v5.10.106-cip4)
|
|
cip/linux-5.10.y-cip kselftest-lib: 5 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip kselftest-lib: 5 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm...ok+kselftest | 1 r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+kselftest | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/kselftest-lib/ Test: kselftest-lib Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+arm...ok+kselftest | 1 Details: https://kernelci.org/test/plan/id/624cf76bd338548509ae067f Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook+kselftest 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook+kselftest/gcc-10/lab-cip/kselftest-lib-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook+kselftest/gcc-10/lab-cip/kselftest-lib-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-kselftest/20220401.0/arm64/initrd.cpio.gz * kselftest-lib.login: https://kernelci.org/test/case/id/624cf76bd338548509ae0680 new failure (last pass: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions -------------------------+-------+---------+----------+------------------------------+------------ r8a774a1-hihope-rzg2m-ex | arm64 | lab-cip | gcc-10 | defconfig+kselftest | 1 Details: https://kernelci.org/test/plan/id/624cf7bbef2381d592ae06b0 Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+kselftest 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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+kselftest/gcc-10/lab-cip/kselftest-lib-r8a774a1-hihope-rzg2m-ex.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+kselftest/gcc-10/lab-cip/kselftest-lib-r8a774a1-hihope-rzg2m-ex.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye-kselftest/20220401.0/arm64/initrd.cpio.gz * kselftest-lib.login: https://kernelci.org/test/case/id/624cf7bbef2381d592ae06b1 new failure (last pass: v5.10.106-cip4)
|
|
cip/linux-5.10.y-cip baseline: 66 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip baseline: 66 runs, 2 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ beaglebone-black | arm | lab-cip | gcc-10 | omap2plus_defconfig | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/baseline/ Test: baseline Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ beaglebone-black | arm | lab-cip | gcc-10 | omap2plus_defconfig | 1 Details: https://kernelci.org/test/plan/id/624ceb93f52450e009ae067c Results: 0 PASS, 1 FAIL, 0 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm/omap2plus_defconfig/gcc-10/lab-cip/baseline-beaglebone-black.txt HTML log: https://storage.kernelci.org//cip/linux-5.10.y-cip/v5.10.106-cip4-66-gc8c4cc5cdb54c/arm/omap2plus_defconfig/gcc-10/lab-cip/baseline-beaglebone-black.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20220401.0/armel/rootfs.cpio.gz * baseline.login: https://kernelci.org/test/case/id/624ceb93f52450e009ae067d new failure (last pass: v5.10.106-cip4) platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/624cef32df45b54390ae06af Results: 90 PASS, 2 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.106-cip4-66-gc8c4cc5cdb54c/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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20220401.0/arm64/rootfs.cpio.gz * baseline.bootrr.rockchip-i2s1-probed: https://kernelci.org/test/case/id/624cef32df45b54390ae06d1 failing since 7 days (last pass: v5.10.83-cip1-178-g2cf1d12aab81, first fail: v5.10.106-cip4) 2022-04-06T01:38:33.873576 /lava-6033354/1/../bin/lava-test-case 2022-04-06T01:38:33.883716 <8>[ 33.819328] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s1-probed RESULT=fail>
|
|
cip/linux-5.10.y-cip baseline-nfs: 14 runs, 1 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip baseline-nfs: 14 runs, 1 regressions (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/job/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/plan/baseline-nfs/ Test: baseline-nfs Tree: cip Branch: linux-5.10.y-cip Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git SHA: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details: https://kernelci.org/test/plan/id/624cedbe79c8e7862eae067c Results: 84 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.106-cip4-66-gc8c4cc5cdb54c/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.106-cip4-66-gc8c4cc5cdb54c/arm64/defconfig+arm64-chromebook/gcc-10/lab-collabora/baseline-nfs-rk3399-gru-kevin.html Rootfs: http://storage.kernelci.org/images/rootfs/debian/bullseye/20220401.0/arm64/initrd.cpio.gz * baseline-nfs.bootrr.rockchip-i2s1-probed: https://kernelci.org/test/case/id/624cedbe79c8e7862eae06d1 failing since 7 days (last pass: v5.10.83-cip1-178-g2cf1d12aab81, first fail: v5.10.106-cip4) 2022-04-06T01:32:23.034200 <8>[ 95.858192] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s0-probed RESULT=pass> 2022-04-06T01:32:24.069590 /lava-6033347/1/../bin/lava-test-case
|
|
cip/linux-5.10.y-cip build: 189 builds: 3 failed, 186 passed, 4 errors, 10 warnings (v5.10.106-cip4-66-gc8c4cc5cdb54c)
#kernelci
kernelci.org bot <bot@...>
cip/linux-5.10.y-cip build: 189 builds: 3 failed, 186 passed, 4 errors, 10 warnings (v5.10.106-cip4-66-gc8c4cc5cdb54c)
Full Build Summary: https://kernelci.org/build/cip/branch/linux-5.10.y-cip/kernel/v5.10.106-cip4-66-gc8c4cc5cdb54c/ Tree: cip Branch: linux-5.10.y-cip Git Describe: v5.10.106-cip4-66-gc8c4cc5cdb54c Git Commit: c8c4cc5cdb54c5d2534c7533f0cd8a10adff3ba0 Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git Built: 7 unique architectures Build Failures Detected: arm: rpc_defconfig: (gcc-10) FAIL mips: ip27_defconfig: (gcc-10) FAIL ip28_defconfig: (gcc-10) FAIL Errors and Warnings Detected: arc: arm64: arm: rpc_defconfig (gcc-10): 4 errors i386: mips: 32r2el_defconfig (gcc-10): 1 warning decstation_64_defconfig (gcc-10): 1 warning decstation_defconfig (gcc-10): 1 warning decstation_r4k_defconfig (gcc-10): 1 warning lemote2f_defconfig (gcc-10): 1 warning rm200_defconfig (gcc-10): 1 warning riscv: rv32_defconfig (gcc-10): 4 warnings x86_64: Errors summary: 2 arm-linux-gnueabihf-gcc: error: unrecognized -march target: armv3m 2 arm-linux-gnueabihf-gcc: error: missing argument to ‘-march=’ Warnings summary: 3 kernel/rcu/tasks.h:707:13: warning: ‘show_rcu_tasks_rude_gp_kthread’ defined but not used [-Wunused-function] 2 <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp] 2 <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp] 1 net/mac80211/mlme.c:4343:1: warning: the frame size of 1040 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1 drivers/block/paride/bpck.c:32: warning: "PC" redefined 1 WARNING: modpost: Symbol info of vmlinux is missing. Unresolved symbol check will be entirely skipped. Section mismatches summary: 1 WARNING: modpost: vmlinux.o(.text+0xd040): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xce9c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcda4): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcd38): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcb84): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcb74): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcb6c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcb4c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xcaa8): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xc8ec): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0xb904): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0x8054): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() 1 WARNING: modpost: vmlinux.o(.text+0x7670): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() ================================================================================ Detailed per-defconfig build reports: -------------------------------------------------------------------------------- 32r2el_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: WARNING: modpost: Symbol info of vmlinux is missing. Unresolved symbol check will be entirely skipped. -------------------------------------------------------------------------------- allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- allnoconfig (i386, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ar7_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcb6c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath25_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ath79_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- axs103_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcd38): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm47xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bcm63xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bigsur_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_be_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- bmips_stb_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- capcella_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cavium_octeon_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0x7670): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- ci20_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cobalt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xb904): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cu1000-neo_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- cu1830-neo_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- decstation_64_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: kernel/rcu/tasks.h:707:13: warning: ‘show_rcu_tasks_rude_gp_kthread’ defined but not used [-Wunused-function] -------------------------------------------------------------------------------- decstation_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: kernel/rcu/tasks.h:707:13: warning: ‘show_rcu_tasks_rude_gp_kthread’ defined but not used [-Wunused-function] -------------------------------------------------------------------------------- decstation_r4k_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: kernel/rcu/tasks.h:707:13: warning: ‘show_rcu_tasks_rude_gp_kthread’ defined but not used [-Wunused-function] -------------------------------------------------------------------------------- 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+arm64-chromebook+kselftest (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 -------------------------------------------------------------------------------- e55_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0x8054): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- fuloong2e_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gcw0_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gemini_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- gpr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcb84): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- 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 Section mismatches: WARNING: modpost: vmlinux.o(.text+0xce9c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- haps_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- haps_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- hsdk_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- i386_defconfig (i386, gcc-10) — PASS, 0 errors, 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 -------------------------------------------------------------------------------- ip22_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip27_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip28_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ip32_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jazz_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jmr3927_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcaa8): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- 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 Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcb74): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- lemote2f_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: net/mac80211/mlme.c:4343:1: warning: the frame size of 1040 bytes is larger than 1024 bytes [-Wframe-larger-than=] -------------------------------------------------------------------------------- loongson1b_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson1c_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- loongson3_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lpd270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_kvm_guest_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- malta_qemu_32r6_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaaprp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltasmvp_eva_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- maltaup_xpa_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- mpc30x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- mtx1_defconfig (mips, 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 -------------------------------------------------------------------------------- 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 Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcda4): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- nlm_xlp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nlm_xlr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nommu_k210_defconfig (riscv, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- nsimosci_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- omega2p_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- oxnas_v6_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pic32mzda_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pistachio_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xc8ec): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- qi_lb60_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rb532_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rbtx49xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rm200_defconfig (mips, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches Warnings: drivers/block/paride/bpck.c:32: warning: "PC" redefined -------------------------------------------------------------------------------- rpc_defconfig (arm, gcc-10) — FAIL, 4 errors, 0 warnings, 0 section mismatches Errors: arm-linux-gnueabihf-gcc: error: unrecognized -march target: armv3m arm-linux-gnueabihf-gcc: error: missing argument to ‘-march=’ arm-linux-gnueabihf-gcc: error: unrecognized -march target: armv3m arm-linux-gnueabihf-gcc: error: missing argument to ‘-march=’ -------------------------------------------------------------------------------- rs90_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- rt305x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- sb1250_swarm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches Section mismatches: WARNING: modpost: vmlinux.o(.text+0xcb4c): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- 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 Section mismatches: WARNING: modpost: vmlinux.o(.text+0xd040): Section mismatch in reference from the function __arm_ioremap_pfn_caller() to the function .meminit.text:memblock_is_map_memory() -------------------------------------------------------------------------------- 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 -------------------------------------------------------------------------------- tb0219_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0226_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tb0287_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- tinyconfig (i386, 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 -------------------------------------------------------------------------------- vdk_hs38_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vdk_hs38_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vf610m4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vocore2_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- vt8500_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- workpad_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches -------------------------------------------------------------------------------- x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 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 -------------------------------------------------------------------------------- x86_64_defconfig+x86-chromebook+kselftest (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@...>
|
|
Re: [PATCH 5.10.y-cip 26/29] thermal/drivers: Add TSU driver for RZ/G2L
Pavel Machek
Hi!
From: Biju Das <biju.das.jz@...> + /* TSU repeats measurement at 20 microseconds intervals and... + * ts_code_ave = (ts_code[0] + ⋯ + ts_code[7]) / 8 + /* The temperature Tj is calculated by the formulaI'd avoid using non-ASCII characters where possible. ... is not that much longer, and that symbol should really be -. Also comments should start with /* on separate line, but that's really detail. Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
|
|
Re: [PATCH 5.10.y-cip 23/29] clk: renesas: r9a07g044: Rename CLK_PLL3_DIV4 macro
Pavel Machek
Hi!
Rename the macro CLK_PLL3_DIV4->CLK_PLL3_DIV2_2 to match the clock treeChangelog says rename, @@ -106,9 +106,9 @@ static const struct cpg_core_clk r9a07g044_core_clks[] __initconst = {but macro arguments are changed, so I want to make sure it was intended. Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
|
|
Re: [PATCH 5.10.y-cip 11/29] watchdog: Add Watchdog Timer driver for RZ/G2L
Pavel Machek
Hi!
From: Biju Das <biju.das.jz@...> +static int rzg2l_wdt_start(struct watchdog_device *wdev)I'd put space before */. + ret = pm_runtime_resume_and_get(&pdev->dev);... + watchdog_set_drvdata(&priv->wdev, priv);I believe you need to undo effects of pm_runtime_resume_and_get() here and jump to out_pm_get. Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
|
|