[PATCH] audit: do a quick exit when syscall number is invalid
by cgel.zte@gmail.com
From: Yang Yang <yang.yang29(a)zte.com.cn>
Userspace may use syscall with invalid syscall number by calling
syscall(syscall_num,..). For example we found openSSH may use
syscall with syscall number is -1 in some case. When that happens
we better do a quick handle no need to gohead.
Signed-off-by: Yang Yang <yang.yang29(a)zte.com.cn>
Reported-by: Zeal Robot <zealci(a)zte.com.cn>
---
kernel/auditsc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index ea2ee1181921..806cd57d7f20 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -2077,7 +2077,8 @@ void __audit_syscall_exit(int success, long return_code)
struct audit_context *context = audit_context();
if (!context || context->dummy ||
- context->context != AUDIT_CTX_SYSCALL)
+ context->context != AUDIT_CTX_SYSCALL ||
+ unlikely(context->major < 0 || context->major > NR_syscalls))
goto out;
/* this may generate CONFIG_CHANGE records */
--
2.25.1
2 years, 8 months
audit-3.0.8 released
by Steve Grubb
Hello,
I've just released a new version of the audit daemon. It can be
downloaded from http://people.redhat.com/sgrubb/audit. It will also be
in rawhide soon. The ChangeLog is:
- Add gcc function attributes for access and allocation
- Add some more man pages (MIZUTA Takeshi)
- In auditd, change the reinitializing of the plugin queue
- Fix path normalization in auparse (Sergio Correia)
- In libaudit, handle ECONNREFUSED for network uid/gid lookups (Enzo
Matsumiya)
- In audisp-remote, fix hang with disk_low_action=suspend (Enzo Matsumiya)
- Drop ProtectHome from auditd.service as it interferes with rules
The main driver for this release is that there are a number of bugs that have
been discovered recently. Some of these have been there for a while such as
the ProtectHome systemd option. The big take away is anyone adding lots of
systemd hardening options might have some very hard to debug problems.
There was a problem with the plugin queue where a certain combination of
adding/removing plugins with the queue overflowing caused the queue to not
restart like it should.
The path normalization issue was causing path's not to be returned when
interpreted.
SHA256: b5f4d9b9ad69381ee18f33d3d918326aa52861509c901143f8a8c4ed5caa8913
Please let me know if you run across any problems with this release.
-Steve
2 years, 8 months
[PATCH v2] audit: do a quick exit when syscall number is invalid
by cgel.zte@gmail.com
From: Yang Yang <yang.yang29(a)zte.com.cn>
Userspace may use syscall with invalid syscall number by calling
syscall(syscall_num,..). For example we found openSSH may use
syscall with syscall number is -1 in some case. When that happens
we better do a quick handle no need to gohead.
Signed-off-by: Yang Yang <yang.yang29(a)zte.com.cn>
Reported-by: Zeal Robot <zealci(a)zte.com.cn>
---
v2:
- fix compile error of arch/alpha, I have no alpha compile environment, so this fix
- is done by code review.
---
arch/alpha/include/uapi/asm/unistd.h | 1 +
kernel/auditsc.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/arch/alpha/include/uapi/asm/unistd.h b/arch/alpha/include/uapi/asm/unistd.h
index 71fd5db06866..8115062216e4 100644
--- a/arch/alpha/include/uapi/asm/unistd.h
+++ b/arch/alpha/include/uapi/asm/unistd.h
@@ -13,5 +13,6 @@
#define __NR_getgid __NR_getxgid
#include <asm/unistd_32.h>
+#include <asm-generic/unistd.h>
#endif /* _UAPI_ALPHA_UNISTD_H */
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index ea2ee1181921..ea4915999e01 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -2077,7 +2077,8 @@ void __audit_syscall_exit(int success, long return_code)
struct audit_context *context = audit_context();
if (!context || context->dummy ||
- context->context != AUDIT_CTX_SYSCALL)
+ context->context != AUDIT_CTX_SYSCALL ||
+ unlikely(context->major < 0 || context->major >= NR_syscalls))
goto out;
/* this may generate CONFIG_CHANGE records */
--
2.25.1
2 years, 8 months
[GIT PULL] Audit patches for v5.18
by Paul Moore
Linus,
Just one audit patch queued for v5.18:
- Change the AUDIT_TIME_* record generation so that they are generated
at syscall exit time and subject to all of the normal syscall exit
filtering. This should help reduce noise and ensure those records
which are most relevant to the admin's audit configuration are
recorded in the audit log.
Please merge,
-Paul
--
The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:
Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
tags/audit-pr-20220321
for you to fetch changes up to 272ceeaea355214b301530e262a0df8600bfca95:
audit: log AUDIT_TIME_* records only from rules
(2022-02-22 13:51:40 -0500)
----------------------------------------------------------------
audit/stable-5.18 PR 20220321
----------------------------------------------------------------
Richard Guy Briggs (1):
audit: log AUDIT_TIME_* records only from rules
kernel/audit.h | 4 +++
kernel/auditsc.c | 87 +++++++++++++++++++++++++++++++++++++++-----------
2 files changed, 71 insertions(+), 20 deletions(-)
--
paul-moore.com
2 years, 9 months
[linux-next:master] BUILD REGRESSION 6d72dda014a4753974eb08950089ddf71fec4f60
by kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
branch HEAD: 6d72dda014a4753974eb08950089ddf71fec4f60 Add linux-next specific files for 20220318
Error/Warning reports:
https://lore.kernel.org/linux-doc/202202240704.pQD40A9L-lkp@intel.com
https://lore.kernel.org/linux-doc/202202240705.t3QbMnlt-lkp@intel.com
https://lore.kernel.org/linux-doc/202203180707.vLUjjmqY-lkp@intel.com
https://lore.kernel.org/linux-media/202203160306.SfWO9QWV-lkp@intel.com
https://lore.kernel.org/linux-media/202203182100.fSdmSXzo-lkp@intel.com
https://lore.kernel.org/linux-media/202203182127.ZeZX6m5Y-lkp@intel.com
https://lore.kernel.org/llvm/202202241039.g8GKEE4O-lkp@intel.com
https://lore.kernel.org/llvm/202203110903.3xDyTUVl-lkp@intel.com
https://lore.kernel.org/llvm/202203180453.7LxvqwzJ-lkp@intel.com
Error/Warning:
Documentation/driver-api/nvdimm/nvdimm.rst:146: (SEVERE/4) Title level inconsistent:
arch/arm/kernel/ftrace.c:229:6: warning: no previous prototype for function 'prepare_ftrace_return' [-Wmissing-prototypes]
drivers/media/platform/renesas/renesas-ceu.c:1609:30: warning: unused variable 'ceu_data_rz' [-Wunused-const-variable]
drivers/media/platform/samsung/exynos4-is/fimc-isp-video.h:35:6: warning: no previous prototype for 'fimc_isp_video_device_unregister' [-Wmissing-prototypes]
drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c:3126:34: warning: unused variable 'samsung_jpeg_match' [-Wunused-const-variable]
drivers/media/platform/st/sti/c8sectpfe/c8sectpfe-core.c:1175:34: warning: unused variable 'c8sectpfe_match' [-Wunused-const-variable]
drivers/spi/spi-amd.c:296:21: warning: cast to smaller integer type 'enum amd_spi_versions' from 'const void *' [-Wvoid-pointer-to-enum-cast]
fs/btrfs/ordered-data.c:168: warning: expecting prototype for Add an ordered extent to the per(). Prototype was for btrfs_add_ordered_extent() instead
fs/btrfs/tree-log.c:6934: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
Unverified Error/Warning (likely false positive, please contact us if interested):
FAILED: load BTF from vmlinux: No such file or directory
Makefile:677: arch/nds32/Makefile: No such file or directory
arch/Kconfig:10: can't open file "arch/nds32/Kconfig"
arch/alpha/include/asm/string.h:22:16: warning: '__builtin_memcpy' forming offset [40, 2051] is out of the bounds [0, 40] of object 'tag_buf' with type 'unsigned char[40]' [-Warray-bounds]
arch/arm/kernel/unwind.c:483:17: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign]
arch/m68k/kernel/machine_kexec.c:55: undefined reference to `m68k_mmutype'
arch/m68k/kernel/time.c:105: undefined reference to `mach_get_rtc_pll'
arch/riscv/kernel/cacheinfo.c:189:1: internal compiler error: Segmentation fault
arch/riscv/kernel/crash_dump.c:46:1: internal compiler error: Segmentation fault
arch/riscv/kernel/patch.c:133:1: internal compiler error: Segmentation fault
arch/riscv/kernel/signal.c:321:1: internal compiler error: Segmentation fault
arch/riscv/mm/extable.c:71:1: internal compiler error: Segmentation fault
arch/riscv/mm/physaddr.c:35:1: internal compiler error: Segmentation fault
arch/s390/kernel/machine_kexec.c:57:9: warning: 'memcpy' offset [0, 511] is out of the bounds [0, 0] [-Warray-bounds]
arch/sh/kernel/machvec.c:105:33: warning: array subscript 'struct sh_machine_vector[0]' is partly outside array bounds of 'long int[1]' [-Warray-bounds]
block/blk-mq-rdma.c:44:1: internal compiler error: Segmentation fault
block/blk-zoned.c:648:1: internal compiler error: Segmentation fault
block/sed-opal.c:2695:1: internal compiler error: Segmentation fault
crypto/acompress.c:198:1: internal compiler error: Segmentation fault
crypto/aead.c:303:1: internal compiler error: Segmentation fault
crypto/ahash.c:660:1: internal compiler error: Segmentation fault
crypto/akcipher.c:158:1: internal compiler error: Segmentation fault
crypto/api.c:645:1: internal compiler error: Segmentation fault
crypto/asymmetric_keys/public_key.c:412:1: internal compiler error: Segmentation fault
crypto/dh.c:280:1: internal compiler error: Segmentation fault
crypto/ecc.c:1668:1: internal compiler error: Segmentation fault
crypto/geniv.c:163:1: internal compiler error: Segmentation fault
crypto/gf128mul.c:416:1: internal compiler error: Segmentation fault
crypto/kpp.c:115:1: internal compiler error: Segmentation fault
crypto/rng.c:228:1: internal compiler error: Segmentation fault
crypto/scompress.c:305:1: internal compiler error: Segmentation fault
crypto/shash.c:627:1: internal compiler error: Segmentation fault
crypto/skcipher.c:984:1: internal compiler error: Segmentation fault
drivers/base/map.c:154:1: internal compiler error: Segmentation fault
drivers/base/power/domain_governor.c:406:1: internal compiler error: Segmentation fault
drivers/base/power/sysfs.c:838:1: internal compiler error: Segmentation fault
drivers/base/power/wakeirq.c:405:1: internal compiler error: Segmentation fault
drivers/base/regmap/regcache-flat.c:83:1: internal compiler error: Segmentation fault
drivers/base/regmap/regcache-rbtree.c:553:1: internal compiler error: Segmentation fault
drivers/base/regmap/regcache.c:785:1: internal compiler error: Segmentation fault
drivers/base/regmap/regmap-debugfs.c:692:1: internal compiler error: Segmentation fault
drivers/base/regmap/regmap-mmio.c:453:1: internal compiler error: Segmentation fault
drivers/base/regmap/regmap-sdw-mbq.c:101:1: internal compiler error: Segmentation fault
drivers/base/regmap/regmap-slimbus.c:71:1: internal compiler error: Segmentation fault
drivers/base/syscore.c:128:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_bt_sm.c:696:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_kcs_sm.c:536:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_plat_data.c:124:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_si_hotmod.c:237:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_si_mem_io.c:146:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_si_port_io.c:114:1: internal compiler error: Segmentation fault
drivers/char/ipmi/ipmi_smic_sm.c:585:1: internal compiler error: Segmentation fault
drivers/char/tpm/eventlog/efi.c:124:1: internal compiler error: Segmentation fault
drivers/clk/clk-composite.c:487:1: internal compiler error: Segmentation fault
drivers/clk/clk-fractional-divider.c:259:1: internal compiler error: Segmentation fault
drivers/clk/imx/clk-pll14xx.c:166:2: warning: Value stored to 'pll_div_ctl1' is never read [clang-analyzer-deadcode.DeadStores]
drivers/comedi/comedi_buf.c:691:1: internal compiler error: Segmentation fault
drivers/comedi/drivers.c:1183:1: internal compiler error: Segmentation fault
drivers/comedi/range.c:131:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_aead.c:2664:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_buffer_mgr.c:1383:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_cipher.c:1509:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_fips.c:154:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_hash.c:2315:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_pm.c:80:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_request_mgr.c:662:1: internal compiler error: Segmentation fault
drivers/crypto/ccree/cc_sram_mgr.c:91:1: internal compiler error: Segmentation fault
drivers/dma-buf/dma-fence-array.c:207:1: internal compiler error: Segmentation fault
drivers/dma-buf/dma-fence-chain.c:258:1: internal compiler error: Segmentation fault
drivers/dma-buf/dma-fence.c:960:1: internal compiler error: Segmentation fault
drivers/dma-buf/dma-heap.c:324:1: internal compiler error: Segmentation fault
drivers/dma/idma64.c:644: undefined reference to `devm_ioremap_resource'
drivers/firmware/efi/vars.c:1222:1: internal compiler error: Segmentation fault
drivers/firmware/turris-mox-rwtm.c:146:1: warning: Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]
drivers/gpio/gpio-max730x.c:236:1: internal compiler error: Segmentation fault
drivers/gpio/gpiolib-of.c:1057:1: internal compiler error: Segmentation fault
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c:1633:6: warning: no previous prototype for 'is_timing_changed' [-Wmissing-prototypes]
drivers/hid/hid-cmedia.c:246:1: internal compiler error: Segmentation fault
drivers/hid/hid-core.c:1665:30: warning: Although the value stored to 'field' is used in the enclosing expression, the value is never actually read from 'field' [clang-analyzer-deadcode.DeadStores]
drivers/hid/hid-debug.c:1269:1: internal compiler error: Segmentation fault
drivers/hid/hid-picolcd_debugfs.c:884:1: internal compiler error: Segmentation fault
drivers/hid/hid-picolcd_fb.c:605:1: internal compiler error: Segmentation fault
drivers/hid/hid-picolcd_leds.c:161:1: internal compiler error: Segmentation fault
drivers/hid/hid-roccat-common.c:175:1: internal compiler error: Segmentation fault
drivers/hid/hid-uclogic-params.c:1140:1: internal compiler error: Segmentation fault
drivers/hid/hid-uclogic-rdesc.c:862:1: internal compiler error: Segmentation fault
drivers/hid/usbhid/hiddev.c:945:1: internal compiler error: Segmentation fault
drivers/hwmon/nsa320-hwmon.c:114:9: warning: Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]
drivers/iio/frequency/admv1014.c:703:22: sparse: sparse: dubious: x & !y
drivers/infiniband/core/addr.c:890:1: internal compiler error: Segmentation fault
drivers/infiniband/core/agent.c:221:1: internal compiler error: Segmentation fault
drivers/infiniband/core/cache.c:1675:1: internal compiler error: Segmentation fault
drivers/infiniband/core/cm_trace.c:16: internal compiler error: Segmentation fault
drivers/infiniband/core/counters.c:669:1: internal compiler error: Segmentation fault
drivers/infiniband/core/cq.c:508:1: internal compiler error: Segmentation fault
drivers/infiniband/core/ib_core_uverbs.c:367:1: internal compiler error: Segmentation fault
drivers/infiniband/core/iwpm_msg.c:846:1: internal compiler error: Segmentation fault
drivers/infiniband/core/iwpm_util.c:793:1: internal compiler error: Segmentation fault
drivers/infiniband/core/lag.c:138:1: internal compiler error: Segmentation fault
drivers/infiniband/core/mad_rmpp.c:960:1: internal compiler error: Segmentation fault
drivers/infiniband/core/mr_pool.c:82:1: internal compiler error: Segmentation fault
drivers/infiniband/core/multicast.c:906:1: internal compiler error: Segmentation fault
drivers/infiniband/core/netlink.c:331:1: internal compiler error: Segmentation fault
drivers/infiniband/core/packer.c:201:1: internal compiler error: Segmentation fault
drivers/infiniband/core/rdma_core.c:1015:1: internal compiler error: Segmentation fault
drivers/infiniband/core/restrack.c:355:1: internal compiler error: Segmentation fault
drivers/infiniband/core/rw.c:760:1: internal compiler error: Segmentation fault
drivers/infiniband/core/sa_query.c:2269:1: internal compiler error: Segmentation fault
drivers/infiniband/core/smi.c:338:1: internal compiler error: Segmentation fault
drivers/infiniband/core/sysfs.c:1475:1: internal compiler error: Segmentation fault
drivers/infiniband/core/trace.c:13: internal compiler error: Segmentation fault
drivers/infiniband/core/ud_header.c:547:1: internal compiler error: Segmentation fault
drivers/infiniband/core/umem.c:317:1: internal compiler error: Segmentation fault
drivers/infiniband/core/umem_dmabuf.c:231:1: internal compiler error: Segmentation fault
drivers/infiniband/core/umem_odp.c:517:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_cmd.c:4044:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_ioctl.c:829:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_marshall.c:215:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types.c:269:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_async_fd.c:79:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_counters.c:161:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_cq.c:222:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_device.c:503:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_dm.c:116:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_flow_action.c:447:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_mr.c:385:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_qp.c:380:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_srq.c:234:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_std_types_wq.c:194:1: internal compiler error: Segmentation fault
drivers/infiniband/core/uverbs_uapi.c:734:1: internal compiler error: Segmentation fault
drivers/infiniband/core/verbs.c:3030:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_cm.c:1956:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_cq.c:102:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_mem.c:449:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_qp.c:1347:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_qp_tx.c:1279:1: internal compiler error: Segmentation fault
drivers/infiniband/sw/siw/siw_verbs.c:1854:1: internal compiler error: Segmentation fault
drivers/input/input-poller.c:222:1: internal compiler error: Segmentation fault
drivers/input/matrix-keymap.c:202:1: internal compiler error: Segmentation fault
drivers/input/misc/adxl34x.c:911:1: internal compiler error: Segmentation fault
drivers/input/misc/cma3000_d0x.c:388:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_2d_sensor.c:330:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_f01.c:729:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_f03.c:328:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_f30.c:405:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_f54.c:758:1: internal compiler error: Segmentation fault
drivers/input/rmi4/rmi_f55.c:128:1: internal compiler error: Segmentation fault
drivers/input/serio/ps2-gpio.c:223:4: warning: Value stored to 'rxflags' is never read [clang-analyzer-deadcode.DeadStores]
drivers/input/touchscreen.c:207:1: internal compiler error: Segmentation fault
drivers/iommu/of_iommu.c:174:1: internal compiler error: Segmentation fault
drivers/leds/leds-ti-lmu-common.c:153:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/frame_vector.c:235:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/vb2-trace.c:10:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/videobuf2-dma-contig.c:872:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/videobuf2-dma-sg.c:680:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/videobuf2-memops.c:129:1: internal compiler error: Segmentation fault
drivers/media/common/videobuf2/videobuf2-vmalloc.c:449:1: internal compiler error: Segmentation fault
drivers/media/platform/chips-media/coda-bit.c:1127:2: warning: Value stored to 'value' is never read [clang-analyzer-deadcode.DeadStores]
drivers/media/platform/chips-media/coda-common.c:478:38: warning: Array access (from variable 'formats') results in a null pointer dereference [clang-analyzer-core.NullDereference]
drivers/media/platform/st/stm32/dma2d/dma2d-hw.c:109:1: internal compiler error: in extract_insn, at recog.c:2770
drivers/media/platform/xilinx/xilinx-dma.c:760:1: internal compiler error: Segmentation fault
drivers/media/radio/tea575x.c:577:1: internal compiler error: Segmentation fault
drivers/media/usb/cpia2/cpia2_core.c:2434:1: internal compiler error: Segmentation fault
drivers/media/usb/cpia2/cpia2_usb.c:966:1: internal compiler error: Segmentation fault
drivers/media/usb/gspca/autogain_functions.c:165:1: internal compiler error: Segmentation fault
drivers/media/usb/gspca/stv06xx/stv06xx_pb0100.c:432:1: internal compiler error: Segmentation fault
drivers/media/usb/gspca/stv06xx/stv06xx_st6422.c:273:1: internal compiler error: Segmentation fault
drivers/media/usb/pwc/pwc-ctrl.c:543:1: internal compiler error: Segmentation fault
drivers/media/usb/pwc/pwc-dec23.c:678:1: internal compiler error: Segmentation fault
drivers/media/usb/pwc/pwc-uncompress.c:92:1: internal compiler error: Segmentation fault
drivers/media/usb/pwc/pwc-v4l.c:1033:1: internal compiler error: Segmentation fault
drivers/media/usb/stkwebcam/stk-sensor.c:586:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_ctrl.c:2529:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_debugfs.c:105:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_entity.c:161:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_isight.c:135:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_metadata.c:176:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_queue.c:515:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_status.c:313:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_v4l2.c:1550:1: internal compiler error: Segmentation fault
drivers/media/usb/uvc/uvc_video.c:2216:1: internal compiler error: Segmentation fault
drivers/memory/brcmstb_dpfe.c:707:10: warning: Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]
drivers/mfd/cs47l35-tables.c:1555:1: internal compiler error: Segmentation fault
drivers/mfd/madera-core.c:799:1: internal compiler error: Segmentation fault
drivers/mfd/mfd-core.c:440:1: internal compiler error: Segmentation fault
drivers/misc/eeprom/eeprom_93cx6.c:372:1: internal compiler error: Segmentation fault
drivers/mmc/host/litex_mmc.c:424 litex_mmc_request() error: we previously assumed 'data' could be null (see line 418)
drivers/mtd/chips/cfi_cmdset_0020.c:1401:1: internal compiler error: Segmentation fault
drivers/mtd/mtdsuper.c:202:1: internal compiler error: Segmentation fault
drivers/mtd/nand/bbt.c:131:1: internal compiler error: Segmentation fault
drivers/mtd/nand/ecc-mxic.c:523:17: warning: Value stored to 'dev' during its initialization is never read [clang-analyzer-deadcode.DeadStores]
drivers/mtd/nand/ecc-mxic.c:595:6: warning: Branch condition evaluates to a garbage value [clang-analyzer-core.uninitialized.Branch]
drivers/mtd/nand/ecc-sw-hamming.c:660:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/denali.c:1381:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_base.c:6466:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_hynix.c:735:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_jedec.c:139:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_legacy.c:644:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_macronix.c:334:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_micron.c:599:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_onfi.c:337:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_samsung.c:139:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_timings.c:737:1: internal compiler error: Segmentation fault
drivers/mtd/nand/raw/nand_toshiba.c:300:1: internal compiler error: Segmentation fault
drivers/net/can/dev/length.c:95:1: internal compiler error: Segmentation fault
drivers/net/can/dev/rx-offload.c:402:1: internal compiler error: Segmentation fault
drivers/net/can/dev/skb.c:254:1: internal compiler error: Segmentation fault
drivers/net/phy/mii_timestamper.c:135:1: internal compiler error: Segmentation fault
drivers/net/vxlan/vxlan_core.c:440:34: sparse: sparse: incorrect type in argument 2 (different base types)
drivers/nfc/fdp/fdp.c:756:1: internal compiler error: Segmentation fault
drivers/nvme/host/zns.c:250:1: internal compiler error: Segmentation fault
drivers/nvme/target/zns.c:612:1: internal compiler error: Segmentation fault
drivers/nvmem/sunplus-ocotp.c:74:29: sparse: sparse: symbol 'sp_otp_v0' was not declared. Should it be static?
drivers/of/kobj.c:165:1: internal compiler error: Segmentation fault
drivers/parport/daisy.c:507:1: internal compiler error: Segmentation fault
drivers/parport/ieee1284.c:789:1: internal compiler error: Segmentation fault
drivers/parport/ieee1284_ops.c:893:1: internal compiler error: Segmentation fault
drivers/parport/probe.c:274:1: internal compiler error: Segmentation fault
drivers/pci/of.c:635:1: internal compiler error: Segmentation fault
drivers/pci/vgaarb.c:213:17: warning: Value stored to 'dev' during its initialization is never read [clang-analyzer-deadcode.DeadStores]
drivers/pcmcia/rsrc_mgr.c:70:1: internal compiler error: Segmentation fault
drivers/phy/broadcom/phy-brcm-usb.c:233:9: warning: Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]
drivers/phy/phy-core-mipi-dphy.c:164:1: internal compiler error: Segmentation fault
drivers/power/supply/ip5xxx_power.c:341 ip5xxx_battery_get_property() error: uninitialized symbol 'raw'.
drivers/rtc/sysfs.c:354:1: internal compiler error: Segmentation fault
drivers/scsi/iscsi_boot_sysfs.c:554:1: internal compiler error: Segmentation fault
drivers/scsi/libiscsi.c:3788:1: internal compiler error: Segmentation fault
drivers/scsi/libiscsi_tcp.c:1246:1: internal compiler error: Segmentation fault
drivers/scsi/libsas/sas_event.c:228:1: internal compiler error: Segmentation fault
drivers/scsi/libsas/sas_task.c:37:1: internal compiler error: Segmentation fault
drivers/scsi/lpfc/lpfc_els.c:7983:38: sparse: left side has type unsigned int
drivers/scsi/lpfc/lpfc_els.c:7983:38: sparse: right side has type restricted __be32
drivers/scsi/lpfc/lpfc_els.c:7983:38: sparse: sparse: invalid assignment: |=
drivers/scsi/lpfc/lpfc_els.c:8504:33: sparse: sparse: incorrect type in assignment (different base types)
drivers/scsi/scsi_lib_dma.c:52:1: internal compiler error: Segmentation fault
drivers/scsi/ufs/ufs-sysfs.c:1267:1: internal compiler error: Segmentation fault
drivers/slimbus/messaging.c:365:1: internal compiler error: Segmentation fault
drivers/slimbus/stream.c:477:1: internal compiler error: Segmentation fault
drivers/ssb/driver_chipcommon.c:598:1: internal compiler error: Segmentation fault
drivers/ssb/scan.c:446:1: internal compiler error: Segmentation fault
drivers/staging/greybus/arche-apb-ctrl.c:302:10: warning: Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]
drivers/target/iscsi/iscsi_target_auth.c:531:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_configfs.c:1550:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_datain_values.c:519:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_device.c:57:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_erl0.c:936:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_erl1.c:1239:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_erl2.c:429:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_login.c:1453:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_nego.c:1338:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_nodeattrib.c:253:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_parameters.c:1715:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_seq_pdu_list.c:690:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_stat.c:798:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_tmr.c:841:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_tpg.c:913:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_transport.c:54:1: internal compiler error: Segmentation fault
drivers/target/iscsi/iscsi_target_util.c:1371:1: internal compiler error: Segmentation fault
drivers/tty/serial/sunplus-uart.c:501:26: sparse: sparse: symbol 'sunplus_console_ports' was not declared. Should it be static?
drivers/tty/tty_audit.c:248:1: internal compiler error: Segmentation fault
drivers/usb/cdns3/drd.c:495:1: internal compiler error: Segmentation fault
drivers/usb/cdns3/host.c:143:1: internal compiler error: Segmentation fault
drivers/usb/chipidea/host.c:486:1: internal compiler error: Segmentation fault
drivers/usb/core/config.c:1094:1: internal compiler error: Segmentation fault
drivers/usb/core/devices.c:593:1: internal compiler error: Segmentation fault
drivers/usb/core/endpoint.c:191:1: internal compiler error: Segmentation fault
drivers/usb/core/generic.c:324:1: internal compiler error: Segmentation fault
drivers/usb/core/port.c:658:1: internal compiler error: Segmentation fault
drivers/usb/core/quirks.c:703:1: internal compiler error: Segmentation fault
drivers/usb/core/sysfs.c:1263:1: internal compiler error: Segmentation fault
drivers/usb/dwc3/debugfs.c:934:1: internal compiler error: Segmentation fault
drivers/usb/dwc3/drd.c:660:1: internal compiler error: Segmentation fault
drivers/usb/dwc3/ep0.c:1176:1: internal compiler error: Segmentation fault
drivers/usb/dwc3/gadget.c:4447:1: internal compiler error: Segmentation fault
drivers/usb/gadget/composite.c:2605:1: internal compiler error: Segmentation fault
drivers/usb/gadget/config.c:268:1: internal compiler error: Segmentation fault
drivers/usb/gadget/epautoconf.c:214:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/f_tcm.c:2333:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/storage_common.c:522:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/u_uac1_legacy.c:306:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/uvc_configfs.c:2462:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/uvc_queue.c:369:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/uvc_v4l2.c:398:1: internal compiler error: Segmentation fault
drivers/usb/gadget/function/uvc_video.c:497:1: internal compiler error: Segmentation fault
drivers/usb/gadget/functions.c:117:1: internal compiler error: Segmentation fault
drivers/usb/gadget/u_f.c:30:1: internal compiler error: Segmentation fault
drivers/usb/gadget/udc/snps_udc_core.c:3193:1: internal compiler error: Segmentation fault
drivers/usb/gadget/udc/trace.c:11: internal compiler error: Segmentation fault
drivers/usb/gadget/usbstring.c:91:1: internal compiler error: Segmentation fault
drivers/usb/host/xhci-dbg.c:35:1: internal compiler error: Segmentation fault
drivers/usb/isp1760/isp1760-udc.c:1600:1: internal compiler error: Segmentation fault
drivers/usb/mon/mon_stat.c:71:1: internal compiler error: Segmentation fault
drivers/usb/musb/musb_gadget.c:2094:1: internal compiler error: Segmentation fault
drivers/usb/musb/musb_gadget_ep0.c:1058:1: internal compiler error: Segmentation fault
drivers/usb/storage/initializers.c:94:1: internal compiler error: Segmentation fault
drivers/usb/typec/bus.c:412:1: internal compiler error: Segmentation fault
drivers/usb/typec/tcpm/tcpm.c:6457:1: internal compiler error: Segmentation fault
drivers/usb/usbip/stub_rx.c:686:1: internal compiler error: Segmentation fault
drivers/usb/usbip/stub_tx.c:453:1: internal compiler error: Segmentation fault
drivers/usb/usbip/usbip_event.c:196:1: internal compiler error: Segmentation fault
drivers/vfio/mdev/vfio_mdev.c:152:1: internal compiler error: Segmentation fault
drivers/video/fbdev/core/fb_defio.c:240:1: internal compiler error: Segmentation fault
drivers/video/fbdev/core/fbcmap.c:362:1: internal compiler error: Segmentation fault
drivers/video/fbdev/core/fbsysfs.c:544:1: internal compiler error: Segmentation fault
drivers/virtio/virtio_ring.c:2465:1: internal compiler error: Segmentation fault
drivers/w1/w1_family.c:130:1: internal compiler error: Segmentation fault
drivers/w1/w1_netlink.c:725:1: internal compiler error: Segmentation fault
drivers/watchdog/watchdog_pretimeout.c:216:1: internal compiler error: Segmentation fault
fs/afs/addr_list.c:404:1: internal compiler error: Segmentation fault
fs/afs/callback.c:228:1: internal compiler error: Segmentation fault
fs/afs/cmservice.c:672:1: internal compiler error: Segmentation fault
fs/afs/dir_edit.c:493:1: internal compiler error: Segmentation fault
fs/afs/dir_silly.c:282:1: internal compiler error: Segmentation fault
fs/afs/dynroot.c:393:1: internal compiler error: Segmentation fault
fs/afs/file.c:623:1: internal compiler error: Segmentation fault
fs/afs/flock.c:877:1: internal compiler error: Segmentation fault
fs/afs/fs_operation.c:259:1: internal compiler error: Segmentation fault
fs/afs/fs_probe.c:475:1: internal compiler error: Segmentation fault
fs/afs/mntpt.c:225:1: internal compiler error: Segmentation fault
fs/afs/server_list.c:129:1: internal compiler error: Segmentation fault
fs/afs/vl_alias.c:383:1: internal compiler error: Segmentation fault
fs/afs/vl_list.c:335:1: internal compiler error: Segmentation fault
fs/afs/vl_probe.c:292:1: internal compiler error: Segmentation fault
fs/afs/vl_rotate.c:348:1: internal compiler error: Segmentation fault
fs/afs/vlclient.c:759:1: internal compiler error: Segmentation fault
fs/afs/volume.c:428:1: internal compiler error: Segmentation fault
fs/afs/write.c:1034:1: internal compiler error: Segmentation fault
fs/afs/xattr.c:363:1: internal compiler error: Segmentation fault
fs/autofs/expire.c:620:1: internal compiler error: Segmentation fault
fs/autofs/inode.c:385:1: internal compiler error: Segmentation fault
fs/autofs/root.c:919:1: internal compiler error: Segmentation fault
fs/autofs/symlink.c:26:1: internal compiler error: Segmentation fault
fs/autofs/waitq.c:512:1: internal compiler error: Segmentation fault
fs/bad_inode.c:252:1: internal compiler error: Segmentation fault
fs/btrfs/async-thread.c:419:1: internal compiler error: Segmentation fault
fs/btrfs/block-group.c:4082:1: internal compiler error: Segmentation fault
fs/btrfs/block-rsv.c:558:1: internal compiler error: Segmentation fault
fs/btrfs/ctree.c:4779:1: internal compiler error: Segmentation fault
fs/btrfs/delalloc-space.c:486:1: internal compiler error: Segmentation fault
fs/btrfs/dev-replace.c:1332:1: internal compiler error: Segmentation fault
fs/btrfs/dir-item.c:460:1: internal compiler error: Segmentation fault
fs/btrfs/discard.c:723:1: internal compiler error: Segmentation fault
fs/btrfs/export.c:281:1: internal compiler error: Segmentation fault
fs/btrfs/file-item.c:1285:1: internal compiler error: Segmentation fault
fs/btrfs/free-space-cache.c:4116:1: internal compiler error: Segmentation fault
fs/btrfs/free-space-tree.c:1603:1: internal compiler error: Segmentation fault
fs/btrfs/inode-item.c:749:1: internal compiler error: Segmentation fault
fs/btrfs/ioctl.c:5334:1: internal compiler error: Segmentation fault
fs/btrfs/locking.c:291:1: internal compiler error: Segmentation fault
fs/btrfs/lzo.c:495:1: internal compiler error: Segmentation fault
fs/btrfs/orphan.c:58:1: internal compiler error: Segmentation fault
fs/btrfs/print-tree.c:410:1: internal compiler error: Segmentation fault
fs/btrfs/qgroup.c:4321:1: internal compiler error: Segmentation fault
fs/btrfs/raid56.c:2709:1: internal compiler error: Segmentation fault
fs/btrfs/reflink.c:911:1: internal compiler error: Segmentation fault
fs/btrfs/root-tree.c:545:1: internal compiler error: Segmentation fault
fs/btrfs/struct-funcs.c:171:1: internal compiler error: Segmentation fault
fs/btrfs/subpage.c:745:1: internal compiler error: Segmentation fault
fs/btrfs/transaction.c:2539:1: internal compiler error: Segmentation fault
fs/btrfs/tree-defrag.c:132:1: internal compiler error: Segmentation fault
fs/btrfs/tree-log.c:6828:1: internal compiler error: Segmentation fault
fs/btrfs/tree-mod-log.c:929:1: internal compiler error: Segmentation fault
fs/btrfs/ulist.c:276:1: internal compiler error: Segmentation fault
fs/btrfs/uuid-tree.c:390:1: internal compiler error: Segmentation fault
fs/btrfs/verity.c:813:1: internal compiler error: Segmentation fault
fs/btrfs/xattr.c:502:1: internal compiler error: Segmentation fault
fs/btrfs/zlib.c:462:1: internal compiler error: Segmentation fault
fs/btrfs/zoned.c:2035:1: internal compiler error: Segmentation fault
fs/btrfs/zstd.c:706:1: internal compiler error: Segmentation fault
fs/ceph/addr.c:2064:1: internal compiler error: Segmentation fault
fs/ceph/caps.c:4698:1: internal compiler error: Segmentation fault
fs/ceph/ceph_frag.c:23:1: internal compiler error: Segmentation fault
fs/ceph/debugfs.c:467:1: internal compiler error: Segmentation fault
fs/ceph/dir.c:1994:1: internal compiler error: Segmentation fault
fs/ceph/export.c:583:1: internal compiler error: Segmentation fault
fs/ceph/file.c:2596:1: internal compiler error: Segmentation fault
fs/ceph/inode.c:2438:1: internal compiler error: Segmentation fault
fs/ceph/io.c:163:1: internal compiler error: Segmentation fault
fs/ceph/ioctl.c:295:1: internal compiler error: Segmentation fault
fs/ceph/mdsmap.c:422:1: internal compiler error: Segmentation fault
fs/ceph/metric.c:344:1: internal compiler error: Segmentation fault
fs/ceph/quota.c:531:1: internal compiler error: Segmentation fault
fs/ceph/snap.c:1199:1: internal compiler error: Segmentation fault
fs/ceph/xattr.c:1399:1: internal compiler error: Segmentation fault
fs/cifs/cifs_debug.c:1066:1: internal compiler error: Segmentation fault
fs/cifs/cifs_dfs_ref.c:374:1: internal compiler error: Segmentation fault
fs/cifs/cifs_spnego.c:236:1: internal compiler error: Segmentation fault
fs/cifs/cifs_swn.c:674:1: internal compiler error: Segmentation fault
fs/cifs/cifs_unicode.c:632:1: internal compiler error: Segmentation fault
fs/cifs/cifsacl.c:1668:1: internal compiler error: Segmentation fault
fs/cifs/cifsencrypt.c:767:1: internal compiler error: Segmentation fault
fs/cifs/cifssmb.c:6055:1: internal compiler error: Segmentation fault
fs/cifs/connect.c:4498:1: internal compiler error: Segmentation fault
fs/cifs/dfs_cache.c:1661:1: internal compiler error: Segmentation fault
fs/cifs/dir.c:864:1: internal compiler error: Segmentation fault
fs/cifs/file.c:4986:1: internal compiler error: Segmentation fault
fs/cifs/fs_context.c:1764:1: internal compiler error: Segmentation fault
fs/cifs/inode.c:3014:1: internal compiler error: Segmentation fault
fs/cifs/ioctl.c:501:1: internal compiler error: Segmentation fault
fs/cifs/link.c:734:1: internal compiler error: Segmentation fault
fs/cifs/misc.c:1353:1: internal compiler error: Segmentation fault
fs/cifs/netlink.c:89:1: internal compiler error: Segmentation fault
fs/cifs/netmisc.c:1021:1: internal compiler error: Segmentation fault
fs/cifs/readdir.c:1056:1: internal compiler error: Segmentation fault
fs/cifs/sess.c:1718:1: internal compiler error: Segmentation fault
fs/cifs/smb1ops.c:1256:1: internal compiler error: Segmentation fault
fs/cifs/smb2file.c:287:1: internal compiler error: Segmentation fault
fs/cifs/smb2inode.c:750:1: internal compiler error: Segmentation fault
fs/cifs/smb2maperror.c:2481:1: internal compiler error: Segmentation fault
fs/cifs/smb2misc.c:922:1: internal compiler error: Segmentation fault
fs/cifs/smb2ops.c:5947:1: internal compiler error: Segmentation fault
fs/cifs/smb2pdu.c:5621:1: internal compiler error: Segmentation fault
fs/cifs/smb2transport.c:933:1: internal compiler error: Segmentation fault
fs/cifs/smbencrypt.c:91:1: internal compiler error: Segmentation fault
fs/cifs/trace.c:9: internal compiler error: Segmentation fault
fs/cifs/transport.c:1639:1: internal compiler error: Segmentation fault
fs/cifs/unc.c:69:1: internal compiler error: Segmentation fault
fs/coda/cache.c:118:1: internal compiler error: Segmentation fault
fs/coda/cnode.c:178:1: internal compiler error: Segmentation fault
fs/coda/dir.c:595:1: internal compiler error: Segmentation fault
fs/coda/file.c:305:1: internal compiler error: Segmentation fault
fs/coda/pioctl.c:88:1: internal compiler error: Segmentation fault
fs/coda/symlink.c:48:1: internal compiler error: Segmentation fault
fs/coda/upcall.c:961:1: internal compiler error: Segmentation fault
fs/configfs/file.c:482:1: internal compiler error: Segmentation fault
fs/configfs/inode.c:244:1: internal compiler error: Segmentation fault
fs/configfs/symlink.c:269:1: internal compiler error: Segmentation fault
fs/crypto/bio.c:194:1: internal compiler error: Segmentation fault
fs/crypto/fname.c:595:1: internal compiler error: Segmentation fault
fs/crypto/hkdf.c:182:1: internal compiler error: Segmentation fault
fs/crypto/hooks.c:430:1: internal compiler error: Segmentation fault
fs/crypto/keysetup.c:794:1: internal compiler error: Segmentation fault
fs/crypto/keysetup_v1.c:319:1: internal compiler error: Segmentation fault
fs/crypto/policy.c:818:1: internal compiler error: Segmentation fault
fs/d_path.c:448:1: internal compiler error: Segmentation fault
fs/dlm/dir.c:306:1: internal compiler error: Segmentation fault
fs/dlm/member.c:735:1: internal compiler error: Segmentation fault
fs/dlm/midcomms.c:1485:1: internal compiler error: Segmentation fault
fs/dlm/plock.c:510:1: internal compiler error: Segmentation fault
fs/dlm/rcom.c:675:1: internal compiler error: Segmentation fault
fs/dlm/recover.c:956:1: internal compiler error: Segmentation fault
fs/dlm/recoverd.c:352:1: internal compiler error: Segmentation fault
fs/dlm/requestqueue.c:167:1: internal compiler error: Segmentation fault
fs/efivarfs/inode.c:184:1: internal compiler error: Segmentation fault
fs/eventfd.c:457:1: internal compiler error: Segmentation fault
fs/exportfs/expfs.c:586:1: internal compiler error: Segmentation fault
fs/ext2/xattr_user.c:50:1: internal compiler error: Segmentation fault
fs/fhandle.c:267:1: internal compiler error: Segmentation fault
fs/fs_context.c:717:1: internal compiler error: Segmentation fault
fs/fs_pin.c:97:1: internal compiler error: Segmentation fault
fs/fs_struct.c:168:1: internal compiler error: Segmentation fault
fs/fsopen.c:469:1: internal compiler error: Segmentation fault
fs/gfs2/lock_dlm.c:1403:1: internal compiler error: Segmentation fault
fs/ioctl.c:879:1: internal compiler error: Segmentation fault
fs/kernfs/dir.c:1760:1: internal compiler error: Segmentation fault
fs/kernfs/file.c:1022:1: internal compiler error: Segmentation fault
fs/kernfs/inode.c:446:1: internal compiler error: Segmentation fault
fs/kernfs/symlink.c:153:1: internal compiler error: Segmentation fault
fs/namei.c:5051:1: internal compiler error: Segmentation fault
fs/nls/nls_base.c:548:1: internal compiler error: Segmentation fault
fs/ntfs3/attrib.c:2083:1: internal compiler error: Segmentation fault
fs/ntfs3/attrlist.c:457:1: internal compiler error: Segmentation fault
fs/ntfs3/dir.c:592:1: internal compiler error: Segmentation fault
fs/ntfs3/file.c:1253:1: internal compiler error: Segmentation fault
fs/ntfs3/frecord.c:3284:1: internal compiler error: Segmentation fault
fs/ntfs3/fslog.c:5213:1: internal compiler error: Segmentation fault
fs/ntfs3/fsntfs.c:2506:1: internal compiler error: Segmentation fault
fs/ntfs3/index.c:2584:1: internal compiler error: Segmentation fault
fs/ntfs3/inode.c:1959:1: internal compiler error: Segmentation fault
fs/ntfs3/lib/decompress_common.c:319:1: internal compiler error: Segmentation fault
fs/ntfs3/lib/lzx_decompress.c:670:1: internal compiler error: Segmentation fault
fs/ntfs3/lznt.c:453:1: internal compiler error: Segmentation fault
fs/ntfs3/namei.c:386:1: internal compiler error: Segmentation fault
fs/ntfs3/record.c:602:1: internal compiler error: Segmentation fault
fs/ntfs3/run.c:1111:1: internal compiler error: Segmentation fault
fs/ntfs3/upcase.c:104:1: internal compiler error: Segmentation fault
fs/ntfs3/xattr.c:994:1: internal compiler error: Segmentation fault
fs/ocfs2/acl.c:409:1: internal compiler error: Segmentation fault
fs/ocfs2/alloc.c:7704:1: internal compiler error: Segmentation fault
fs/ocfs2/aops.c:2469:1: internal compiler error: Segmentation fault
fs/ocfs2/blockcheck.c:604:1: internal compiler error: Segmentation fault
fs/ocfs2/buffer_head_io.c:463:1: internal compiler error: Segmentation fault
fs/ocfs2/cluster/masklog.c:174:1: internal compiler error: Segmentation fault
fs/ocfs2/cluster/netdebug.c:504:1: internal compiler error: Segmentation fault
fs/ocfs2/cluster/quorum.c:326:1: internal compiler error: Segmentation fault
fs/ocfs2/cluster/tcp.c:2138:1: internal compiler error: Segmentation fault
fs/ocfs2/dcache.c:470:1: internal compiler error: Segmentation fault
fs/ocfs2/dir.c:4459:1: internal compiler error: Segmentation fault
fs/ocfs2/dlmfs/userdlm.c:669:1: internal compiler error: Segmentation fault
fs/ocfs2/dlmglue.c:4468:1: internal compiler error: Segmentation fault
fs/ocfs2/export.c:283:1: internal compiler error: Segmentation fault
fs/ocfs2/extent_map.c:1021:1: internal compiler error: Segmentation fault
fs/ocfs2/file.c:2811:1: internal compiler error: Segmentation fault
fs/ocfs2/filecheck.c:509:1: internal compiler error: Segmentation fault
fs/ocfs2/heartbeat.c:117:1: internal compiler error: Segmentation fault
fs/ocfs2/inode.c:1658:1: internal compiler error: Segmentation fault
fs/ocfs2/ioctl.c:935:1: internal compiler error: Segmentation fault
fs/ocfs2/journal.c:2384:1: internal compiler error: Segmentation fault
fs/ocfs2/localalloc.c:1323:1: internal compiler error: Segmentation fault
fs/ocfs2/locks.c:124:1: internal compiler error: Segmentation fault
fs/ocfs2/mmap.c:176:1: internal compiler error: Segmentation fault
fs/ocfs2/move_extents.c:1079:1: internal compiler error: Segmentation fault
fs/ocfs2/namei.c:2927:1: internal compiler error: Segmentation fault
fs/ocfs2/quota_global.c:1016:1: internal compiler error: Segmentation fault
fs/ocfs2/refcounttree.c:4828:1: internal compiler error: Segmentation fault
fs/ocfs2/reservations.c:826:1: internal compiler error: Segmentation fault
fs/ocfs2/resize.c:582:1: internal compiler error: Segmentation fault
fs/ocfs2/slot_map.c:528:1: internal compiler error: Segmentation fault
fs/ocfs2/suballoc.c:2866:1: internal compiler error: Segmentation fault
fs/ocfs2/symlink.c:93:1: internal compiler error: Segmentation fault
fs/ocfs2/sysfile.c:166:1: internal compiler error: Segmentation fault
fs/ocfs2/xattr.c:7362:1: internal compiler error: Segmentation fault
fs/omfs/bitmap.c:194:1: internal compiler error: Segmentation fault
fs/omfs/dir.c:461:1: internal compiler error: Segmentation fault
fs/omfs/file.c:383:1: internal compiler error: Segmentation fault
fs/open.c:1431:1: internal compiler error: Segmentation fault
fs/overlayfs/dir.c:1315:1: internal compiler error: Segmentation fault
fs/overlayfs/export.c:872:1: internal compiler error: Segmentation fault
fs/overlayfs/inode.c:1196:1: internal compiler error: Segmentation fault
fs/overlayfs/namei.c:1191:1: internal compiler error: Segmentation fault
fs/overlayfs/readdir.c:1233:1: internal compiler error: Segmentation fault
fs/overlayfs/util.c:1062:1: internal compiler error: Segmentation fault
fs/pnode.c:602:1: internal compiler error: Segmentation fault
fs/posix_acl.c:1018:1: internal compiler error: Segmentation fault
fs/pstore/pmsg.c:94:1: internal compiler error: Segmentation fault
fs/quota/quota.c:1013:1: internal compiler error: Segmentation fault
fs/quota/quota_tree.c:740:1: internal compiler error: Segmentation fault
fs/readdir.c:384:1: internal compiler error: Segmentation fault
fs/select.c:1123:1: internal compiler error: Segmentation fault
fs/smbfs_common/cifs_md4.c:197:1: internal compiler error: Segmentation fault
fs/splice.c:1721:1: internal compiler error: Segmentation fault
fs/squashfs/decompressor_multi.c:197:1: internal compiler error: Segmentation fault
fs/squashfs/zstd_wrapper.c:144:1: internal compiler error: Segmentation fault
fs/stack.c:76:1: internal compiler error: Segmentation fault
fs/statfs.c:264:1: internal compiler error: Segmentation fault
fs/sync.c:382:1: internal compiler error: Segmentation fault
fs/unicode/utf8-core.c:217:1: internal compiler error: Segmentation fault
fs/utimes.c:164:1: internal compiler error: Segmentation fault
fs/xattr.c:1132:1: internal compiler error: Segmentation fault
include/asm-generic/io.h:464:31: warning: performing pointer arithmetic on a null pointer has undefined behavior err: false
include/linux/cacheflush.h:12:46: warning: 'struct folio' declared inside parameter list will not be visible outside of this definition or declaration
include/linux/fortify-string.h:336:4: warning: call to __read_overflow2_field declared with 'warning' attribute: detected read beyond size of field (2nd parameter); maybe use struct_group()? [-Wattribute-warning]
include/linux/fortify-string.h:45:33: warning: '__builtin_memcpy' offset [0, 31] is out of the bounds [0, 0] [-Warray-bounds]
include/linux/fortify-string.h:45:33: warning: '__builtin_memcpy' offset [0, 511] is out of the bounds [0, 0] [-Warray-bounds]
include/linux/module.h:274:46: internal compiler error: Segmentation fault
include/linux/rcupdate.h:414:36: error: dereferencing pointer to incomplete type 'struct css_set'
ipc/msgutil.c:184:1: internal compiler error: Segmentation fault
kernel/acct.c:602:1: internal compiler error: Segmentation fault
kernel/auditsc.c:2997:1: internal compiler error: Segmentation fault
kernel/bpf/offload.c:712:1: internal compiler error: Segmentation fault
kernel/bpf/reuseport_array.c:351:1: internal compiler error: Segmentation fault
kernel/cgroup/freezer.c:323:1: internal compiler error: Segmentation fault
kernel/dma/direct.c:631:1: internal compiler error: Segmentation fault
kernel/irq/chip.c:1599:1: internal compiler error: Segmentation fault
kernel/printk/printk_ringbuffer.c:2082:1: internal compiler error: Segmentation fault
kernel/printk/printk_safe.c:52:1: internal compiler error: Segmentation fault
kernel/range.c:165:1: internal compiler error: Segmentation fault
kernel/rcu/rcu_segcblist.c:633:1: internal compiler error: Segmentation fault
kernel/rcu/sync.c:206:1: internal compiler error: Segmentation fault
kernel/sched/core.c:5268:20: warning: no previous prototype for function 'task_sched_runtime' [-Wmissing-prototypes]
kernel/sched/core.c:8979:6: warning: no previous prototype for 'idle_task_exit' [-Wmissing-prototypes]
kernel/sched/core.c:8979:6: warning: no previous prototype for function 'idle_task_exit' [-Wmissing-prototypes]
kernel/sched/core.c:9214:5: warning: no previous prototype for 'sched_cpu_activate' [-Wmissing-prototypes]
kernel/sched/core.c:9214:5: warning: no previous prototype for function 'sched_cpu_activate' [-Wmissing-prototypes]
kernel/sched/core.c:9259:5: warning: no previous prototype for 'sched_cpu_deactivate' [-Wmissing-prototypes]
kernel/sched/core.c:9259:5: warning: no previous prototype for function 'sched_cpu_deactivate' [-Wmissing-prototypes]
kernel/sched/core.c:9334:5: warning: no previous prototype for 'sched_cpu_starting' [-Wmissing-prototypes]
kernel/sched/core.c:9334:5: warning: no previous prototype for function 'sched_cpu_starting' [-Wmissing-prototypes]
kernel/sched/core.c:9355:5: warning: no previous prototype for 'sched_cpu_wait_empty' [-Wmissing-prototypes]
kernel/sched/core.c:9355:5: warning: no previous prototype for function 'sched_cpu_wait_empty' [-Wmissing-prototypes]
kernel/sched/core.c:9397:5: warning: no previous prototype for 'sched_cpu_dying' [-Wmissing-prototypes]
kernel/sched/core.c:9397:5: warning: no previous prototype for function 'sched_cpu_dying' [-Wmissing-prototypes]
kernel/sched/core.c:9420:13: warning: no previous prototype for function 'sched_init_smp' [-Wmissing-prototypes]
kernel/sched/core.c:9453:13: warning: no previous prototype for function 'sched_init_smp' [-Wmissing-prototypes]
kernel/sched/core.c:9481:13: warning: no previous prototype for function 'sched_init' [-Wmissing-prototypes]
kernel/sched/cpuacct.c:367:1: internal compiler error: Segmentation fault
kernel/sched/cputime.c:630:1: internal compiler error: Segmentation fault
kernel/sched/deadline.c:2955:1: internal compiler error: Segmentation fault
kernel/sched/fair.c:10665:6: warning: no previous prototype for 'nohz_balance_enter_idle' [-Wmissing-prototypes]
kernel/sched/fair.c:10665:6: warning: no previous prototype for function 'nohz_balance_enter_idle' [-Wmissing-prototypes]
kernel/sched/loadavg.c:245:6: warning: no previous prototype for 'calc_load_nohz_start' [-Wmissing-prototypes]
kernel/sched/loadavg.c:245:6: warning: no previous prototype for function 'calc_load_nohz_start' [-Wmissing-prototypes]
kernel/sched/loadavg.c:258:6: warning: no previous prototype for 'calc_load_nohz_remote' [-Wmissing-prototypes]
kernel/sched/loadavg.c:258:6: warning: no previous prototype for function 'calc_load_nohz_remote' [-Wmissing-prototypes]
kernel/sched/loadavg.c:263:6: warning: no previous prototype for 'calc_load_nohz_stop' [-Wmissing-prototypes]
kernel/sched/loadavg.c:263:6: warning: no previous prototype for function 'calc_load_nohz_stop' [-Wmissing-prototypes]
kernel/sched/membarrier.c:630:1: internal compiler error: Segmentation fault
kernel/sched/rt.c:2990:1: internal compiler error: Segmentation fault
kernel/sched/sched.h:87:11: fatal error: 'asm/paravirt_api_clock.h' file not found
kernel/sched/sched.h:87:11: fatal error: asm/paravirt_api_clock.h: No such file or directory
kernel/sys.c:2706:1: internal compiler error: Segmentation fault
kernel/task_work.c:169:1: internal compiler error: Segmentation fault
kernel/trace/trace_clock.c:158:1: internal compiler error: Segmentation fault
kernel/umh.c:564:1: internal compiler error: Segmentation fault
lib/asn1_decoder.c:521:1: internal compiler error: Segmentation fault
lib/cmdline.c:275:1: internal compiler error: Segmentation fault
lib/crc-itu-t.c:66:1: internal compiler error: Segmentation fault
lib/crc16.c:64:1: internal compiler error: Segmentation fault
lib/crypto/aes.c:356:1: internal compiler error: Segmentation fault
lib/crypto/blake2s-generic.c:115:1: internal compiler error: Segmentation fault
lib/crypto/poly1305-donna32.c:205:1: internal compiler error: Segmentation fault
lib/crypto/poly1305.c:78:1: internal compiler error: Segmentation fault
lib/dim/dim.c:83:1: internal compiler error: Segmentation fault
lib/dim/net_dim.c:246:1: internal compiler error: Segmentation fault
lib/dim/rdma_dim.c:108:1: internal compiler error: Segmentation fault
lib/dynamic_queue_limits.c:138:1: internal compiler error: Segmentation fault
lib/earlycpio.c:141:1: internal compiler error: Segmentation fault
lib/extable.c:118:1: internal compiler error: Segmentation fault
lib/fdt.c:3: internal compiler error: Segmentation fault
lib/fdt_ro.c:3: internal compiler error: Segmentation fault
lib/fdt_rw.c:3: internal compiler error: Segmentation fault
lib/fdt_sw.c:3: internal compiler error: Segmentation fault
lib/fdt_wip.c:3: internal compiler error: Segmentation fault
lib/flex_proportions.c:282:1: internal compiler error: Segmentation fault
lib/interval_tree.c:17:1: internal compiler error: Segmentation fault
lib/iov_iter.c:2067:1: internal compiler error: Segmentation fault
lib/is_single_threaded.c:54:1: internal compiler error: Segmentation fault
lib/kunit/assert.c:206:1: internal compiler error: Segmentation fault
lib/linear_ranges.c:276:1: internal compiler error: Segmentation fault
lib/logic_pio.c:232:1: internal compiler error: Segmentation fault
lib/lz4/lz4_compress.c:940:1: internal compiler error: Segmentation fault
lib/lz4/lz4_decompress.c:715:1: internal compiler error: Segmentation fault
lib/lzo/lzo1x_compress.c:400:1: internal compiler error: Segmentation fault
lib/lzo/lzo1x_decompress_safe.c:294:1: internal compiler error: Segmentation fault
lib/math/rational.c:111:1: internal compiler error: Segmentation fault
lib/mpi/generic_mpih-mul2.c:47:1: internal compiler error: Segmentation fault
lib/mpi/generic_mpih-mul3.c:48:1: internal compiler error: Segmentation fault
lib/mpi/mpi-div.c:234:1: internal compiler error: Segmentation fault
lib/mpi/mpi-mod.c:157:1: internal compiler error: Segmentation fault
lib/mpi/mpi-mul.c:91:1: internal compiler error: Segmentation fault
lib/mpi/mpih-div.c:517:1: internal compiler error: Segmentation fault
lib/mpi/mpih-mul.c:509:1: internal compiler error: Segmentation fault
lib/net_utils.c:27:1: internal compiler error: Segmentation fault
lib/nlattr.c:1121:1: internal compiler error: Segmentation fault
lib/oid_registry.c:199:1: internal compiler error: Segmentation fault
lib/plist.c:173:1: internal compiler error: Segmentation fault
lib/raid6/int1.c:154:1: internal compiler error: Segmentation fault
lib/raid6/int2.c:180:1: internal compiler error: Segmentation fault
lib/raid6/int4.c:232:1: internal compiler error: Segmentation fault
lib/raid6/int8.c:336:1: internal compiler error: Segmentation fault
lib/seq_buf.c:397:1: internal compiler error: Segmentation fault
lib/stackinit_kunit.c:259:8: warning: Excessive padding in 'struct test_big_hole' (124 padding bytes, where 60 is optimal).
lib/stackinit_kunit.c:339:1: warning: Address of stack memory associated with local variable 'var' is still referred to by the global variable 'fill_start' upon returning to the caller. This will be a dangling reference [clang-analyzer-core.StackAddressEscape]
lib/stackinit_kunit.c:339:1: warning: Address of stack memory associated with local variable 'var' is still referred to by the global variable 'target_start' upon returning to the caller. This will be a dangling reference [clang-analyzer-core.StackAddressEscape]
lib/stackinit_kunit.c:343:1: warning: Undefined or garbage value returned to caller [clang-analyzer-core.uninitialized.UndefReturn]
lib/syscall.c:88:1: internal compiler error: Segmentation fault
lib/zlib_deflate/deflate.c:1146:1: internal compiler error: Segmentation fault
lib/zlib_deflate/deftree.c:1058:1: internal compiler error: Segmentation fault
lib/zlib_inflate/inffast.c:325:1: internal compiler error: Segmentation fault
lib/zlib_inflate/inflate.c:814:1: internal compiler error: Segmentation fault
lib/zstd/common/entropy_common.c:357:1: internal compiler error: Segmentation fault
lib/zstd/common/fse_decompress.c:386:1: internal compiler error: Segmentation fault
lib/zstd/compress/fse_compress.c:622:1: internal compiler error: Segmentation fault
lib/zstd/compress/hist.c:164:1: internal compiler error: Segmentation fault
lib/zstd/compress/huf_compress.c:904:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_compress.c:5109:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_compress_literals.c:158:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_compress_sequences.c:439:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_compress_superblock.c:852:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_double_fast.c:519:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_fast.c:496:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_lazy.c:1414:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_ldm.c:686:1: internal compiler error: Segmentation fault
lib/zstd/compress/zstd_opt.c:1354:1: internal compiler error: Segmentation fault
lib/zstd/decompress/huf_decompress.c:1205:1: internal compiler error: Segmentation fault
lib/zstd/decompress/zstd_ddict.c:241:1: internal compiler error: Segmentation fault
lib/zstd/decompress/zstd_decompress.c:2085:1: internal compiler error: Segmentation fault
lib/zstd/decompress/zstd_decompress_block.c:1540:1: internal compiler error: Segmentation fault
m68k-linux-ld: arch/m68k/kernel/machine_kexec.c:56: undefined reference to `m68k_cputype'
m68k-linux-ld: arch/m68k/kernel/time.c:110: undefined reference to `mach_set_rtc_pll'
make[1]: *** No rule to make target 'arch/nds32/Makefile'.
mips64-linux-ld: page_alloc.c:(.init.text+0x1f38): undefined reference to `node_data'
mm/folio-compat.c:153:1: internal compiler error: Segmentation fault
mm/hmm.c:602:1: internal compiler error: Segmentation fault
mm/interval_tree.c:103:1: internal compiler error: Segmentation fault
mm/mmu_notifier.c:1120:1: internal compiler error: Segmentation fault
mm/ptdump.c:165:1: internal compiler error: Segmentation fault
nd_perf.c:(.text+0x158): undefined reference to `perf_pmu_migrate_context'
nd_perf.c:(.text+0x226): undefined reference to `perf_pmu_migrate_context'
nd_perf.c:(.text+0x4f8): undefined reference to `perf_pmu_register'
nd_perf.c:(.text+0x572): undefined reference to `perf_pmu_unregister'
nd_perf.c:(.text+0x604): undefined reference to `perf_pmu_register'
nd_perf.c:(.text+0x682): undefined reference to `perf_pmu_migrate_context'
nd_perf.c:(.text+0x738): undefined reference to `perf_pmu_unregister'
net/6lowpan/iphc.c:1313:1: internal compiler error: Segmentation fault
net/6lowpan/ndisc.c:233:1: internal compiler error: Segmentation fault
net/6lowpan/nhc.c:234:1: internal compiler error: Segmentation fault
net/802/garp.c:649:1: internal compiler error: Segmentation fault
net/802/mrp.c:935:1: internal compiler error: Segmentation fault
net/ax25/ax25_addr.c:303:1: internal compiler error: Segmentation fault
net/ax25/ax25_iface.c:214:1: internal compiler error: Segmentation fault
net/ax25/ax25_in.c:451:1: internal compiler error: Segmentation fault
net/ax25/ax25_ip.c:246:1: internal compiler error: Segmentation fault
net/ax25/ax25_out.c:386:1: internal compiler error: Segmentation fault
net/ax25/ax25_std_in.c:443:1: internal compiler error: Segmentation fault
net/ax25/ax25_std_timer.c:175:1: internal compiler error: Segmentation fault
net/ax25/ax25_subr.c:288:1: internal compiler error: Segmentation fault
net/ax25/ax25_timer.c:222:1: internal compiler error: Segmentation fault
net/bridge/br_if.c:787:1: internal compiler error: Segmentation fault
net/bridge/br_switchdev.c:756:1: internal compiler error: Segmentation fault
net/caif/cfcnfg.c:612:1: internal compiler error: Segmentation fault
net/caif/cfctrl.c:634:1: internal compiler error: Segmentation fault
net/caif/cfdbgl.c:55:1: internal compiler error: Segmentation fault
net/caif/cfdgml.c:113:1: internal compiler error: Segmentation fault
net/caif/cffrml.c:197:1: internal compiler error: Segmentation fault
net/caif/cfmuxl.c:267:1: internal compiler error: Segmentation fault
net/caif/cfpkt_skbuff.c:382:1: internal compiler error: Segmentation fault
net/caif/cfrfml.c:299:1: internal compiler error: Segmentation fault
net/caif/cfserl.c:192:1: internal compiler error: Segmentation fault
net/caif/cfsrvl.c:220:1: internal compiler error: Segmentation fault
net/caif/cfutill.c:104:1: internal compiler error: Segmentation fault
net/caif/cfveil.c:101:1: internal compiler error: Segmentation fault
net/caif/cfvidl.c:65:1: internal compiler error: Segmentation fault
net/can/j1939/transport.c:2195:1: internal compiler error: Segmentation fault
net/ceph/armor.c:106:1: internal compiler error: Segmentation fault
net/ceph/auth.c:659:1: internal compiler error: Segmentation fault
net/ceph/auth_none.c:146:1: internal compiler error: Segmentation fault
net/ceph/auth_x.c:1122:1: internal compiler error: Segmentation fault
net/ceph/buffer.c:59:1: internal compiler error: Segmentation fault
net/ceph/cls_lock_client.c:431:1: internal compiler error: Segmentation fault
net/ceph/crush/crush.c:142:1: internal compiler error: Segmentation fault
net/ceph/crush/mapper.c:1099:1: internal compiler error: Segmentation fault
net/ceph/decode.c:193:1: internal compiler error: Segmentation fault
net/ceph/messenger_v1.c:1548:1: internal compiler error: Segmentation fault
net/ceph/messenger_v2.c:3581:1: internal compiler error: Segmentation fault
net/ceph/mon_client.c:1586:1: internal compiler error: Segmentation fault
net/ceph/msgpool.c:94:1: internal compiler error: Segmentation fault
net/ceph/osdmap.c:3090:1: internal compiler error: Segmentation fault
net/ceph/pagelist.c:171:1: internal compiler error: Segmentation fault
net/ceph/pagevec.c:166:1: internal compiler error: Segmentation fault
net/ceph/snapshot.c:63:1: internal compiler error: Segmentation fault
net/ceph/string_table.c:106:1: internal compiler error: Segmentation fault
net/ceph/striper.c:278:1: internal compiler error: Segmentation fault
net/core/datagram.c:838:1: internal compiler error: Segmentation fault
net/core/dev_addr_lists.c:1048:1: internal compiler error: Segmentation fault
net/core/dst.c:355:1: internal compiler error: Segmentation fault
net/core/dst_cache.c:183:1: internal compiler error: Segmentation fault
net/core/flow_offload.c:597:1: internal compiler error: Segmentation fault
net/core/gen_estimator.c:278:1: internal compiler error: Segmentation fault
net/core/gen_stats.c:485:1: internal compiler error: Segmentation fault
net/core/gro.c:770:1: internal compiler error: Segmentation fault
net/core/gro_cells.c:113:1: internal compiler error: Segmentation fault
net/core/link_watch.c:279:1: internal compiler error: Segmentation fault
net/core/lwtunnel.c:424:1: internal compiler error: Segmentation fault
net/core/net-traces.c:63:1: internal compiler error: Segmentation fault
net/core/of_net.c:170:1: internal compiler error: Segmentation fault
net/core/scm.c:367:1: internal compiler error: Segmentation fault
net/core/secure_seq.c:192:1: internal compiler error: Segmentation fault
net/core/sock.c:3928:1: internal compiler error: Segmentation fault
net/core/sock_reuseport.c:649:1: internal compiler error: Segmentation fault
net/core/stream.c:212:1: internal compiler error: Segmentation fault
net/core/timestamping.c:71:1: internal compiler error: Segmentation fault
net/core/tso.c:97:1: internal compiler error: Segmentation fault
net/core/utils.c:486:1: internal compiler error: Segmentation fault
net/dccp/ccids/ccid2.c:792:1: internal compiler error: Segmentation fault
net/dccp/input.c:739:1: internal compiler error: Segmentation fault
net/dccp/output.c:709:1: internal compiler error: Segmentation fault
net/dccp/qpolicy.c:136:1: internal compiler error: Segmentation fault
net/devres.c:95:1: internal compiler error: Segmentation fault
net/dns_resolver/dns_query.c:172:1: internal compiler error: Segmentation fault
net/ethtool/bitset.c:831:1: internal compiler error: Segmentation fault
net/ethtool/cabletest.c:433:1: internal compiler error: Segmentation fault
net/ethtool/channels.c:224:1: internal compiler error: Segmentation fault
net/ethtool/coalesce.c:341:1: internal compiler error: Segmentation fault
net/ethtool/common.c:596:1: internal compiler error: Segmentation fault
net/ethtool/eeprom.c:240:1: internal compiler error: Segmentation fault
net/ethtool/features.c:288:1: internal compiler error: Segmentation fault
net/ethtool/fec.c:310:1: internal compiler error: Segmentation fault
net/ethtool/ioctl.c:3351:1: internal compiler error: Segmentation fault
net/ethtool/linkinfo.c:154:1: internal compiler error: Segmentation fault
net/ethtool/linkmodes.c:363:1: internal compiler error: Segmentation fault
net/ethtool/linkstate.c:182:1: internal compiler error: Segmentation fault
net/ethtool/module.c:180:1: internal compiler error: Segmentation fault
net/ethtool/pause.c:186:1: internal compiler error: Segmentation fault
net/ethtool/privflags.c:201:1: internal compiler error: Segmentation fault
net/ethtool/rings.c:201:1: internal compiler error: Segmentation fault
net/ethtool/stats.c:412:1: internal compiler error: Segmentation fault
net/ethtool/strset.c:480:1: internal compiler error: Segmentation fault
net/ethtool/tunnels.c:298:1: internal compiler error: Segmentation fault
net/ethtool/wol.c:170:1: internal compiler error: Segmentation fault
net/ieee802154/6lowpan/rx.c:323:1: internal compiler error: Segmentation fault
net/ieee802154/6lowpan/tx.c:309:1: internal compiler error: Segmentation fault
net/ieee802154/header_ops.c:318:1: internal compiler error: Segmentation fault
net/ipv4/datagram.c:128:1: internal compiler error: Segmentation fault
net/ipv4/fib_semantics.c:2276:1: internal compiler error: Segmentation fault
net/ipv4/inet_connection_sock.c:1296:1: internal compiler error: Segmentation fault
net/ipv4/inet_timewait_sock.c:302:1: internal compiler error: Segmentation fault
net/ipv4/ip_forward.c:175:1: internal compiler error: Segmentation fault
net/ipv4/ip_input.c:645:1: internal compiler error: Segmentation fault
net/ipv4/ip_options.c:654:1: internal compiler error: Segmentation fault
net/ipv4/ip_sockglue.c:1794:1: internal compiler error: Segmentation fault
net/ipv4/ip_tunnel.c:1280:1: internal compiler error: Segmentation fault
net/ipv4/ipmr_base.c:437:1: internal compiler error: Segmentation fault
net/ipv4/metrics.c:92:1: internal compiler error: Segmentation fault
net/ipv4/netlink.c:33:1: internal compiler error: Segmentation fault
net/ipv4/protocol.c:70:1: internal compiler error: Segmentation fault
net/ipv4/syncookies.c:449:1: internal compiler error: Segmentation fault
net/ipv4/tcp_fastopen.c:591:1: internal compiler error: Segmentation fault
net/ipv4/tcp_input.c:5012:2: warning: Value stored to 'reason' is never read [clang-analyzer-deadcode.DeadStores]
net/ipv4/tcp_input.c:6967:1: internal compiler error: Segmentation fault
net/ipv4/tcp_minisocks.c:853:1: internal compiler error: Segmentation fault
net/ipv4/tcp_rate.c:204:1: internal compiler error: Segmentation fault
net/ipv4/tcp_recovery.c:240:1: internal compiler error: Segmentation fault
net/ipv4/tcp_timer.c:798:1: internal compiler error: Segmentation fault
net/ipv4/tcp_ulp.c:161:1: internal compiler error: Segmentation fault
net/ipv4/udp_tunnel_core.c:205:1: internal compiler error: Segmentation fault
net/ipv4/xfrm4_input.c:172:1: internal compiler error: Segmentation fault
net/ipv6/addrconf_core.c:273:1: internal compiler error: Segmentation fault
net/ipv6/datagram.c:1066:1: internal compiler error: Segmentation fault
net/ipv6/exthdrs_core.c:280:1: internal compiler error: Segmentation fault
net/ipv6/inet6_connection_sock.c:154:1: internal compiler error: Segmentation fault
net/ipv6/inet6_hashtables.c:344:1: internal compiler error: Segmentation fault
net/ipv6/ip6_checksum.c:137:1: internal compiler error: Segmentation fault
net/ipv6/ip6_input.c:573:1: internal compiler error: Segmentation fault
net/ipv6/ip6_output.c:2004:1: internal compiler error: Segmentation fault
net/ipv6/ip6_udp_tunnel.c:114:1: internal compiler error: Segmentation fault
net/ipv6/ipv6_sockglue.c:1509:1: internal compiler error: Segmentation fault
net/ipv6/mcast_snoop.c:190:1: internal compiler error: Segmentation fault
net/ipv6/output_core.c:165:1: internal compiler error: Segmentation fault
net/ipv6/protocol.c:70:1: internal compiler error: Segmentation fault
net/ipv6/rpl.c:124:1: internal compiler error: Segmentation fault
net/ipv6/syncookies.c:264:1: internal compiler error: Segmentation fault
net/ipv6/udp_offload.c:206:1: internal compiler error: Segmentation fault
net/ipv6/xfrm6_input.c:255:1: internal compiler error: Segmentation fault
net/ipv6/xfrm6_output.c:96:1: internal compiler error: Segmentation fault
net/l3mdev/l3mdev.c:310:1: internal compiler error: Segmentation fault
net/llc/llc_input.c:227:1: internal compiler error: Segmentation fault
net/llc/llc_output.c:74:1: internal compiler error: Segmentation fault
net/mac80211/aead_api.c:113:1: internal compiler error: Segmentation fault
net/mac80211/aes_cmac.c:92:1: internal compiler error: Segmentation fault
net/mac80211/aes_gmac.c:92:1: internal compiler error: Segmentation fault
net/mac80211/agg-rx.c:550:1: internal compiler error: Segmentation fault
net/mac80211/agg-tx.c:1042:1: internal compiler error: Segmentation fault
net/mac80211/airtime.c:711:1: internal compiler error: Segmentation fault
net/mac80211/chan.c:1904:1: internal compiler error: Segmentation fault
net/mac80211/debugfs.c:720:1: internal compiler error: Segmentation fault
net/mac80211/debugfs_key.c:472:1: internal compiler error: Segmentation fault
net/mac80211/debugfs_netdev.c:868:1: internal compiler error: Segmentation fault
net/mac80211/debugfs_sta.c:1078:1: internal compiler error: Segmentation fault
net/mac80211/driver-ops.c:346:1: internal compiler error: Segmentation fault
net/mac80211/ethtool.c:246:1: internal compiler error: Segmentation fault
net/mac80211/fils_aead.c:333:1: internal compiler error: Segmentation fault
net/mac80211/he.c:237:1: internal compiler error: Segmentation fault
net/mac80211/ht.c:569:1: internal compiler error: Segmentation fault
net/mac80211/iface.c:2289:1: internal compiler error: Segmentation fault
net/mac80211/key.c:1358:1: internal compiler error: Segmentation fault
net/mac80211/michael.c:83:1: internal compiler error: Segmentation fault
net/mac80211/ocb.c:245:1: internal compiler error: Segmentation fault
net/mac80211/offchannel.c:992:1: internal compiler error: Segmentation fault
net/mac80211/pm.c:201:1: internal compiler error: Segmentation fault
net/mac80211/rate.c:1010:1: internal compiler error: Segmentation fault
net/mac80211/rx.c:5023:1: internal compiler error: Segmentation fault
net/mac80211/s1g.c:198:1: internal compiler error: Segmentation fault
net/mac80211/scan.c:1448:1: internal compiler error: Segmentation fault
net/mac80211/spectmgmt.c:249:1: internal compiler error: Segmentation fault
net/mac80211/sta_info.c:2605:1: internal compiler error: Segmentation fault
net/mac80211/status.c:1286:1: internal compiler error: Segmentation fault
net/mac80211/tdls.c:2008:1: internal compiler error: Segmentation fault
net/mac80211/tkip.c:323:1: internal compiler error: Segmentation fault
net/mac80211/trace.c:13: internal compiler error: Segmentation fault
net/mac80211/tx.c:5811:1: internal compiler error: Segmentation fault
net/mac80211/util.c:4635:1: internal compiler error: Segmentation fault
net/mac80211/vht.c:697:1: internal compiler error: Segmentation fault
net/mac80211/wep.c:306:1: internal compiler error: Segmentation fault
net/mac80211/wme.c:290:1: internal compiler error: Segmentation fault
net/mac80211/wpa.c:1272:1: internal compiler error: Segmentation fault
net/ncsi/ncsi-aen.c:245:1: internal compiler error: Segmentation fault
net/ncsi/ncsi-cmd.c:406:1: internal compiler error: Segmentation fault
net/ncsi/ncsi-rsp.c:1259:1: internal compiler error: Segmentation fault
net/netlabel/netlabel_addrlist.c:367:1: internal compiler error: Segmentation fault
net/netrom/nr_dev.c:178:1: internal compiler error: Segmentation fault
net/netrom/nr_in.c:301:1: internal compiler error: Segmentation fault
net/netrom/nr_out.c:270:1: internal compiler error: Segmentation fault
net/netrom/nr_route.c:983:1: internal compiler error: Segmentation fault
net/netrom/nr_subr.c:278:1: internal compiler error: Segmentation fault
net/netrom/nr_timer.c:247:1: internal compiler error: Segmentation fault
net/nfc/hci/command.c:344:1: internal compiler error: Segmentation fault
net/nfc/hci/hcp.c:138:1: internal compiler error: Segmentation fault
net/nfc/hci/llc_nop.c:86:1: internal compiler error: Segmentation fault
net/nfc/hci/llc_shdlc.c:818:1: internal compiler error: Segmentation fault
net/openvswitch/actions.c:1623:1: internal compiler error: Segmentation fault
net/openvswitch/dp_notify.c:86:1: internal compiler error: Segmentation fault
net/openvswitch/flow.c:974:1: internal compiler error: Segmentation fault
net/openvswitch/flow_netlink.c:3667:1: internal compiler error: Segmentation fault
net/openvswitch/flow_table.c:1222:1: internal compiler error: Segmentation fault
net/openvswitch/meter.c:765:1: internal compiler error: Segmentation fault
net/openvswitch/openvswitch_trace.c:9: internal compiler error: Segmentation fault
net/openvswitch/vport-internal_dev.c:254:1: internal compiler error: Segmentation fault
net/openvswitch/vport.c:516:1: internal compiler error: Segmentation fault
net/rds/af_rds.c:963:1: internal compiler error: Segmentation fault
net/rds/bind.c:283:1: internal compiler error: Segmentation fault
net/rds/cong.c:428:1: internal compiler error: Segmentation fault
net/rds/connection.c:948:1: internal compiler error: Segmentation fault
net/rds/info.c:242:1: internal compiler error: Segmentation fault
net/rds/message.c:522:1: internal compiler error: Segmentation fault
net/rds/page.c:167:1: internal compiler error: Segmentation fault
net/rds/rdma.c:958:1: internal compiler error: Segmentation fault
net/rds/recv.c:830:1: internal compiler error: Segmentation fault
net/rds/send.c:1515:1: internal compiler error: Segmentation fault
net/rds/threads.c:311:1: internal compiler error: Segmentation fault
net/rds/transport.c:169:1: internal compiler error: Segmentation fault
net/rxrpc/call_accept.c:491:1: internal compiler error: Segmentation fault
net/rxrpc/call_event.c:446:1: internal compiler error: Segmentation fault
net/rxrpc/call_object.c:703:1: internal compiler error: Segmentation fault
net/rxrpc/conn_client.c:1121:1: internal compiler error: Segmentation fault
net/rxrpc/conn_event.c:499:1: internal compiler error: Segmentation fault
net/rxrpc/conn_object.c:486:1: internal compiler error: Segmentation fault
net/rxrpc/conn_service.c:203:1: internal compiler error: Segmentation fault
net/rxrpc/input.c:1468:1: internal compiler error: Segmentation fault
net/rxrpc/insecure.c:102:1: internal compiler error: Segmentation fault
net/rxrpc/key.c:695:1: internal compiler error: Segmentation fault
net/rxrpc/local_event.c:115:1: internal compiler error: Segmentation fault
net/rxrpc/local_object.c:467:1: internal compiler error: Segmentation fault
net/rxrpc/output.c:675:1: internal compiler error: Segmentation fault
net/rxrpc/peer_event.c:417:1: internal compiler error: Segmentation fault
net/rxrpc/peer_object.c:526:1: internal compiler error: Segmentation fault
net/rxrpc/recvmsg.c:818:1: internal compiler error: Segmentation fault
net/rxrpc/rtt.c:195:1: internal compiler error: Segmentation fault
net/rxrpc/sendmsg.c:860:1: internal compiler error: Segmentation fault
net/rxrpc/server_key.c:143:1: internal compiler error: Segmentation fault
net/rxrpc/skbuff.c:96:1: internal compiler error: Segmentation fault
net/rxrpc/utils.c:44:1: internal compiler error: Segmentation fault
net/sched/sch_fifo.c:271:1: internal compiler error: Segmentation fault
net/sched/sch_frag.c:152:1: internal compiler error: Segmentation fault
net/sched/sch_generic.c:1607:1: internal compiler error: Segmentation fault
net/sctp/associola.c:1731:1: internal compiler error: Segmentation fault
net/sctp/auth.c:1079:1: internal compiler error: Segmentation fault
net/sctp/bind_addr.c:569:1: internal compiler error: Segmentation fault
net/sctp/chunk.c:353:1: internal compiler error: Segmentation fault
net/sctp/endpointola.c:417:1: internal compiler error: Segmentation fault
net/sctp/input.c:1347:1: internal compiler error: Segmentation fault
net/sctp/inqueue.c:237:1: internal compiler error: Segmentation fault
net/sctp/ipv6.c:1217:1: internal compiler error: Segmentation fault
net/sctp/output.c:864:1: internal compiler error: Segmentation fault
net/sctp/outqueue.c:1915:1: internal compiler error: Segmentation fault
net/sctp/sm_make_chunk.c:3937:1: internal compiler error: Segmentation fault
net/sctp/sm_sideeffect.c:1818:1: internal compiler error: Segmentation fault
net/sctp/sm_statefuns.c:6677:1: internal compiler error: Segmentation fault
net/sctp/socket.c:9707:1: internal compiler error: Segmentation fault
net/sctp/stream.c:1089:1: internal compiler error: Segmentation fault
net/sctp/stream_interleave.c:1360:1: internal compiler error: Segmentation fault
net/sctp/stream_sched.c:273:1: internal compiler error: Segmentation fault
net/sctp/stream_sched_prio.c:337:1: internal compiler error: Segmentation fault
net/sctp/stream_sched_rr.c:191:1: internal compiler error: Segmentation fault
net/sctp/transport.c:853:1: internal compiler error: Segmentation fault
net/sctp/tsnmap.c:364:1: internal compiler error: Segmentation fault
net/sctp/ulpevent.c:1190:1: internal compiler error: Segmentation fault
net/sctp/ulpqueue.c:1136:1: internal compiler error: Segmentation fault
net/switchdev/switchdev.c:754:1: internal compiler error: Segmentation fault
net/tls/tls_device_fallback.c:480:1: internal compiler error: Segmentation fault
net/tls/tls_sw.c:2599:1: internal compiler error: Segmentation fault
net/tls/trace.c:9: internal compiler error: Segmentation fault
net/unix/scm.c:154:1: internal compiler error: Segmentation fault
net/vmw_vsock/af_vsock_tap.c:110:1: internal compiler error: Segmentation fault
net/vmw_vsock/virtio_transport_common.c:1352:1: internal compiler error: Segmentation fault
net/vmw_vsock/vsock_addr.c:69:1: internal compiler error: Segmentation fault
net/wireless/ap.c:60:1: internal compiler error: Segmentation fault
net/wireless/chan.c:1390:1: internal compiler error: Segmentation fault
net/wireless/debugfs.c:110:1: internal compiler error: Segmentation fault
net/wireless/ethtool.c:29:1: internal compiler error: Segmentation fault
net/wireless/ibss.c:542:1: internal compiler error: Segmentation fault
net/wireless/mesh.c:297:1: internal compiler error: Segmentation fault
net/wireless/mlme.c:1115:1: internal compiler error: Segmentation fault
net/wireless/ocb.c:88:1: internal compiler error: Segmentation fault
net/wireless/of.c:138:1: internal compiler error: Segmentation fault
net/wireless/pmsr.c:663:1: internal compiler error: Segmentation fault
net/wireless/radiotap.c:370:1: internal compiler error: Segmentation fault
net/wireless/scan.c:3223:1: internal compiler error: Segmentation fault
net/wireless/sme.c:1352:1: internal compiler error: Segmentation fault
net/wireless/sysfs.c:176:1: internal compiler error: Segmentation fault
net/wireless/trace.c:6: internal compiler error: Segmentation fault
net/wireless/util.c:2286:1: internal compiler error: Segmentation fault
net/wireless/wext-compat.c:1635:1: internal compiler error: Segmentation fault
net/wireless/wext-sme.c:397:1: internal compiler error: Segmentation fault
net/xdp/xdp_umem.c:260:1: internal compiler error: Segmentation fault
net/xdp/xsk_buff_pool.c:656:1: internal compiler error: Segmentation fault
net/xdp/xsk_queue.c:57:1: internal compiler error: Segmentation fault
net/xdp/xskmap.c:272:1: internal compiler error: Segmentation fault
net/xfrm/xfrm_algo.c:866:1: internal compiler error: Segmentation fault
net/xfrm/xfrm_hash.c:40:1: internal compiler error: Segmentation fault
net/xfrm/xfrm_ipcomp.c:373:1: internal compiler error: Segmentation fault
net/xfrm/xfrm_output.c:909:1: internal compiler error: Segmentation fault
net/xfrm/xfrm_replay.c:791:1: internal compiler error: Segmentation fault
page_alloc.c:(.init.text+0x1f18): undefined reference to `node_data'
pahole: .tmp_vmlinux.btf: No such file or directory
security/apparmor/audit.c:247:1: internal compiler error: Segmentation fault
security/apparmor/capability.c:158:1: internal compiler error: Segmentation fault
security/apparmor/domain.c:1460:1: internal compiler error: Segmentation fault
security/apparmor/file.c:711:1: internal compiler error: Segmentation fault
security/apparmor/ipc.c:218:1: internal compiler error: Segmentation fault
security/apparmor/label.c:2160:1: internal compiler error: Segmentation fault
security/apparmor/lib.c:525:1: internal compiler error: Segmentation fault
security/apparmor/match.c:792:1: internal compiler error: Segmentation fault
security/apparmor/mount.c:739:1: internal compiler error: Segmentation fault
security/apparmor/net.c:255:1: internal compiler error: Segmentation fault
security/apparmor/policy.c:1203:1: internal compiler error: Segmentation fault
security/apparmor/policy_unpack.c:1238: internal compiler error: Segmentation fault
security/apparmor/procattr.c:136:1: internal compiler error: Segmentation fault
security/apparmor/resource.c:187:1: internal compiler error: Segmentation fault
security/apparmor/secid.c:161:1: internal compiler error: Segmentation fault
security/apparmor/task.c:179:1: internal compiler error: Segmentation fault
security/integrity/digsig_asymmetric.c:157:1: internal compiler error: Segmentation fault
security/keys/request_key.c:805:1: internal compiler error: Segmentation fault
security/smack/smack_access.c:699:1: internal compiler error: Segmentation fault
sound/core/control.c:2307:1: internal compiler error: Segmentation fault
sound/core/ctljack.c:84:1: internal compiler error: Segmentation fault
sound/core/device.c:260:1: internal compiler error: Segmentation fault
sound/core/init.c:1141:1: internal compiler error: Segmentation fault
sound/core/jack.c:680:1: internal compiler error: Segmentation fault
sound/core/memalloc.c:750:1: internal compiler error: Segmentation fault
sound/core/pcm_dmaengine.c:461:1: internal compiler error: Segmentation fault
sound/core/pcm_lib.c:2529:1: internal compiler error: Segmentation fault
sound/core/pcm_memory.c:527:1: internal compiler error: Segmentation fault
sound/core/pcm_misc.c:616:1: internal compiler error: Segmentation fault
sound/core/pcm_native.c:4082:1: internal compiler error: Segmentation fault
sound/core/seq/seq_fifo.c:283:1: internal compiler error: Segmentation fault
sound/core/seq/seq_lock.c:26:1: internal compiler error: Segmentation fault
sound/core/seq/seq_memory.c:504:1: internal compiler error: Segmentation fault
sound/core/seq/seq_midi_event.c:459:1: internal compiler error: Segmentation fault
sound/core/seq/seq_ports.c:711:1: internal compiler error: Segmentation fault
sound/core/seq/seq_prioq.c:434:1: internal compiler error: Segmentation fault
sound/core/seq/seq_queue.c:726:1: internal compiler error: Segmentation fault
sound/core/seq/seq_timer.c:471:1: internal compiler error: Segmentation fault
sound/core/sound_oss.c:186:1: internal compiler error: Segmentation fault
sound/soc/bcm/bcm63xx-pcm-whistler.c:414:1: internal compiler error: Segmentation fault
sound/soc/codecs/rl6231.c:253:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt5682.c:3153:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt700.c:1244:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt711-sdca.c:1591:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt711.c:1343:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt715-sdca.c:1078:1: internal compiler error: Segmentation fault
sound/soc/codecs/rt715.c:1098:1: internal compiler error: Segmentation fault
sound/soc/codecs/wcd-clsh-v2.c:903:1: internal compiler error: Segmentation fault
sound/soc/fsl/fsl_ssi_dbg.c:140:1: internal compiler error: Segmentation fault
sound/soc/generic/simple-card-utils.c:766:1: internal compiler error: Segmentation fault
sound/soc/soc-card.c:225:1: internal compiler error: Segmentation fault
sound/soc/soc-component.c:1244:1: internal compiler error: Segmentation fault
sound/soc/soc-dai.c:840:1: internal compiler error: Segmentation fault
sound/soc/soc-dapm.c:4862:1: internal compiler error: Segmentation fault
sound/soc/soc-generic-dmaengine-pcm.c:497:1: internal compiler error: Segmentation fault
sound/soc/soc-jack.c:452:1: internal compiler error: Segmentation fault
sound/soc/soc-ops.c:984:1: internal compiler error: Segmentation fault
sound/soc/soc-pcm.c:3031:1: internal compiler error: Segmentation fault
vpu_malone.c:(.text+0x205c): undefined reference to `__moddi3'
vpu_windsor.c:(.text+0x49c): undefined reference to `__moddi3'
{standard input}: Error: .size expression for xpcs_validate does not evaluate to a constant
{standard input}:1989: Error: unknown pseudo-op: `.sec'
Error/Warning ids grouped by kconfigs:
gcc_recent_errors
|-- alpha-allmodconfig
| |-- arch-alpha-include-asm-string.h:warning:__builtin_memcpy-forming-offset-is-out-of-the-bounds-of-object-tag_buf-with-type-unsigned-char
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-iio-frequency-admv1014.c:sparse:sparse:dubious:x-y
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- alpha-allyesconfig
| |-- arch-alpha-include-asm-string.h:warning:__builtin_memcpy-forming-offset-is-out-of-the-bounds-of-object-tag_buf-with-type-unsigned-char
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-iio-frequency-admv1014.c:sparse:sparse:dubious:x-y
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- alpha-randconfig-p001-20220318
| |-- arch-alpha-include-asm-string.h:warning:__builtin_memcpy-forming-offset-is-out-of-the-bounds-of-object-tag_buf-with-type-unsigned-char
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- alpha-randconfig-r022-20220317
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- alpha-randconfig-r032-20220318
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- alpha-randconfig-r036-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-randconfig-r005-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- arc-randconfig-r014-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-randconfig-r015-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- arc-randconfig-r043-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arc-randconfig-r043-20220318
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
| `-- pahole:.tmp_vmlinux.btf:No-such-file-or-directory
|-- arm-allmodconfig
| |-- drivers-bus-imx-weim.c:sparse:sparse:symbol-weim_of_notifier-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:left-side-has-type-unsigned-int
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:right-side-has-type-restricted-__be32
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-linkFailureCnt-got-restricted-__be32-usertype
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:invalid-assignment:
| |-- drivers-soc-rockchip-dtpm.c:sparse:sparse:obsolete-array-initializer-use-C99-syntax
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h:No-such-file-or-directory
|-- arm-allyesconfig
| |-- drivers-bus-imx-weim.c:sparse:sparse:symbol-weim_of_notifier-was-not-declared.-Should-it-be-static
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:left-side-has-type-unsigned-int
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:right-side-has-type-restricted-__be32
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-linkFailureCnt-got-restricted-__be32-usertype
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:invalid-assignment:
| |-- drivers-soc-rockchip-dtpm.c:sparse:sparse:obsolete-array-initializer-use-C99-syntax
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h:No-such-file-or-directory
|-- arm-defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm-randconfig-c002-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h:No-such-file-or-directory
|-- arm-randconfig-c002-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm-randconfig-r006-20220317
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h:No-such-file-or-directory
|-- arm-randconfig-r012-20220318
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h:No-such-file-or-directory
|-- arm64-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm64-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm64-defconfig
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm64-randconfig-c023-20220318
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- arm64-randconfig-r011-20220317
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- csky-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- csky-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- csky-defconfig
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- csky-randconfig-r026-20220318
| |-- drivers-media-platform-samsung-exynos4-is-fimc-isp-video.h:warning:no-previous-prototype-for-fimc_isp_video_device_unregister
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- h8300-allmodconfig
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-media-platform-st-stm32-dma2d-dma2d-hw.c:internal-compiler-error:in-extract_insn-at-recog.c
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-cacheflush.h:warning:struct-folio-declared-inside-parameter-list-will-not-be-visible-outside-of-this-definition-or-declaration
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- h8300-allyesconfig
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-media-platform-st-stm32-dma2d-dma2d-hw.c:internal-compiler-error:in-extract_insn-at-recog.c
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-cacheflush.h:warning:struct-folio-declared-inside-parameter-list-will-not-be-visible-outside-of-this-definition-or-declaration
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- h8300-randconfig-c024-20220317
| `-- drivers-media-platform-st-stm32-dma2d-dma2d-hw.c:internal-compiler-error:in-extract_insn-at-recog.c
|-- i386-allnoconfig
| `-- Documentation-driver-api-nvdimm-nvdimm.rst:(SEVERE-)-Title-level-inconsistent:
|-- i386-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-debian-10.3
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-debian-10.3-kselftests
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-defconfig
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-randconfig-a001
| `-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
|-- i386-randconfig-a003
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- i386-randconfig-a005
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- i386-randconfig-a012
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-randconfig-a014
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- i386-randconfig-a016
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- i386-randconfig-c001
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-randconfig-c021
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- i386-randconfig-m021
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- i386-randconfig-s001
| |-- drivers-gpu-drm-gma500-intel_bios.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-const-p-got-unsigned-char-noderef-usertype-__iomem
| |-- drivers-gpu-drm-gma500-opregion.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-const-p-got-void-noderef-__iomem-assigned-base
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- i386-randconfig-s002
| |-- drivers-gpu-drm-gma500-intel_bios.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-const-p-got-unsigned-char-noderef-usertype-__iomem
| |-- drivers-gpu-drm-gma500-opregion.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-const-p-got-void-noderef-__iomem-assigned-base
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- ia64-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- ia64-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| `-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_migrate_context
|-- ia64-defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- ia64-randconfig-r034-20220317
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- m68k-allmodconfig
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-allyesconfig
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-bvme6000_defconfig
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-defconfig
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-randconfig-c004-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-randconfig-r003-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-randconfig-r013-20220318
| |-- arch-m68k-kernel-machine_kexec.c:undefined-reference-to-m68k_mmutype
| `-- m68k-linux-ld:arch-m68k-kernel-machine_kexec.c:undefined-reference-to-m68k_cputype
|-- m68k-randconfig-r026-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- m68k-randconfig-r035-20220317
| |-- arch-m68k-kernel-machine_kexec.c:undefined-reference-to-m68k_mmutype
| |-- arch-m68k-kernel-time.c:undefined-reference-to-mach_get_rtc_pll
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- m68k-linux-ld:arch-m68k-kernel-machine_kexec.c:undefined-reference-to-m68k_cputype
| `-- m68k-linux-ld:arch-m68k-kernel-time.c:undefined-reference-to-mach_set_rtc_pll
|-- m68k-randconfig-s032-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| `-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
|-- mips-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- mips-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- mips-randconfig-c003-20220318
| `-- include-linux-fortify-string.h:warning:__builtin_memcpy-offset-is-out-of-the-bounds
|-- mips-randconfig-c023-20220317
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- mips-randconfig-s032-20220317
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- include-linux-fortify-string.h:warning:__builtin_memcpy-offset-is-out-of-the-bounds
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
| |-- mips64-linux-ld:page_alloc.c:(.init.text):undefined-reference-to-node_data
| `-- page_alloc.c:(.init.text):undefined-reference-to-node_data
|-- nds32-allmodconfig
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-allnoconfig
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-allyesconfig
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-buildonly-randconfig-r001-20220317
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-defconfig
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-randconfig-c003-20220317
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nds32-randconfig-r001-20220318
| |-- Makefile:arch-nds32-Makefile:No-such-file-or-directory
| |-- arch-Kconfig:can-t-open-file-arch-nds32-Kconfig
| `-- make:No-rule-to-make-target-arch-nds32-Makefile-.
|-- nios2-allmodconfig
| |-- arch-nios2-kernel-misaligned.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-unsigned-char-usertype-__pu_ptr
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- nios2-allyesconfig
| |-- arch-nios2-kernel-misaligned.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-unsigned-char-usertype-__pu_ptr
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- nios2-buildonly-randconfig-r002-20220317
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- nios2-defconfig
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- nios2-randconfig-r001-20220317
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- nios2-randconfig-r031-20220319
| |-- ERROR:__v4l2_async_nf_add_fwnode_remote-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_async_nf_cleanup-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_async_nf_unregister-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_async_register_subdev-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_async_subdev_nf_register-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_async_unregister_subdev-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_get_link_freq-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_subdev_call_wrappers-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| |-- ERROR:v4l2_subdev_get_fwnode_pad_1_to_1-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
| `-- ERROR:v4l2_subdev_link_validate-drivers-media-platform-nxp-imx-mipi-csis.ko-undefined
|-- openrisc-randconfig-m031-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- openrisc-randconfig-m031-20220318
| |-- FAILED:load-BTF-from-vmlinux:No-such-file-or-directory
| |-- drivers-mmc-host-litex_mmc.c-litex_mmc_request()-error:we-previously-assumed-data-could-be-null-(see-line-)
| |-- drivers-power-supply-ip5xxx_power.c-ip5xxx_battery_get_property()-error:uninitialized-symbol-raw-.
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- openrisc-randconfig-p002-20220317
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- openrisc-randconfig-r011-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- parisc-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- parisc-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- parisc-defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- parisc64-defconfig
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- powerpc-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:left-side-has-type-unsigned-int
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:right-side-has-type-restricted-__be32
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-linkFailureCnt-got-restricted-__be32-usertype
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:invalid-assignment:
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- powerpc-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:left-side-has-type-unsigned-int
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:right-side-has-type-restricted-__be32
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-linkFailureCnt-got-restricted-__be32-usertype
| |-- drivers-scsi-lpfc-lpfc_els.c:sparse:sparse:invalid-assignment:
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- powerpc-buildonly-randconfig-r006-20220317
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- powerpc-holly_defconfig
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- powerpc-randconfig-r024-20220317
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- powerpc-randconfig-r035-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- powerpc64-buildonly-randconfig-r001-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- powerpc64-randconfig-p001-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- riscv-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- riscv-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- riscv-defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- riscv-nommu_k210_defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- riscv-nommu_virt_defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- riscv-randconfig-c003-20220313
| |-- arch-riscv-kernel-cacheinfo.c:internal-compiler-error:Segmentation-fault
| |-- arch-riscv-kernel-crash_dump.c:internal-compiler-error:Segmentation-fault
| |-- arch-riscv-kernel-patch.c:internal-compiler-error:Segmentation-fault
| |-- arch-riscv-kernel-signal.c:internal-compiler-error:Segmentation-fault
| |-- arch-riscv-mm-extable.c:internal-compiler-error:Segmentation-fault
| |-- arch-riscv-mm-physaddr.c:internal-compiler-error:Segmentation-fault
| |-- block-blk-mq-rdma.c:internal-compiler-error:Segmentation-fault
| |-- block-blk-zoned.c:internal-compiler-error:Segmentation-fault
| |-- block-sed-opal.c:internal-compiler-error:Segmentation-fault
| |-- crypto-acompress.c:internal-compiler-error:Segmentation-fault
| |-- crypto-aead.c:internal-compiler-error:Segmentation-fault
| |-- crypto-ahash.c:internal-compiler-error:Segmentation-fault
| |-- crypto-akcipher.c:internal-compiler-error:Segmentation-fault
| |-- crypto-api.c:internal-compiler-error:Segmentation-fault
| |-- crypto-asymmetric_keys-public_key.c:internal-compiler-error:Segmentation-fault
| |-- crypto-dh.c:internal-compiler-error:Segmentation-fault
| |-- crypto-ecc.c:internal-compiler-error:Segmentation-fault
| |-- crypto-geniv.c:internal-compiler-error:Segmentation-fault
| |-- crypto-gf128mul.c:internal-compiler-error:Segmentation-fault
| |-- crypto-kpp.c:internal-compiler-error:Segmentation-fault
| |-- crypto-rng.c:internal-compiler-error:Segmentation-fault
| |-- crypto-scompress.c:internal-compiler-error:Segmentation-fault
| |-- crypto-shash.c:internal-compiler-error:Segmentation-fault
| |-- crypto-skcipher.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-map.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-power-domain_governor.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-power-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-power-wakeirq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regcache-flat.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regcache-rbtree.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regcache.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regmap-debugfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regmap-mmio.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regmap-sdw-mbq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-regmap-regmap-slimbus.c:internal-compiler-error:Segmentation-fault
| |-- drivers-base-syscore.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_bt_sm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_kcs_sm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_plat_data.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_si_hotmod.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_si_mem_io.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_si_port_io.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-ipmi-ipmi_smic_sm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-char-tpm-eventlog-efi.c:internal-compiler-error:Segmentation-fault
| |-- drivers-clk-clk-composite.c:internal-compiler-error:Segmentation-fault
| |-- drivers-clk-clk-fractional-divider.c:internal-compiler-error:Segmentation-fault
| |-- drivers-comedi-comedi_buf.c:internal-compiler-error:Segmentation-fault
| |-- drivers-comedi-drivers.c:internal-compiler-error:Segmentation-fault
| |-- drivers-comedi-range.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_aead.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_buffer_mgr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_cipher.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_fips.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_hash.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_pm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_request_mgr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-crypto-ccree-cc_sram_mgr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-dma-buf-dma-fence-array.c:internal-compiler-error:Segmentation-fault
| |-- drivers-dma-buf-dma-fence-chain.c:internal-compiler-error:Segmentation-fault
| |-- drivers-dma-buf-dma-fence.c:internal-compiler-error:Segmentation-fault
| |-- drivers-dma-buf-dma-heap.c:internal-compiler-error:Segmentation-fault
| |-- drivers-firmware-efi-vars.c:internal-compiler-error:Segmentation-fault
| |-- drivers-gpio-gpiolib-of.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-cmedia.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-debug.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-picolcd_debugfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-picolcd_fb.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-picolcd_leds.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-roccat-common.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-uclogic-params.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-uclogic-rdesc.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-usbhid-hiddev.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-addr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-agent.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-cache.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-cm_trace.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-counters.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-cq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-ib_core_uverbs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-iwpm_msg.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-iwpm_util.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-lag.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-mad_rmpp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-mr_pool.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-multicast.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-netlink.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-packer.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-rdma_core.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-restrack.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-rw.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-sa_query.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-smi.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-trace.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-ud_header.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-umem.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-umem_dmabuf.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-umem_odp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_cmd.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_ioctl.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_marshall.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_async_fd.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_counters.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_cq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_device.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_dm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_flow_action.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_mr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_qp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_srq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_std_types_wq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-uverbs_uapi.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-core-verbs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_cm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_cq.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_mem.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_qp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_qp_tx.c:internal-compiler-error:Segmentation-fault
| |-- drivers-infiniband-sw-siw-siw_verbs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-matrix-keymap.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-misc-adxl34x.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-misc-cma3000_d.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_2d_sensor.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_f30.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_f54.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_f55.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-touchscreen.c:internal-compiler-error:Segmentation-fault
| |-- drivers-iommu-of_iommu.c:internal-compiler-error:Segmentation-fault
| |-- drivers-leds-leds-ti-lmu-common.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-frame_vector.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-vb2-trace.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-videobuf2-dma-contig.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-videobuf2-dma-sg.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-videobuf2-memops.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-common-videobuf2-videobuf2-vmalloc.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-platform-xilinx-xilinx-dma.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-radio-tea575x.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-cpia2-cpia2_core.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-cpia2-cpia2_usb.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-gspca-autogain_functions.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-gspca-stv06xx-stv06xx_pb0100.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-gspca-stv06xx-stv06xx_st6422.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-pwc-pwc-ctrl.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-pwc-pwc-dec23.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-pwc-pwc-uncompress.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-pwc-pwc-v4l.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-stkwebcam-stk-sensor.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_ctrl.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_debugfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_entity.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_isight.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_metadata.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_queue.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_status.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_v4l2.c:internal-compiler-error:Segmentation-fault
| |-- drivers-media-usb-uvc-uvc_video.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mfd-cs47l35-tables.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mfd-madera-core.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mfd-mfd-core.c:internal-compiler-error:Segmentation-fault
| |-- drivers-misc-eeprom-eeprom_93cx6.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-chips-cfi_cmdset_0020.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-mtdsuper.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-bbt.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-ecc-sw-hamming.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-denali.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_base.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_hynix.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_jedec.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_legacy.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_macronix.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_micron.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_onfi.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_samsung.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_timings.c:internal-compiler-error:Segmentation-fault
| |-- drivers-mtd-nand-raw-nand_toshiba.c:internal-compiler-error:Segmentation-fault
| |-- drivers-net-can-dev-length.c:internal-compiler-error:Segmentation-fault
| |-- drivers-net-can-dev-rx-offload.c:internal-compiler-error:Segmentation-fault
| |-- drivers-net-can-dev-skb.c:internal-compiler-error:Segmentation-fault
| |-- drivers-net-phy-mii_timestamper.c:internal-compiler-error:Segmentation-fault
| |-- drivers-nfc-fdp-fdp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-nvme-host-zns.c:internal-compiler-error:Segmentation-fault
| |-- drivers-nvme-target-zns.c:internal-compiler-error:Segmentation-fault
| |-- drivers-of-kobj.c:internal-compiler-error:Segmentation-fault
| |-- drivers-parport-daisy.c:internal-compiler-error:Segmentation-fault
| |-- drivers-parport-ieee1284.c:internal-compiler-error:Segmentation-fault
| |-- drivers-parport-ieee1284_ops.c:internal-compiler-error:Segmentation-fault
| |-- drivers-parport-probe.c:internal-compiler-error:Segmentation-fault
| |-- drivers-pci-of.c:internal-compiler-error:Segmentation-fault
| |-- drivers-pcmcia-rsrc_mgr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-phy-phy-core-mipi-dphy.c:internal-compiler-error:Segmentation-fault
| |-- drivers-rtc-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-iscsi_boot_sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-libiscsi.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-libiscsi_tcp.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-libsas-sas_event.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-libsas-sas_task.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-scsi_lib_dma.c:internal-compiler-error:Segmentation-fault
| |-- drivers-scsi-ufs-ufs-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-slimbus-messaging.c:internal-compiler-error:Segmentation-fault
| |-- drivers-slimbus-stream.c:internal-compiler-error:Segmentation-fault
| |-- drivers-ssb-driver_chipcommon.c:internal-compiler-error:Segmentation-fault
| |-- drivers-ssb-scan.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_auth.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_configfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_datain_values.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_device.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_erl0.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_erl1.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_erl2.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_login.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_nego.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_nodeattrib.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_parameters.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_seq_pdu_list.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_stat.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_tmr.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_tpg.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_transport.c:internal-compiler-error:Segmentation-fault
| |-- drivers-target-iscsi-iscsi_target_util.c:internal-compiler-error:Segmentation-fault
| |-- drivers-tty-tty_audit.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-cdns3-drd.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-cdns3-host.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-chipidea-host.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-config.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-devices.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-endpoint.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-generic.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-port.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-quirks.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-core-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-dwc3-drd.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-dwc3-ep0.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-dwc3-gadget.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-composite.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-config.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-epautoconf.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-f_tcm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-storage_common.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-u_uac1_legacy.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-uvc_configfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-uvc_queue.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-uvc_v4l2.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-function-uvc_video.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-functions.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-u_f.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-udc-snps_udc_core.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-udc-trace.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-gadget-usbstring.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-host-xhci-dbg.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-isp1760-isp1760-udc.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-mon-mon_stat.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-musb-musb_gadget.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-musb-musb_gadget_ep0.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-storage-initializers.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-typec-bus.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-typec-tcpm-tcpm.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-usbip-stub_rx.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-usbip-stub_tx.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-usbip-usbip_event.c:internal-compiler-error:Segmentation-fault
| |-- drivers-vfio-mdev-vfio_mdev.c:internal-compiler-error:Segmentation-fault
| |-- drivers-video-fbdev-core-fb_defio.c:internal-compiler-error:Segmentation-fault
| |-- drivers-video-fbdev-core-fbcmap.c:internal-compiler-error:Segmentation-fault
| |-- drivers-video-fbdev-core-fbsysfs.c:internal-compiler-error:Segmentation-fault
| |-- drivers-virtio-virtio_ring.c:internal-compiler-error:Segmentation-fault
| |-- drivers-w1-w1_family.c:internal-compiler-error:Segmentation-fault
| |-- drivers-w1-w1_netlink.c:internal-compiler-error:Segmentation-fault
| |-- drivers-watchdog-watchdog_pretimeout.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-addr_list.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-callback.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-cmservice.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-dir_edit.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-dir_silly.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-dynroot.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-flock.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-fs_operation.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-fs_probe.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-mntpt.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-server_list.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-vl_alias.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-vl_list.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-vl_probe.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-vl_rotate.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-vlclient.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-volume.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-write.c:internal-compiler-error:Segmentation-fault
| |-- fs-afs-xattr.c:internal-compiler-error:Segmentation-fault
| |-- fs-autofs-expire.c:internal-compiler-error:Segmentation-fault
| |-- fs-autofs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-autofs-root.c:internal-compiler-error:Segmentation-fault
| |-- fs-autofs-symlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-autofs-waitq.c:internal-compiler-error:Segmentation-fault
| |-- fs-bad_inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-async-thread.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-block-group.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-block-rsv.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-ctree.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-delalloc-space.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-dev-replace.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-dir-item.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-discard.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-export.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-file-item.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-free-space-cache.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-free-space-tree.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-inode-item.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-locking.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-lzo.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-orphan.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-print-tree.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-qgroup.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-raid56.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-reflink.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-root-tree.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-struct-funcs.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-subpage.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-transaction.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-tree-defrag.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-tree-log.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-tree-mod-log.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-ulist.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-uuid-tree.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-verity.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-xattr.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-zlib.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-zoned.c:internal-compiler-error:Segmentation-fault
| |-- fs-btrfs-zstd.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-addr.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-caps.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-ceph_frag.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-debugfs.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-export.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-io.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-mdsmap.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-metric.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-quota.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-snap.c:internal-compiler-error:Segmentation-fault
| |-- fs-ceph-xattr.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifs_debug.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifs_dfs_ref.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifs_spnego.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifs_swn.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifs_unicode.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifsacl.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifsencrypt.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-cifssmb.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-connect.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-dfs_cache.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-fs_context.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-link.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-misc.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-netlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-netmisc.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-readdir.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-sess.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb1ops.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2file.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2maperror.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2misc.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2ops.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2pdu.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smb2transport.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-smbencrypt.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-trace.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-transport.c:internal-compiler-error:Segmentation-fault
| |-- fs-cifs-unc.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-cache.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-cnode.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-pioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-symlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-coda-upcall.c:internal-compiler-error:Segmentation-fault
| |-- fs-configfs-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-configfs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-configfs-symlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-bio.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-fname.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-hkdf.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-hooks.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-keysetup.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-keysetup_v1.c:internal-compiler-error:Segmentation-fault
| |-- fs-crypto-policy.c:internal-compiler-error:Segmentation-fault
| |-- fs-d_path.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-member.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-midcomms.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-plock.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-rcom.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-recover.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-recoverd.c:internal-compiler-error:Segmentation-fault
| |-- fs-dlm-requestqueue.c:internal-compiler-error:Segmentation-fault
| |-- fs-efivarfs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-exportfs-expfs.c:internal-compiler-error:Segmentation-fault
| |-- fs-ext2-xattr_user.c:internal-compiler-error:Segmentation-fault
| |-- fs-fhandle.c:internal-compiler-error:Segmentation-fault
| |-- fs-fs_context.c:internal-compiler-error:Segmentation-fault
| |-- fs-fs_pin.c:internal-compiler-error:Segmentation-fault
| |-- fs-fs_struct.c:internal-compiler-error:Segmentation-fault
| |-- fs-fsopen.c:internal-compiler-error:Segmentation-fault
| |-- fs-gfs2-lock_dlm.c:internal-compiler-error:Segmentation-fault
| |-- fs-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-kernfs-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-kernfs-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-kernfs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-kernfs-symlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-namei.c:internal-compiler-error:Segmentation-fault
| |-- fs-nls-nls_base.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-attrib.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-attrlist.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-frecord.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-fslog.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-fsntfs.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-index.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-lib-decompress_common.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-lib-lzx_decompress.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-lznt.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-namei.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-record.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-run.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-upcase.c:internal-compiler-error:Segmentation-fault
| |-- fs-ntfs3-xattr.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-acl.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-alloc.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-aops.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-blockcheck.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-buffer_head_io.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-cluster-masklog.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-cluster-netdebug.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-cluster-quorum.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-cluster-tcp.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-dcache.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-dlmfs-userdlm.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-dlmglue.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-export.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-extent_map.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-filecheck.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-heartbeat.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-journal.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-localalloc.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-locks.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-mmap.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-move_extents.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-namei.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-quota_global.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-refcounttree.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-reservations.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-resize.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-slot_map.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-suballoc.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-symlink.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-sysfile.c:internal-compiler-error:Segmentation-fault
| |-- fs-ocfs2-xattr.c:internal-compiler-error:Segmentation-fault
| |-- fs-omfs-bitmap.c:internal-compiler-error:Segmentation-fault
| |-- fs-omfs-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-omfs-file.c:internal-compiler-error:Segmentation-fault
| |-- fs-open.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-dir.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-export.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-inode.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-namei.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-readdir.c:internal-compiler-error:Segmentation-fault
| |-- fs-overlayfs-util.c:internal-compiler-error:Segmentation-fault
| |-- fs-pnode.c:internal-compiler-error:Segmentation-fault
| |-- fs-pstore-pmsg.c:internal-compiler-error:Segmentation-fault
| |-- fs-quota-quota.c:internal-compiler-error:Segmentation-fault
| |-- fs-quota-quota_tree.c:internal-compiler-error:Segmentation-fault
| |-- fs-readdir.c:internal-compiler-error:Segmentation-fault
| |-- fs-select.c:internal-compiler-error:Segmentation-fault
| |-- fs-smbfs_common-cifs_md4.c:internal-compiler-error:Segmentation-fault
| |-- fs-splice.c:internal-compiler-error:Segmentation-fault
| |-- fs-squashfs-decompressor_multi.c:internal-compiler-error:Segmentation-fault
| |-- fs-squashfs-zstd_wrapper.c:internal-compiler-error:Segmentation-fault
| |-- fs-stack.c:internal-compiler-error:Segmentation-fault
| |-- fs-statfs.c:internal-compiler-error:Segmentation-fault
| |-- fs-sync.c:internal-compiler-error:Segmentation-fault
| |-- fs-unicode-utf8-core.c:internal-compiler-error:Segmentation-fault
| |-- fs-utimes.c:internal-compiler-error:Segmentation-fault
| |-- fs-xattr.c:internal-compiler-error:Segmentation-fault
| |-- include-linux-module.h:internal-compiler-error:Segmentation-fault
| |-- ipc-msgutil.c:internal-compiler-error:Segmentation-fault
| |-- kernel-acct.c:internal-compiler-error:Segmentation-fault
| |-- kernel-auditsc.c:internal-compiler-error:Segmentation-fault
| |-- kernel-bpf-offload.c:internal-compiler-error:Segmentation-fault
| |-- kernel-bpf-reuseport_array.c:internal-compiler-error:Segmentation-fault
| |-- kernel-cgroup-freezer.c:internal-compiler-error:Segmentation-fault
| |-- kernel-dma-direct.c:internal-compiler-error:Segmentation-fault
| |-- kernel-irq-chip.c:internal-compiler-error:Segmentation-fault
| |-- kernel-printk-printk_ringbuffer.c:internal-compiler-error:Segmentation-fault
| |-- kernel-printk-printk_safe.c:internal-compiler-error:Segmentation-fault
| |-- kernel-range.c:internal-compiler-error:Segmentation-fault
| |-- kernel-rcu-rcu_segcblist.c:internal-compiler-error:Segmentation-fault
| |-- kernel-rcu-sync.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sched-cpuacct.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sched-cputime.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sched-deadline.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sched-membarrier.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sched-rt.c:internal-compiler-error:Segmentation-fault
| |-- kernel-sys.c:internal-compiler-error:Segmentation-fault
| |-- kernel-task_work.c:internal-compiler-error:Segmentation-fault
| |-- kernel-trace-trace_clock.c:internal-compiler-error:Segmentation-fault
| |-- kernel-umh.c:internal-compiler-error:Segmentation-fault
| |-- lib-asn1_decoder.c:internal-compiler-error:Segmentation-fault
| |-- lib-cmdline.c:internal-compiler-error:Segmentation-fault
| |-- lib-crc-itu-t.c:internal-compiler-error:Segmentation-fault
| |-- lib-crc16.c:internal-compiler-error:Segmentation-fault
| |-- lib-crypto-aes.c:internal-compiler-error:Segmentation-fault
| |-- lib-crypto-blake2s-generic.c:internal-compiler-error:Segmentation-fault
| |-- lib-crypto-poly1305-donna32.c:internal-compiler-error:Segmentation-fault
| |-- lib-crypto-poly1305.c:internal-compiler-error:Segmentation-fault
| |-- lib-dim-dim.c:internal-compiler-error:Segmentation-fault
| |-- lib-dim-net_dim.c:internal-compiler-error:Segmentation-fault
| |-- lib-dim-rdma_dim.c:internal-compiler-error:Segmentation-fault
| |-- lib-dynamic_queue_limits.c:internal-compiler-error:Segmentation-fault
| |-- lib-earlycpio.c:internal-compiler-error:Segmentation-fault
| |-- lib-extable.c:internal-compiler-error:Segmentation-fault
| |-- lib-fdt.c:internal-compiler-error:Segmentation-fault
| |-- lib-fdt_ro.c:internal-compiler-error:Segmentation-fault
| |-- lib-fdt_rw.c:internal-compiler-error:Segmentation-fault
| |-- lib-fdt_sw.c:internal-compiler-error:Segmentation-fault
| |-- lib-fdt_wip.c:internal-compiler-error:Segmentation-fault
| |-- lib-flex_proportions.c:internal-compiler-error:Segmentation-fault
| |-- lib-interval_tree.c:internal-compiler-error:Segmentation-fault
| |-- lib-iov_iter.c:internal-compiler-error:Segmentation-fault
| |-- lib-is_single_threaded.c:internal-compiler-error:Segmentation-fault
| |-- lib-kunit-assert.c:internal-compiler-error:Segmentation-fault
| |-- lib-linear_ranges.c:internal-compiler-error:Segmentation-fault
| |-- lib-logic_pio.c:internal-compiler-error:Segmentation-fault
| |-- lib-lz4-lz4_compress.c:internal-compiler-error:Segmentation-fault
| |-- lib-lz4-lz4_decompress.c:internal-compiler-error:Segmentation-fault
| |-- lib-lzo-lzo1x_compress.c:internal-compiler-error:Segmentation-fault
| |-- lib-lzo-lzo1x_decompress_safe.c:internal-compiler-error:Segmentation-fault
| |-- lib-math-rational.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-generic_mpih-mul2.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-generic_mpih-mul3.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-mpi-div.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-mpi-mod.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-mpi-mul.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-mpih-div.c:internal-compiler-error:Segmentation-fault
| |-- lib-mpi-mpih-mul.c:internal-compiler-error:Segmentation-fault
| |-- lib-net_utils.c:internal-compiler-error:Segmentation-fault
| |-- lib-nlattr.c:internal-compiler-error:Segmentation-fault
| |-- lib-oid_registry.c:internal-compiler-error:Segmentation-fault
| |-- lib-plist.c:internal-compiler-error:Segmentation-fault
| |-- lib-raid6-int1.c:internal-compiler-error:Segmentation-fault
| |-- lib-raid6-int2.c:internal-compiler-error:Segmentation-fault
| |-- lib-raid6-int4.c:internal-compiler-error:Segmentation-fault
| |-- lib-raid6-int8.c:internal-compiler-error:Segmentation-fault
| |-- lib-seq_buf.c:internal-compiler-error:Segmentation-fault
| |-- lib-syscall.c:internal-compiler-error:Segmentation-fault
| |-- lib-zlib_deflate-deflate.c:internal-compiler-error:Segmentation-fault
| |-- lib-zlib_deflate-deftree.c:internal-compiler-error:Segmentation-fault
| |-- lib-zlib_inflate-inffast.c:internal-compiler-error:Segmentation-fault
| |-- lib-zlib_inflate-inflate.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-common-entropy_common.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-common-fse_decompress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-fse_compress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-hist.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-huf_compress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_compress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_compress_literals.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_compress_sequences.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_compress_superblock.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_double_fast.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_fast.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_lazy.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_ldm.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-compress-zstd_opt.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-decompress-huf_decompress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-decompress-zstd_ddict.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-decompress-zstd_decompress.c:internal-compiler-error:Segmentation-fault
| |-- lib-zstd-decompress-zstd_decompress_block.c:internal-compiler-error:Segmentation-fault
| |-- mm-folio-compat.c:internal-compiler-error:Segmentation-fault
| |-- mm-hmm.c:internal-compiler-error:Segmentation-fault
| |-- mm-interval_tree.c:internal-compiler-error:Segmentation-fault
| |-- mm-mmu_notifier.c:internal-compiler-error:Segmentation-fault
| |-- mm-ptdump.c:internal-compiler-error:Segmentation-fault
| |-- net-6lowpan-iphc.c:internal-compiler-error:Segmentation-fault
| |-- net-6lowpan-ndisc.c:internal-compiler-error:Segmentation-fault
| |-- net-6lowpan-nhc.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_addr.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_iface.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_in.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_ip.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_out.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_std_in.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_std_timer.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_subr.c:internal-compiler-error:Segmentation-fault
| |-- net-ax25-ax25_timer.c:internal-compiler-error:Segmentation-fault
| |-- net-bridge-br_if.c:internal-compiler-error:Segmentation-fault
| |-- net-bridge-br_switchdev.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfcnfg.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfctrl.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfdbgl.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfdgml.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cffrml.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfmuxl.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfpkt_skbuff.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfrfml.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfserl.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfsrvl.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfutill.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfveil.c:internal-compiler-error:Segmentation-fault
| |-- net-caif-cfvidl.c:internal-compiler-error:Segmentation-fault
| |-- net-can-j1939-transport.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-armor.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-auth.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-auth_none.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-auth_x.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-buffer.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-cls_lock_client.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-crush-crush.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-crush-mapper.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-decode.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-messenger_v1.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-messenger_v2.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-mon_client.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-msgpool.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-osdmap.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-pagelist.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-pagevec.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-snapshot.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-string_table.c:internal-compiler-error:Segmentation-fault
| |-- net-ceph-striper.c:internal-compiler-error:Segmentation-fault
| |-- net-core-datagram.c:internal-compiler-error:Segmentation-fault
| |-- net-core-dev_addr_lists.c:internal-compiler-error:Segmentation-fault
| |-- net-core-dst.c:internal-compiler-error:Segmentation-fault
| |-- net-core-dst_cache.c:internal-compiler-error:Segmentation-fault
| |-- net-core-flow_offload.c:internal-compiler-error:Segmentation-fault
| |-- net-core-gen_estimator.c:internal-compiler-error:Segmentation-fault
| |-- net-core-gen_stats.c:internal-compiler-error:Segmentation-fault
| |-- net-core-gro.c:internal-compiler-error:Segmentation-fault
| |-- net-core-gro_cells.c:internal-compiler-error:Segmentation-fault
| |-- net-core-link_watch.c:internal-compiler-error:Segmentation-fault
| |-- net-core-lwtunnel.c:internal-compiler-error:Segmentation-fault
| |-- net-core-net-traces.c:internal-compiler-error:Segmentation-fault
| |-- net-core-of_net.c:internal-compiler-error:Segmentation-fault
| |-- net-core-scm.c:internal-compiler-error:Segmentation-fault
| |-- net-core-secure_seq.c:internal-compiler-error:Segmentation-fault
| |-- net-core-sock.c:internal-compiler-error:Segmentation-fault
| |-- net-core-sock_reuseport.c:internal-compiler-error:Segmentation-fault
| |-- net-core-stream.c:internal-compiler-error:Segmentation-fault
| |-- net-core-timestamping.c:internal-compiler-error:Segmentation-fault
| |-- net-core-tso.c:internal-compiler-error:Segmentation-fault
| |-- net-core-utils.c:internal-compiler-error:Segmentation-fault
| |-- net-dccp-ccids-ccid2.c:internal-compiler-error:Segmentation-fault
| |-- net-dccp-input.c:internal-compiler-error:Segmentation-fault
| |-- net-dccp-output.c:internal-compiler-error:Segmentation-fault
| |-- net-dccp-qpolicy.c:internal-compiler-error:Segmentation-fault
| |-- net-devres.c:internal-compiler-error:Segmentation-fault
| |-- net-dns_resolver-dns_query.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-bitset.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-cabletest.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-channels.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-coalesce.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-common.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-eeprom.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-features.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-fec.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-ioctl.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-linkinfo.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-linkmodes.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-linkstate.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-module.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-pause.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-privflags.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-rings.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-stats.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-strset.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-tunnels.c:internal-compiler-error:Segmentation-fault
| |-- net-ethtool-wol.c:internal-compiler-error:Segmentation-fault
| |-- net-garp.c:internal-compiler-error:Segmentation-fault
| |-- net-ieee802154-6lowpan-rx.c:internal-compiler-error:Segmentation-fault
| |-- net-ieee802154-6lowpan-tx.c:internal-compiler-error:Segmentation-fault
| |-- net-ieee802154-header_ops.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-datagram.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-fib_semantics.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-inet_connection_sock.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-inet_timewait_sock.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ip_forward.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ip_input.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ip_options.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ip_sockglue.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ip_tunnel.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-ipmr_base.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-metrics.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-netlink.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-protocol.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-syncookies.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_fastopen.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_input.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_minisocks.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_rate.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_recovery.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_timer.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-tcp_ulp.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-udp_tunnel_core.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv4-xfrm4_input.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-addrconf_core.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-datagram.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-exthdrs_core.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-inet6_connection_sock.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-inet6_hashtables.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-ip6_checksum.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-ip6_input.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-ip6_output.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-ip6_udp_tunnel.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-ipv6_sockglue.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-mcast_snoop.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-output_core.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-protocol.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-rpl.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-syncookies.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-udp_offload.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-xfrm6_input.c:internal-compiler-error:Segmentation-fault
| |-- net-ipv6-xfrm6_output.c:internal-compiler-error:Segmentation-fault
| |-- net-l3mdev-l3mdev.c:internal-compiler-error:Segmentation-fault
| |-- net-llc-llc_input.c:internal-compiler-error:Segmentation-fault
| |-- net-llc-llc_output.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-aead_api.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-aes_cmac.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-aes_gmac.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-agg-rx.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-agg-tx.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-airtime.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-chan.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-debugfs.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-debugfs_key.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-debugfs_netdev.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-debugfs_sta.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-driver-ops.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-ethtool.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-fils_aead.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-he.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-ht.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-iface.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-key.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-michael.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-ocb.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-offchannel.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-pm.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-rate.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-rx.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-s1g.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-scan.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-spectmgmt.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-sta_info.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-status.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-tdls.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-tkip.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-trace.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-tx.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-util.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-vht.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-wep.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-wme.c:internal-compiler-error:Segmentation-fault
| |-- net-mac80211-wpa.c:internal-compiler-error:Segmentation-fault
| |-- net-mrp.c:internal-compiler-error:Segmentation-fault
| |-- net-ncsi-ncsi-aen.c:internal-compiler-error:Segmentation-fault
| |-- net-ncsi-ncsi-cmd.c:internal-compiler-error:Segmentation-fault
| |-- net-ncsi-ncsi-rsp.c:internal-compiler-error:Segmentation-fault
| |-- net-netlabel-netlabel_addrlist.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_dev.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_in.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_out.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_route.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_subr.c:internal-compiler-error:Segmentation-fault
| |-- net-netrom-nr_timer.c:internal-compiler-error:Segmentation-fault
| |-- net-nfc-hci-command.c:internal-compiler-error:Segmentation-fault
| |-- net-nfc-hci-hcp.c:internal-compiler-error:Segmentation-fault
| |-- net-nfc-hci-llc_nop.c:internal-compiler-error:Segmentation-fault
| |-- net-nfc-hci-llc_shdlc.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-actions.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-dp_notify.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-flow.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-flow_netlink.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-flow_table.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-meter.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-openvswitch_trace.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-vport-internal_dev.c:internal-compiler-error:Segmentation-fault
| |-- net-openvswitch-vport.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-af_rds.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-bind.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-cong.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-connection.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-info.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-message.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-page.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-rdma.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-recv.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-send.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-threads.c:internal-compiler-error:Segmentation-fault
| |-- net-rds-transport.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-call_accept.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-call_event.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-call_object.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-conn_client.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-conn_event.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-conn_object.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-conn_service.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-input.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-insecure.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-key.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-local_event.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-local_object.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-output.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-peer_event.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-peer_object.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-recvmsg.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-rtt.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-sendmsg.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-server_key.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-skbuff.c:internal-compiler-error:Segmentation-fault
| |-- net-rxrpc-utils.c:internal-compiler-error:Segmentation-fault
| |-- net-sched-sch_fifo.c:internal-compiler-error:Segmentation-fault
| |-- net-sched-sch_frag.c:internal-compiler-error:Segmentation-fault
| |-- net-sched-sch_generic.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-associola.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-auth.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-bind_addr.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-chunk.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-endpointola.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-input.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-inqueue.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-ipv6.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-output.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-outqueue.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-sm_make_chunk.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-sm_sideeffect.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-sm_statefuns.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-socket.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-stream.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-stream_interleave.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-stream_sched.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-stream_sched_prio.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-stream_sched_rr.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-transport.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-tsnmap.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-ulpevent.c:internal-compiler-error:Segmentation-fault
| |-- net-sctp-ulpqueue.c:internal-compiler-error:Segmentation-fault
| |-- net-switchdev-switchdev.c:internal-compiler-error:Segmentation-fault
| |-- net-tls-tls_device_fallback.c:internal-compiler-error:Segmentation-fault
| |-- net-tls-tls_sw.c:internal-compiler-error:Segmentation-fault
| |-- net-tls-trace.c:internal-compiler-error:Segmentation-fault
| |-- net-unix-scm.c:internal-compiler-error:Segmentation-fault
| |-- net-vmw_vsock-af_vsock_tap.c:internal-compiler-error:Segmentation-fault
| |-- net-vmw_vsock-virtio_transport_common.c:internal-compiler-error:Segmentation-fault
| |-- net-vmw_vsock-vsock_addr.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-ap.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-chan.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-debugfs.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-ethtool.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-ibss.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-mesh.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-mlme.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-ocb.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-of.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-pmsr.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-radiotap.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-scan.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-sme.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-sysfs.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-trace.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-util.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-wext-compat.c:internal-compiler-error:Segmentation-fault
| |-- net-wireless-wext-sme.c:internal-compiler-error:Segmentation-fault
| |-- net-xdp-xdp_umem.c:internal-compiler-error:Segmentation-fault
| |-- net-xdp-xsk_buff_pool.c:internal-compiler-error:Segmentation-fault
| |-- net-xdp-xsk_queue.c:internal-compiler-error:Segmentation-fault
| |-- net-xdp-xskmap.c:internal-compiler-error:Segmentation-fault
| |-- net-xfrm-xfrm_algo.c:internal-compiler-error:Segmentation-fault
| |-- net-xfrm-xfrm_hash.c:internal-compiler-error:Segmentation-fault
| |-- net-xfrm-xfrm_ipcomp.c:internal-compiler-error:Segmentation-fault
| |-- net-xfrm-xfrm_output.c:internal-compiler-error:Segmentation-fault
| |-- net-xfrm-xfrm_replay.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-audit.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-capability.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-domain.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-file.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-ipc.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-label.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-lib.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-match.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-mount.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-net.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-policy.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-policy_unpack.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-procattr.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-resource.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-secid.c:internal-compiler-error:Segmentation-fault
| |-- security-apparmor-task.c:internal-compiler-error:Segmentation-fault
| |-- security-integrity-digsig_asymmetric.c:internal-compiler-error:Segmentation-fault
| |-- security-keys-request_key.c:internal-compiler-error:Segmentation-fault
| |-- security-smack-smack_access.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-control.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-ctljack.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-device.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-init.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-jack.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-memalloc.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-pcm_dmaengine.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-pcm_lib.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-pcm_memory.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-pcm_misc.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-pcm_native.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_fifo.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_lock.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_memory.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_midi_event.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_ports.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_prioq.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_queue.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-seq-seq_timer.c:internal-compiler-error:Segmentation-fault
| |-- sound-core-sound_oss.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-bcm-bcm63xx-pcm-whistler.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rl6231.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt5682.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt700.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt711-sdca.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt711.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt715-sdca.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-rt715.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-codecs-wcd-clsh-v2.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-fsl-fsl_ssi_dbg.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-generic-simple-card-utils.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-card.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-component.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-dai.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-dapm.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-generic-dmaengine-pcm.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-jack.c:internal-compiler-error:Segmentation-fault
| |-- sound-soc-soc-ops.c:internal-compiler-error:Segmentation-fault
| `-- sound-soc-soc-pcm.c:internal-compiler-error:Segmentation-fault
|-- riscv-randconfig-r002-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_migrate_context
| |-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_register
| `-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_unregister
|-- riscv-randconfig-r034-20220318
| |-- drivers-gpio-gpio-max73.c:internal-compiler-error:Segmentation-fault
| |-- drivers-hid-hid-vivaldi-common.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-input-poller.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_f01.c:internal-compiler-error:Segmentation-fault
| |-- drivers-input-rmi4-rmi_f03.c:internal-compiler-error:Segmentation-fault
| |-- drivers-usb-dwc3-debugfs.c:internal-compiler-error:Segmentation-fault
| |-- fs-eventfd.c:internal-compiler-error:Segmentation-fault
| `-- fs-posix_acl.c:internal-compiler-error:Segmentation-fault
|-- riscv-randconfig-r042-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- riscv-rv32_defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-allmodconfig
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-iio-frequency-admv1014.c:sparse:sparse:dubious:x-y
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-cacheflush.h:warning:struct-folio-declared-inside-parameter-list-will-not-be-visible-outside-of-this-definition-or-declaration
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-buildonly-randconfig-r004-20220317
| |-- arch-s390-kernel-machine_kexec.c:warning:memcpy-offset-is-out-of-the-bounds
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_migrate_context
| |-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_register
| `-- nd_perf.c:(.text):undefined-reference-to-perf_pmu_unregister
|-- s390-defconfig
| |-- arch-s390-kernel-machine_kexec.c:warning:memcpy-offset-is-out-of-the-bounds
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-randconfig-c024-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- s390-randconfig-r012-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-randconfig-r014-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- s390-randconfig-r044-20220317
| |-- include-linux-fortify-string.h:warning:__builtin_memcpy-offset-is-out-of-the-bounds
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- s390-randconfig-s031-20220317
| |-- arch-s390-kernel-machine_kexec.c:warning:memcpy-offset-is-out-of-the-bounds
| |-- drivers-dma-idma64.c:undefined-reference-to-devm_ioremap_resource
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
|-- sh-allmodconfig
| |-- arch-sh-kernel-machvec.c:warning:array-subscript-struct-sh_machine_vector-is-partly-outside-array-bounds-of-long-int
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
| `-- standard-input:Error:unknown-pseudo-op:sec
|-- sh-allyesconfig
| |-- arch-sh-kernel-machvec.c:warning:array-subscript-struct-sh_machine_vector-is-partly-outside-array-bounds-of-long-int
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
| `-- standard-input:Error:unknown-pseudo-op:sec
|-- sh-randconfig-r031-20220318
| |-- arch-sh-kernel-machvec.c:warning:array-subscript-struct-sh_machine_vector-is-partly-outside-array-bounds-of-long-int
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- sh-randconfig-r034-20220318
| |-- arch-sh-kernel-machvec.c:warning:array-subscript-struct-sh_machine_vector-is-partly-outside-array-bounds-of-long-int
| `-- standard-input:Error:.size-expression-for-xpcs_validate-does-not-evaluate-to-a-constant
|-- sparc-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- drivers-iio-frequency-admv1014.c:sparse:sparse:dubious:x-y
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-volatile-noderef-__iomem-addr-got-void
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-icr_base-got-void-noderef-__iomem
| |-- drivers-irqchip-irq-renesas-h8s.c:sparse:sparse:incorrect-type-in-assignment-(different-address-spaces)-expected-void-static-toplevel-ipr_base-got-void-noderef-__iomem
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- drivers-nvmem-sunplus-ocotp.c:sparse:sparse:symbol-sp_otp_v0-was-not-declared.-Should-it-be-static
| |-- drivers-tty-serial-sunplus-uart.c:sparse:sparse:symbol-sunplus_console_ports-was-not-declared.-Should-it-be-static
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- sparc-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- sparc-buildonly-randconfig-r006-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- sparc64-randconfig-r004-20220318
| |-- drivers-media-platform-samsung-exynos4-is-fimc-isp-video.h:warning:no-previous-prototype-for-fimc_isp_video_device_unregister
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
|-- sparc64-randconfig-r032-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- um-i386_defconfig
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- um-x86_64_defconfig
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-allnoconfig
| `-- Documentation-driver-api-nvdimm-nvdimm.rst:(SEVERE-)-Title-level-inconsistent:
|-- x86_64-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-defconfig
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-kexec
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-a002
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-a004
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-a006
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-a011
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-a015
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-c002
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-c022
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-m001
| `-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
|-- x86_64-randconfig-s021
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-randconfig-s022
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-rhel-8.3
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-rhel-8.3-func
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-rhel-8.3-kselftests
| |-- drivers-net-vxlan-vxlan_core.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-unsigned-int-usertype-b-got-restricted-__be32-usertype-vni
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- x86_64-rhel-8.3-kunit
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-rcupdate.h:error:dereferencing-pointer-to-incomplete-type-struct-css_set
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-sched_cpu_wait_empty
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- xtensa-allmodconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- xtensa-allyesconfig
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
| |-- vpu_malone.c:(.text):undefined-reference-to-__moddi3
| `-- vpu_windsor.c:(.text):undefined-reference-to-__moddi3
|-- xtensa-randconfig-p002-20220318
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
|-- xtensa-randconfig-r015-20220317
| |-- drivers-gpu-drm-amd-amdgpu-..-display-dc-core-dc_resource.c:warning:no-previous-prototype-for-is_timing_changed
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-calc_load_nohz_stop
`-- xtensa-randconfig-r023-20220318
|-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
`-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
clang_recent_errors
|-- arm-buildonly-randconfig-r003-20220317
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h-file-not-found
|-- arm-netwinder_defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- arm-randconfig-c002-20220317
| |-- arch-arm-kernel-ftrace.c:warning:no-previous-prototype-for-function-prepare_ftrace_return
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h-file-not-found
|-- arm-randconfig-c002-20220318
| |-- arch-arm-kernel-unwind.c:warning:Assigned-value-is-garbage-or-undefined-clang-analyzer-core.uninitialized.Assign
| |-- drivers-hid-hid-core.c:warning:Although-the-value-stored-to-field-is-used-in-the-enclosing-expression-the-value-is-never-actually-read-from-field-clang-analyzer-deadcode.DeadStores
| |-- drivers-input-serio-ps2-gpio.c:warning:Value-stored-to-rxflags-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-memory-brcmstb_dpfe.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-with-analogou
| |-- drivers-phy-broadcom-phy-brcm-usb.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-with-an
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
| |-- lib-stackinit_kunit.c:warning:Address-of-stack-memory-associated-with-local-variable-var-is-still-referred-to-by-the-global-variable-fill_start-upon-returning-to-the-caller.-This-will-be-a-dangling-re
| |-- lib-stackinit_kunit.c:warning:Address-of-stack-memory-associated-with-local-variable-var-is-still-referred-to-by-the-global-variable-target_start-upon-returning-to-the-caller.-This-will-be-a-dangling-
| |-- lib-stackinit_kunit.c:warning:Excessive-padding-in-struct-test_big_hole-(-padding-bytes-where-is-optimal).
| `-- lib-stackinit_kunit.c:warning:Undefined-or-garbage-value-returned-to-caller-clang-analyzer-core.uninitialized.UndefReturn
|-- arm-randconfig-r025-20220317
| `-- kernel-sched-sched.h:fatal-error:asm-paravirt_api_clock.h-file-not-found
|-- arm64-randconfig-r033-20220319
| |-- lib-raid6-neon1.c:warning:mixing-declarations-and-code-is-incompatible-with-standards-before-C99
| |-- lib-raid6-neon2.c:warning:mixing-declarations-and-code-is-incompatible-with-standards-before-C99
| |-- lib-raid6-neon4.c:warning:mixing-declarations-and-code-is-incompatible-with-standards-before-C99
| |-- lib-raid6-neon8.c:warning:mixing-declarations-and-code-is-incompatible-with-standards-before-C99
| `-- lib-raid6-recov_neon_inner.c:warning:mixing-declarations-and-code-is-incompatible-with-standards-before-C99
|-- hexagon-buildonly-randconfig-r005-20220318
| |-- drivers-media-platform-renesas-renesas-ceu.c:warning:unused-variable-ceu_data_rz
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- hexagon-randconfig-r015-20220317
| `-- drivers-media-platform-samsung-s5p-jpeg-jpeg-core.c:warning:unused-variable-samsung_jpeg_match
|-- hexagon-randconfig-r034-20220317
| `-- drivers-media-platform-st-sti-c8sectpfe-c8sectpfe-core.c:warning:unused-variable-c8sectpfe_match
|-- hexagon-randconfig-r036-20220317
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- hexagon-randconfig-r041-20220317
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- hexagon-randconfig-r041-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- hexagon-randconfig-r045-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- hexagon-randconfig-r045-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- i386-randconfig-a002
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- i386-randconfig-a004
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- i386-randconfig-a006
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- i386-randconfig-a011
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- i386-randconfig-a013
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- i386-randconfig-a015
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- i386-randconfig-c001
| |-- drivers-hid-hid-core.c:warning:Although-the-value-stored-to-field-is-used-in-the-enclosing-expression-the-value-is-never-actually-read-from-field-clang-analyzer-deadcode.DeadStores
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
| `-- net-ipv4-tcp_input.c:warning:Value-stored-to-reason-is-never-read-clang-analyzer-deadcode.DeadStores
|-- mips-cu1830-neo_defconfig
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- mips-randconfig-c004-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- riscv-randconfig-c006-20220317
| |-- drivers-clk-imx-clk-pll14xx.c:warning:Value-stored-to-pll_div_ctl1-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-firmware-turris-mox-rwtm.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-with-ana
| |-- drivers-hid-hid-core.c:warning:Although-the-value-stored-to-field-is-used-in-the-enclosing-expression-the-value-is-never-actually-read-from-field-clang-analyzer-deadcode.DeadStores
| |-- drivers-hwmon-nsa320-hwmon.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-with-analogous
| |-- drivers-input-serio-ps2-gpio.c:warning:Value-stored-to-rxflags-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-chips-media-coda-bit.c:warning:Value-stored-to-value-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-chips-media-coda-common.c:warning:Array-access-(from-variable-formats-)-results-in-a-null-pointer-dereference-clang-analyzer-core.NullDereference
| |-- drivers-media-platform-st-sti-delta-delta-debug.c:warning:Value-stored-to-delta-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-debug.c:warning:Value-stored-to-s-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-debug.c:warning:Value-stored-to-str-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-mjpeg-dec.c:warning:Value-stored-to-b-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-v4l2.c:warning:Value-stored-to-data-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-v4l2.c:warning:Value-stored-to-delta-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-v4l2.c:warning:Value-stored-to-str-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-v4l2.c:warning:Value-stored-to-str1-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-delta-delta-v4l2.c:warning:Value-stored-to-str2-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-hva-hva-h264.c:warning:Value-stored-to-dev-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-hva-hva-h264.c:warning:Value-stored-to-idr_pic_id-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-hva-hva-v4l2.c:warning:Value-stored-to-dev-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-hva-hva-v4l2.c:warning:Value-stored-to-frame-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-media-platform-st-sti-hva-hva-v4l2.c:warning:Value-stored-to-stream-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-mtd-nand-ecc-mxic.c:warning:Branch-condition-evaluates-to-a-garbage-value-clang-analyzer-core.uninitialized.Branch
| |-- drivers-mtd-nand-ecc-mxic.c:warning:Value-stored-to-dev-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
| |-- drivers-phy-broadcom-phy-brcm-usb.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-with-an
| |-- drivers-staging-greybus-arche-apb-ctrl.c:warning:Call-to-function-sprintf-is-insecure-as-it-does-not-provide-bounding-of-the-memory-buffer-or-security-checks-introduced-in-the-C11-standard.-Replace-wi
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- riscv-randconfig-c006-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- riscv-randconfig-r021-20220318
| `-- include-asm-generic-io.h:warning:performing-pointer-arithmetic-on-a-null-pointer-has-undefined-behavior-err:false
|-- riscv-randconfig-r042-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- s390-randconfig-c005-20220317
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- s390-randconfig-c005-20220318
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- s390-randconfig-r002-20220317
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- s390-randconfig-r044-20220318
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- x86_64-randconfig-a001
| |-- drivers-spi-spi-amd.c:warning:cast-to-smaller-integer-type-enum-amd_spi_versions-from-const-void
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- x86_64-randconfig-a003
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- x86_64-randconfig-a005
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- x86_64-randconfig-a012
| |-- fs-btrfs-ordered-data.c:warning:expecting-prototype-for-Add-an-ordered-extent-to-the-per().-Prototype-was-for-btrfs_add_ordered_extent()-instead
| |-- fs-btrfs-tree-log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- x86_64-randconfig-a014
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
| |-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
| |-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
| `-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
|-- x86_64-randconfig-a016
| |-- include-linux-fortify-string.h:warning:call-to-__read_overflow2_field-declared-with-warning-attribute:detected-read-beyond-size-of-field-(2nd-parameter)-maybe-use-struct_group()
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
| |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
| `-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
`-- x86_64-randconfig-c007
|-- drivers-hid-hid-core.c:warning:Although-the-value-stored-to-field-is-used-in-the-enclosing-expression-the-value-is-never-actually-read-from-field-clang-analyzer-deadcode.DeadStores
|-- drivers-pci-vgaarb.c:warning:Value-stored-to-dev-during-its-initialization-is-never-read-clang-analyzer-deadcode.DeadStores
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-idle_task_exit
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_activate
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_deactivate
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_dying
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_starting
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_cpu_wait_empty
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-sched_init_smp
|-- kernel-sched-core.c:warning:no-previous-prototype-for-function-task_sched_runtime
|-- kernel-sched-fair.c:warning:no-previous-prototype-for-function-nohz_balance_enter_idle
|-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_remote
|-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_start
|-- kernel-sched-loadavg.c:warning:no-previous-prototype-for-function-calc_load_nohz_stop
`-- net-ipv4-tcp_input.c:warning:Value-stored-to-reason-is-never-read-clang-analyzer-deadcode.DeadStores
elapsed time: 768m
configs tested: 119
configs skipped: 4
gcc tested configs:
arm allyesconfig
arm defconfig
arm allmodconfig
arm64 allyesconfig
arm64 defconfig
um i386_defconfig
um x86_64_defconfig
mips allyesconfig
riscv allyesconfig
mips allmodconfig
riscv allmodconfig
i386 randconfig-c001
powerpc allmodconfig
m68k allyesconfig
s390 allmodconfig
m68k allmodconfig
powerpc allyesconfig
s390 allyesconfig
sparc allyesconfig
sh allmodconfig
xtensa allyesconfig
h8300 allyesconfig
parisc allyesconfig
alpha allyesconfig
arc allyesconfig
nios2 allyesconfig
m68k bvme6000_defconfig
powerpc bamboo_defconfig
sh se7724_defconfig
arm corgi_defconfig
sh ul2_defconfig
powerpc holly_defconfig
mips capcella_defconfig
sparc alldefconfig
sh ecovec24-romimage_defconfig
arm clps711x_defconfig
m68k m5208evb_defconfig
riscv defconfig
sh rsk7201_defconfig
arm randconfig-c002-20220317
arm randconfig-c002-20220318
ia64 defconfig
ia64 allmodconfig
ia64 allyesconfig
m68k defconfig
nds32 allnoconfig
nios2 defconfig
csky defconfig
alpha defconfig
nds32 defconfig
arc defconfig
parisc defconfig
parisc64 defconfig
s390 defconfig
i386 allyesconfig
i386 debian-10.3
i386 debian-10.3-kselftests
i386 defconfig
sparc defconfig
powerpc allnoconfig
x86_64 randconfig-a006
x86_64 randconfig-a002
x86_64 randconfig-a004
i386 randconfig-a003
i386 randconfig-a001
i386 randconfig-a005
x86_64 randconfig-a015
x86_64 randconfig-a013
x86_64 randconfig-a011
i386 randconfig-a014
i386 randconfig-a012
i386 randconfig-a016
s390 randconfig-r044-20220317
arc randconfig-r043-20220318
riscv randconfig-r042-20220317
arc randconfig-r043-20220317
riscv nommu_k210_defconfig
riscv nommu_virt_defconfig
riscv allnoconfig
riscv rv32_defconfig
x86_64 rhel-8.3-kselftests
x86_64 defconfig
x86_64 kexec
x86_64 rhel-8.3
x86_64 rhel-8.3-func
x86_64 rhel-8.3-kunit
x86_64 allyesconfig
clang tested configs:
arm randconfig-c002-20220318
x86_64 randconfig-c007
s390 randconfig-c005-20220317
s390 randconfig-c005-20220318
arm randconfig-c002-20220317
mips randconfig-c004-20220318
mips randconfig-c004-20220317
riscv randconfig-c006-20220318
powerpc randconfig-c003-20220318
powerpc randconfig-c003-20220317
i386 randconfig-c001
riscv randconfig-c006-20220317
arm netwinder_defconfig
mips cu1830-neo_defconfig
powerpc mpc836x_rdk_defconfig
powerpc mpc512x_defconfig
powerpc ebony_defconfig
x86_64 randconfig-a001
x86_64 randconfig-a003
x86_64 randconfig-a005
i386 randconfig-a002
i386 randconfig-a006
i386 randconfig-a004
x86_64 randconfig-a014
x86_64 randconfig-a012
x86_64 randconfig-a016
i386 randconfig-a011
i386 randconfig-a013
i386 randconfig-a015
hexagon randconfig-r045-20220318
hexagon randconfig-r041-20220318
riscv randconfig-r042-20220318
hexagon randconfig-r041-20220317
s390 randconfig-r044-20220318
hexagon randconfig-r045-20220317
---
0-DAY CI Kernel Test Service
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
2 years, 9 months
[ANNOUNCE][CFP] Linux Security Summit North America 2022
by James Morris
==============================================================================
ANNOUNCEMENT AND CALL FOR PARTICIPATION
LINUX SECURITY SUMMIT NORTH AMERICA 2022
23-24 June
Austin, Texas & Virtual
==============================================================================
DESCRIPTION
Linux Security Summit North America (LSS-NA) is a technical forum for
collaboration between Linux developers, researchers, and end-users. Its
primary aim is to foster community efforts in analyzing and solving Linux
security challenges.
The program committee currently seeks proposals for:
* Refereed Presentations:
45 minutes in length.
* Panel Discussion Topics:
45 minutes in length.
* Short Topics:
30 minutes in total, including at least 10 minutes discussion.
* Tutorials
90 minutes in length.
Tutorial sessions should be focused on advanced Linux security defense
topics within areas such as the kernel, compiler, and security-related
libraries. Priority will be given to tutorials created for this conference,
and those where the presenter a leading subject matter expert on the topic.
Topic areas include, but are not limited to:
* Kernel self-protection
* Access control
* Cryptography and key management
* Integrity policy and enforcement
* Hardware Security
* IoT and embedded security
* Virtualization and containers
* System-specific system hardening
* Case studies
* Security tools
* Security UX
* Emerging technologies, threats & techniques
Proposals should be submitted via:
https://events.linuxfoundation.org/linux-security-summit-north-america/
Note that for 2022, we are returning to having both North American and
European events (LSS-EU will be held in September).
LSS-NA DATES
* CFP close: March 30
* CFP notifications: April 15
* Schedule announced: April 19
* Event: September 23-24
WHO SHOULD ATTEND
We're seeking a diverse range of attendees and welcome participation by
people involved in Linux security development, operations, and research.
LSS is a unique global event that provides the opportunity to present and
discuss your work or research with key Linux security community members and
maintainers. It's also useful for those who wish to keep up with the latest
in Linux security development and to provide input to the development
process.
WEB SITE
https://events.linuxfoundation.org/linux-security-summit-north-america/
TWITTER
For event updates and announcements, follow:
https://twitter.com/LinuxSecSummit
#linuxsecuritysummit
PROGRAM COMMITTEE
The program committee for LSS 2021 is:
* James Morris, Microsoft
* Serge Hallyn, Cisco
* Paul Moore, Microsoft
* Stephen Smalley, NSA
* Elena Reshetova, Intel
* John Johansen, Canonical
* Kees Cook, Google
* Casey Schaufler, Intel
* Mimi Zohar, IBM
* David A. Wheeler, Linux Foundation
The program committee may be contacted as a group via email:
lss-pc () lists.linuxfoundation.org
--
2 years, 9 months
Bug: Auditd messes with directory permissions (chmod 750)
by Elof of Unit #17
Hi!
This is a minor bug report.
Summary:
If /etc/audit/auditd.conf contain for example:
log_file = /var/log/auditd.log
Then /sbin/auditd will chmod the system dir /var/log to 0750.
This is bad and should not happen unless explicitly stated in the configuration.
Full story:
I inherited a Debian machine, installed by a former co-worker of mine.
He had installed and configured auditd (amongst other things).
I now installed exim4, but it failed to start due to lack of permissions:
Mar 17 11:14:37 foobar exim4[4251]: 2022-03-17 11:14:37 Cannot open main log file "/var/log/exim4/mainlog": Permission denied: euid=0 egid=114
Mar 17 11:14:37 foobar exim4[4251]: exim: could not open panic log - aborting: see message(s) above
I see that /var/log has mode 750:
ls -ld /var/log/
drwxr-x--- 17 root syslog 4096 Mar 17 10:45 /var/log/
Now the question was what (re)set this permission after every reboot?
After hours of investigation I finally narrowed it down to auditd being the culprit.
It turns out that the normal path for the logfile is /var/log/audit/audit.log
Setting mode 0750 on the subdir /var/log/audit is nice and usually wanted.
But if you specify log_file = /var/log/auditd.log or log_file = /opt/auditd.log you *don't* want the system dirs /var/log or /opt to be chmod:ed to 0750, bricking parts of the system.
Solution:
1.
Please syslog a message if and when auditd chmod a directory!
Ex:
"auditd: chmod /var/log from 0755 to 0750"
That would have shorten my investigation by many hours, to see what part of the system magically reverted /var/log to 750 after every reboot.
2.
Add some intelligence to the chmod section, making it only chmod the logdir if it is located in its own subdir.
I guess that it is suficient to just check if the full path to the file is '/var/log' and if so do nothing. That would probably be the most common mistake people would do. Other cases would be resolved quickly when you see the syslog message from 1) above.
3.
Possibly there should also be a configuration option for this. Maybe someone wants a different mode on the subdir (like for letting splunk read the file without messing with setfacl).
/Elof
2 years, 9 months
[PATCH v33 00/29] LSM: Module stacking for AppArmor
by Casey Schaufler
This patchset provides the changes required for
the AppArmor security module to stack safely with any other.
v33: Rework the supplimental audit record generation once more,
this time taking pseudo-code provided by Paul Moore as a
basis. The resulting code is considerably simpler and fits
better with the existing code flow.
v32: Rebase to 5.17-rc2
Incorporate additional feedback from v30.
v31: Rebase to 5.16-rc4
Incorporate feedback from Paul Moore on the audit
component changes.
v30: Rebase to 5.16-rc1
Replace the integrity sub-system reuse of the audit
subsystem event matching functions with IMA specific
functions. This is done because audit needs to maintain
information about multiple security modules in audit
rules while IMA to restricts the information to a single
security module.
The binder hooks have been changed and are no longer
called with sufficient information to identify the
interface_lsm. Pass that information in the binder
message, and use that in the compatibility decision.
Refactor the audit changes.
v29: Rebase to 5.15-rc1
Rework the supplimental audit record generation. Attach
a list of supplimental data to the audit_buffer and
generate the auxiliary records as needed on event end.
This should be usable for other auxiliary data, such as
container IDs. There is other ongoing audit work that
will require integration with this.
v28: Rebase to 5.14-rc2
Provide IMA rules bounds checking (patch 04)
Quote contexts in MAC_TASK_CONTEXTS and MAC_OBJ_CONTEXTS
audit records because of AppArmor's use of '=' in context
values. (patch 22,23)
v27: Fixes for landlock (patch 02)
Rework the subject audit record generation. This version is
simpler and reflects feedback from Paul Moore. (patch 22)
v26: Rebase to 5.13-rc1
Include the landlock security module.
Accomodate change from security_task_getsecid() to
security_task_getsecid_obj() and security_task_getsecid_subj().
v25: Rebase to 5.12-rc2
Incorporate feedback from v24
- The IMA team suggested improvements to the integrity rule
processing.
v24: Rebase to 5.11-rc1
Incorporate feedback from v23
- Address the IMA team's concerns about "label collisions".
A label collision occurs when there is ambiguity about
which of multiple LSMs is being targeted in the definition
of an integrity check rule. A system with Smack and
AppArmor would be unable to distinguish which LSM is
important to an integrity rule referrencing the label
"unconfined" as that label is meaningful to both.
Provide a boot option to specify which LSM will be used in
IMA rules when multiple LSMs are present. (patch 04)
Pull LSM "slot" identification from later audit patches in
in support of this (patch 03).
- Pick up a few audit events that need to include supplimental
subject context records that had been missed in the
previous version.
v23: Rebase to 5.10-rc4
Incorporate feedback from v22
- Change /proc/*/attr/display to /proc/*/attr/interface_lsm to
make the purpose clearer. (patch 0012)
- Include ABI documentation. (patch 0012, 0022)
- Introduce LSM documentation updates with the patches where
the interfaces are added rather than at the end. (patch 0012, 0022)
Include more maintainers and mail lists in To: and Cc: directives.
v22: Rebase to 5.10-rc1
v21: Rebase to 5.9-rc4
Incorporate feedback from v20
- Further revert UDS SO_PEERSEC to use scaffolding around
the interfaces that use lsmblobs and store only a single
secid. The possibility of multiple security modules
requiring data here is still a future problem.
- Incorporate Richard Guy Briggs' non-syscall auxiliary
records patch (patch 0019-0021) in place of my "supplimental"
records implementation. [I'm not sure I've given proper
attestation. I will correct as appropriate]
v20: Rebase to 5.9-rc1
Change the BPF security module to use the lsmblob data. (patch 0002)
Repair length logic in subject label processing (patch 0015)
Handle -EINVAL from the empty BPF setprocattr hook (patch 0020)
Correct length processing in append_ctx() (patch 0022)
v19: Rebase to 5.8-rc6
Incorporate feedback from v18
- Revert UDS SO_PEERSEC implementation to use lsmblobs
directly, rather than allocating as needed. The correct
treatment of out-of-memory conditions in the later case
is difficult to define. (patch 0005)
- Use a size_t in append_ctx() (patch 0021)
- Fix a memory leak when creating compound contexts. (patch 0021)
Fix build error when CONFIG_SECURITY isn't set (patch 0013)
Fix build error when CONFIG_SECURITY isn't set (patch 0020)
Fix build error when CONFIG_SECURITY isn't set (patch 0021)
v18: Rebase to 5.8-rc3
Incorporate feedback from v17
- Null pointer checking in UDS (patch 0005)
Match changes in IMA code (patch 0012)
Fix the behavior of LSM context supplimental audit
records so that there's always exactly one when it's
appropriate for there to be one. This is a substantial
change that requires extention of the audit_context beyond
syscall events. (patch 0020)
v17: Rebase to 5.7-rc4
v16: Rebase to 5.6
Incorporate feedback from v15 - Thanks Stephen, Mimi and Paul
- Generally improve commit messages WRT scaffolding
- Comment ima_lsm_isset() (patch 0002)
- Some question may remain on IMA warning (patch 0002)
- Mark lsm_slot as __lsm_ro_after_init not __init_data (patch 0002)
- Change name of lsmblob variable in ima_match_rules() (patch 0003)
- Instead of putting a struct lsmblob into the unix_skb_parms
structure put a pointer to an allocated instance. There is
currently only space for 5 u32's in unix_skb_parms and it is
likely to get even tighter. Fortunately, the lifecycle
management of the allocated lsmblob is simple. (patch 0005)
- Dropped Acks due to the above change (patch 0005)
- Improved commentary on secmark labeling scaffolding. (patch 0006)
- Reduced secmark related labeling scaffolding. (patch 0006)
- Replace use of the zeroth entry of an lsmblob in scaffolding
with a function lsmblob_value() to hopefully make it less
obscure. (patch 0006)
- Convert security_secmark_relabel_packet to use lsmblob as
this reduces much of the most contentious scaffolding. (patch 0006)
- Dropped Acks due to the above change (patch 0006)
- Added BUILD_BUG_ON() for CIPSO tag 6. (patch 0018)
- Reworked audit subject information. Instead of adding fields in
the middle of existing records add a new record to the event. When
a separate record is required use subj="?". (patch 0020)
- Dropped Acks due to the above change (patch 0020)
- Reworked audit object information. Instead of adding fields in
the middle of existing records add a new record to the event. When
a separate record is required use obj="?". (patch 0021)
- Dropped Acks due to the above change (patch 0021)
- Enhanced documentation (patch 0022)
- Removed unnecessary error code check in security_getprocattr()
(patch 0021)
v15: Rebase to 5.6-rc1
- Revise IMA data use (patch 0002)
Incorporate feedback from v14
- Fix lockdown module registration naming (patch 0002)
- Revise how /proc/self/attr/context is gathered. (patch 0022)
- Revise access modes on /proc/self/attr/context. (patch 0022)
- Revise documentation on LSM external interfaces. (patch 0022)
v14: Rebase to 5.5-rc5
Incorporate feedback from v13
- Use an array of audit rules (patch 0002)
- Significant change, removed Acks (patch 0002)
- Remove unneeded include (patch 0013)
- Use context.len correctly (patch 0015)
- Reorder code to be more sensible (patch 0016)
- Drop SO_PEERCONTEXT as it's not needed yet (patch 0023)
v13: Rebase to 5.5-rc2
Incorporate feedback from v12
- Print lsmblob size with %z (Patch 0002)
- Convert lockdown LSM initialization. (Patch 0002)
- Restore error check in nft_secmark_compute_secid (Patch 0006)
- Correct blob scaffolding in ima_must_appraise() (Patch 0009)
- Make security_setprocattr() clearer (Patch 0013)
- Use lsm_task_display more widely (Patch 0013)
- Use passed size in lsmcontext_init() (Patch 0014)
- Don't add a smack_release_secctx() hook (Patch 0014)
- Don't print warning in security_release_secctx() (Patch 0014)
- Don't duplicate the label in nfs4_label_init_security() (Patch 0016)
- Remove reviewed-by as code has significant change (Patch 0016)
- Send the entire lsmblob for Tag 6 (Patch 0019)
- Fix description of socket_getpeersec_stream parameters (Patch 0023)
- Retain LSMBLOB_FIRST. What was I thinking? (Patch 0023)
- Add compound context to LSM documentation (Patch 0023)
v12: Rebase to 5.5-rc1
Fixed a couple of incorrect contractions in the text.
v11: Rebase to 5.4-rc6
Incorporate feedback from v10
- Disambiguate reading /proc/.../attr/display by restricting
all use of the interface to the current process.
- Fix a merge error in AppArmor's display attribute check
v10: Ask the security modules if the display can be changed.
v9: There is no version 9
v8: Incorporate feedback from v7
- Minor clean-up in display value management
- refactor "compound" context creation to use a common
append_ctx() function.
v7: Incorporate feedback from v6
- Make setting the display a privileged operation. The
availability of compound contexts reduces the need for
setting the display.
v6: Incorporate feedback from v5
- Add subj_<lsm>= and obj_<lsm>= fields to audit records
- Add /proc/.../attr/context to get the full context in
lsmname\0value\0... format as suggested by Simon McVittie
- Add SO_PEERCONTEXT for getsockopt() to get the full context
in the same format, also suggested by Simon McVittie.
- Add /sys/kernel/security/lsm_display_default to provide
the display default value.
v5: Incorporate feedback from v4
- Initialize the lsmcontext in security_secid_to_secctx()
- Clear the lsmcontext in all security_release_secctx() cases
- Don't use the "display" on strictly internal context
interfaces.
- The SELinux binder hooks check for cases where the context
"display" isn't compatible with SELinux.
v4: Incorporate feedback from v3
- Mark new lsm_<blob>_alloc functions static
- Replace the lsm and slot fields of the security_hook_list
with a pointer to a LSM allocated lsm_id structure. The
LSM identifies if it needs a slot explicitly. Use the
lsm_id rather than make security_add_hooks return the
slot value.
- Validate slot values used in security.c
- Reworked the "display" process attribute handling so that
it works right and doesn't use goofy list processing.
- fix display value check in dentry_init_security
- Replace audit_log of secids with '?' instead of deleting
the audit log
v3: Incorporate feedback from v2
- Make lsmblob parameter and variable names more
meaningful, changing "le" and "l" to "blob".
- Improve consistency of constant naming.
- Do more sanity checking during LSM initialization.
- Be a bit clearer about what is temporary scaffolding.
- Rather than clutter security_getpeersec_dgram with
otherwise unnecessary checks remove the apparmor
stub, which does nothing useful.
Patch 01 separates the audit rule processing from the
integrity rule processing. They were never really the
same, but void pointers could hide that. The changes
following use the rule pointers differently in audit
and IMA, so keeping the code common is not a good idea.
Patch 02 moves management of the sock security blob
from the individual modules to the infrastructure.
Patches 03-04 introduce a structure "lsmblob" that will gradually
replace the "secid" as a shorthand for security module information.
At this point lsmblob contains an array of u32 secids, one "slot"
for each of the security modules compiled into the kernel that
used secids. A "slot" is allocated when a security module requests
one.
Patch 05 provides mechanism for the IMA subsystem to identify
explicitly which LSM is subject to IMA policy. This includes
a boot option for specifying the default and an additional option
in IMA rules "lsm=".
Patches 06-15 change LSM interfaces to use the lsmblob instead
of secids. It is important that the lsmblob be a fixed size entity
that does not have to be allocated. Several of the places
where it is used would have performance and/or locking
issues with dynamic allocation.
Patch 15 provides a mechanism for a process to identify which
security module's hooks should be used when displaying or
converting a security context string. A new interface
/proc/self/attr/interface_lsm contains the name of the security
module to show. Reading from this file will present the name of
the module, while writing to it will set the value. Only names
of active security modules are accepted. Internally, the name
is translated to the appropriate "slot" number for the module
which is then stored in the task security blob. Setting the
display requires that all modules using the /proc interfaces
allow the transition. The interface LSM of other processess
can be neither read nor written. All suggested cases for
reading the interface LSM of a different process have race
conditions.
Patch 16 Starts the process of changing how a security
context is represented. Since it is possible for a
security context to have been generated by more than one
security module it is now necessary to note which module
created a security context so that the correct "release"
hook can be called. There are several places where the
module that created a security context cannot be inferred.
This is achieved by introducing a "lsmcontext" structure
which contains the context string, its length and the
"slot" number of the security module that created it.
The security_release_secctx() interface is changed,
replacing the (string,len) pointer pair with a lsmcontext
pointer.
Patches 17-18 convert the security interfaces from
(string,len) pointer pairs to a lsmcontext pointer.
The slot number identifying the creating module is
added by the infrastructure. Where the security context
is stored for extended periods the data type is changed.
The Netlabel code is converted to save lsmblob structures
instead of secids in Patch 19. This is not strictly
necessary as there can only be one security module that
uses Netlabel at this point. Using a lsmblob is much
cleaner, as the interfaces that use the data have all
been converted.
Patch 20 adds checks to the binder hooks which verify
that both ends of a transaction use the same interface LSM.
Patch 21 adds a parameter to security_secid_to_secctx()
that indicates which of the security modules should be used
to provide the context.
Patches 22-25 provide mechanism to keeping a list of auxiliary
record data in an audit_buffer. The list is read when the
audit record is ended, and supplimental records are created
as needed.
Patch 26 adds a supplimental audit record for subject
LSM data when there are multiple security modules with such data.
The AUDIT_MAC_TASK_CONTEXTS record is used in conjuction with a
"subj=?" field to identify the subject data. The
AUDIT_MAC_TASK_CONTEXTS record identifies the security module
with the data: subj_selinux=xyz_t subj_apparmor=abc.
An example of the MAC_TASK_CONTEXTS (1420) record is:
type=UNKNOWN[1420]
msg=audit(1600880931.832:113)
subj_apparmor==unconfined
subj_smack=_
Patch 27 adds a supplimental audit record for object
LSM data when there are multiple security modules with such data.
The AUDIT_MAC_OBJ_CONTEXTS record is used in conjuction The
with a "obj=?" field to identify the object data.
The AUDIT_MAC_OBJ_CONTEXTS record identifies the security module
with the data: obj_selinux="xyz_t obj_apparmor="abc". While
AUDIT_MAC_TASK_CONTEXTS records will always contain an entry
for each possible security modules, AUDIT_MAC_OBJ_CONTEXTS
records will only contain entries for security modules for
which the object in question has data.
An example of the MAC_OBJ_CONTEXTS (1421) record is:
type=UNKNOWN[1421]
msg=audit(1601152467.009:1050):
obj_selinux=unconfined_u:object_r:user_home_t:s0
Patch 28 adds a new interface for getting the compound security
contexts, /proc/self/attr/context. An example of the content
of this file is:
selinux\0one_u:one_r:one_t:s0-s0:c0.c1023\0apparmor\0unconfined\0
Finally, with all interference on the AppArmor hooks removed,
Patch 29 removes the exclusive bit from AppArmor. An unnecessary
stub hook was also removed.
The Ubuntu project is using an earlier version of this patchset in
their distribution to enable stacking for containers.
Performance measurements to date have the change within the "noise".
The sockperf and dbench results are on the order of 0.2% to 0.8%
difference, with better performance being as common as worse. The
benchmarks were run with AppArmor and Smack on Ubuntu.
https://github.com/cschaufler/lsm-stacking.git#stack-5.17-rc2-v33-a
Casey Schaufler (29):
integrity: disassociate ima_filter_rule from security_audit_rule
LSM: Infrastructure management of the sock security
LSM: Add the lsmblob data structure.
LSM: provide lsm name and id slot mappings
IMA: avoid label collisions with stacked LSMs
LSM: Use lsmblob in security_audit_rule_match
LSM: Use lsmblob in security_kernel_act_as
LSM: Use lsmblob in security_secctx_to_secid
LSM: Use lsmblob in security_secid_to_secctx
LSM: Use lsmblob in security_ipc_getsecid
LSM: Use lsmblob in security_current_getsecid
LSM: Use lsmblob in security_inode_getsecid
LSM: Use lsmblob in security_cred_getsecid
LSM: Specify which LSM to display
LSM: Ensure the correct LSM context releaser
LSM: Use lsmcontext in security_secid_to_secctx
LSM: Use lsmcontext in security_inode_getsecctx
LSM: security_secid_to_secctx in netlink netfilter
NET: Store LSM netlabel data in a lsmblob
binder: Pass LSM identifier for confirmation
LSM: Extend security_secid_to_secctx to include module selection
Audit: Keep multiple LSM data in audit_names
Audit: Create audit_stamp structure
LSM: Add a function to report multiple LSMs
Audit: Allow multiple records in an audit_buffer
Audit: Add record for multiple task security contexts
Audit: Add record for multiple object security contexts
LSM: Add /proc attr entry for full LSM context
AppArmor: Remove the exclusive flag
Documentation/ABI/testing/ima_policy | 8 +-
.../ABI/testing/procfs-attr-lsm_display | 22 +
Documentation/security/lsm.rst | 28 +
drivers/android/binder.c | 47 +-
drivers/android/binder_internal.h | 1 +
fs/ceph/xattr.c | 6 +-
fs/nfs/nfs4proc.c | 8 +-
fs/nfsd/nfs4xdr.c | 20 +-
fs/proc/base.c | 2 +
include/linux/audit.h | 15 +-
include/linux/cred.h | 3 +-
include/linux/lsm_hooks.h | 19 +-
include/linux/security.h | 244 ++++++-
include/net/netlabel.h | 8 +-
include/net/scm.h | 15 +-
include/uapi/linux/audit.h | 2 +
kernel/audit.c | 253 +++++--
kernel/audit.h | 17 +-
kernel/auditfilter.c | 29 +-
kernel/auditsc.c | 160 ++---
kernel/cred.c | 12 +-
net/ipv4/cipso_ipv4.c | 26 +-
net/ipv4/ip_sockglue.c | 12 +-
net/netfilter/nf_conntrack_netlink.c | 24 +-
net/netfilter/nf_conntrack_standalone.c | 11 +-
net/netfilter/nfnetlink_queue.c | 38 +-
net/netfilter/nft_meta.c | 10 +-
net/netfilter/xt_SECMARK.c | 7 +-
net/netlabel/netlabel_kapi.c | 6 +-
net/netlabel/netlabel_unlabeled.c | 101 ++-
net/netlabel/netlabel_unlabeled.h | 2 +-
net/netlabel/netlabel_user.c | 13 +-
net/netlabel/netlabel_user.h | 6 +-
security/apparmor/include/apparmor.h | 3 +-
security/apparmor/include/net.h | 6 +-
security/apparmor/include/procattr.h | 2 +-
security/apparmor/lsm.c | 105 +--
security/apparmor/procattr.c | 22 +-
security/bpf/hooks.c | 12 +-
security/commoncap.c | 7 +-
security/integrity/ima/ima.h | 26 -
security/integrity/ima/ima_appraise.c | 12 +-
security/integrity/ima/ima_main.c | 63 +-
security/integrity/ima/ima_policy.c | 58 +-
security/landlock/cred.c | 2 +-
security/landlock/fs.c | 2 +-
security/landlock/ptrace.c | 2 +-
security/landlock/setup.c | 5 +
security/landlock/setup.h | 1 +
security/loadpin/loadpin.c | 8 +-
security/lockdown/lockdown.c | 7 +-
security/safesetid/lsm.c | 8 +-
security/security.c | 615 ++++++++++++++++--
security/selinux/hooks.c | 99 +--
security/selinux/include/classmap.h | 3 +-
security/selinux/include/objsec.h | 5 +
security/selinux/include/security.h | 1 +
security/selinux/netlabel.c | 25 +-
security/selinux/ss/services.c | 4 +-
security/smack/smack.h | 6 +
security/smack/smack_access.c | 2 +-
security/smack/smack_lsm.c | 91 +--
security/smack/smack_netfilter.c | 4 +-
security/smack/smackfs.c | 10 +-
security/tomoyo/tomoyo.c | 8 +-
security/yama/yama_lsm.c | 7 +-
66 files changed, 1752 insertions(+), 654 deletions(-)
create mode 100644 Documentation/ABI/testing/procfs-attr-lsm_display
base-commit: 26291c54e111ff6ba87a164d85d4a4e134b7315c
--
2.31.1
2 years, 9 months
Re: [PATCH 03/17] io_uring: add infra and support for IORING_OP_URING_CMD
by Paul Moore
On Fri, Mar 11, 2022 at 12:11 PM Luis Chamberlain <mcgrof(a)kernel.org> wrote:
> On Thu, Mar 10, 2022 at 07:43:04PM -0700, Jens Axboe wrote:
> > On 3/10/22 6:51 PM, Luis Chamberlain wrote:
> > > On Tue, Mar 08, 2022 at 08:50:51PM +0530, Kanchan Joshi wrote:
> > >> From: Jens Axboe <axboe(a)kernel.dk>
> > >>
> > >> This is a file private kind of request. io_uring doesn't know what's
> > >> in this command type, it's for the file_operations->async_cmd()
> > >> handler to deal with.
> > >>
> > >> Signed-off-by: Jens Axboe <axboe(a)kernel.dk>
> > >> Signed-off-by: Kanchan Joshi <joshi.k(a)samsung.com>
> > >> ---
> > >
> > > <-- snip -->
> > >
> > >> +static int io_uring_cmd(struct io_kiocb *req, unsigned int issue_flags)
> > >> +{
> > >> + struct file *file = req->file;
> > >> + int ret;
> > >> + struct io_uring_cmd *ioucmd = &req->uring_cmd;
> > >> +
> > >> + ioucmd->flags |= issue_flags;
> > >> + ret = file->f_op->async_cmd(ioucmd);
> > >
> > > I think we're going to have to add a security_file_async_cmd() check
> > > before this call here. Because otherwise we're enabling to, for
> > > example, bypass security_file_ioctl() for example using the new
> > > iouring-cmd interface.
> > >
> > > Or is this already thought out with the existing security_uring_*() stuff?
> >
> > Unless the request sets .audit_skip, it'll be included already in terms
> > of logging.
>
> Neat.
[NOTE: added the audit and SELinux lists to the To/CC line]
Neat, but I think we will need to augment things to support this new
passthrough mechanism.
The issue is that folks who look at audit logs need to be able to
piece together what happened on the system using just what they have
in the logs themselves. As things currently stand with this patchset,
the only bit of information they would have to go on would be
"uring_op=<IORING_OP_URING_CMD>" which isn't very informative :)
You'll see a similar issue in the newly proposed LSM hook below, we
need to be able to record information about not only the passthrough
command, e.g. io_uring_cmd::cmd_op, but also the underlying
device/handler so that we can put the passthrough command in the right
context (as far as I can tell io_uring_cmd::cmd_op is specific to the
device). We might be able to leverage file_operations::owner::name
for this, e.g. "uring_passthru_dev=nvme
uring_passthru_op=<NVME_IOCTL_IO64_CMD>".
> > But I'd prefer not to lodge this in with ioctls, unless
> > we're going to be doing actual ioctls.
>
> Oh sure, I have been an advocate to ensure folks don't conflate async_cmd
> with ioctl. However it *can* enable subsystems to enable ioctl
> passthrough, but each of those subsystems need to vet for this on their
> own terms. I'd hate to see / hear some LSM surprises later.
Same :) Thanks for bringing this up with us while the patches are
still in-progress/under-review, I think it makes for a much more
pleasant experience for everyone.
> > But definitely something to keep in mind and make sure that we're under
> > the right umbrella in terms of auditing and security.
>
> Paul, how about something like this for starters (and probably should
> be squashed into this series so its not a separate commit) ?
>
> From f3ddbe822374cc1c7002bd795c1ae486d370cbd1 Mon Sep 17 00:00:00 2001
> From: Luis Chamberlain <mcgrof(a)kernel.org>
> Date: Fri, 11 Mar 2022 08:55:50 -0800
> Subject: [PATCH] lsm,io_uring: add LSM hooks to for the new async_cmd file op
>
> io-uring is extending the struct file_operations to allow a new
> command which each subsystem can use to enable command passthrough.
> Add an LSM specific for the command passthrough which enables LSMs
> to inspect the command details.
>
> Signed-off-by: Luis Chamberlain <mcgrof(a)kernel.org>
> ---
> fs/io_uring.c | 5 +++++
> include/linux/lsm_hook_defs.h | 1 +
> include/linux/lsm_hooks.h | 3 +++
> include/linux/security.h | 5 +++++
> security/security.c | 4 ++++
> 5 files changed, 18 insertions(+)
>
> diff --git a/fs/io_uring.c b/fs/io_uring.c
> index 3f6eacc98e31..1c4e6b2cb61a 100644
> --- a/fs/io_uring.c
> +++ b/fs/io_uring.c
> @@ -4190,6 +4190,11 @@ static int io_uring_cmd_prep(struct io_kiocb *req,
> struct io_ring_ctx *ctx = req->ctx;
> struct io_uring_cmd *ioucmd = &req->uring_cmd;
> u32 ucmd_flags = READ_ONCE(sqe->uring_cmd_flags);
> + int ret;
> +
> + ret = security_uring_async_cmd(ioucmd);
> + if (ret)
> + return ret;
As a quick aside, for the LSM/audit folks the lore link for the full
patchset is here:
https://lore.kernel.org/io-uring/CA+1E3rJ17F0Rz5UKUnW-LPkWDfPHXG5aeq-ocgN...
Similar to what was discussed above with respect to auditing, I think
we need to do some extra work here to make it easier for a LSM to put
the IO request in the proper context. We have io_uring_cmd::cmd_op
via the @ioucmd parameter, which is good, but we need to be able to
associate that with a driver to make sense of it. In the case of
audit we could simply use the module name string, which is probably
ideal as we would want a string anyway, but LSMs will likely want
something more machine friendly. That isn't to say we couldn't do a
strcmp() on the module name string, but for something that aims to
push performance as much as possible, doing a strcmp() on each
operation seems a little less than optimal ;)
--
paul-moore.com
2 years, 9 months
Newer versions of audit missing information?
by Mark Gardner
I have setup a watch on specific directories for changes so we can report to our auditors about deployments being done by the proper staff members.
So for example -w /root/test -p ra -k test.
If I copied / removed a file in that directory, I would get audit results similar to the following:
[root@localhost test]# ausearch -k test --format text -ts recent
At 14:10:55 02/28/2022 root successfully opened-file /root/test/./hosts using /usr/bin/cp
At 14:11:37 02/28/2022 root successfully deleted /root/test/hosts using /usr/bin/rm
This worked fine in CentOS 7 and CentOS 8 (not stream).
Testing with CentOS-Stream-GenericCloud-8-20220125.1.x86_64.qcow2 also worked until I updated the audit package
[root@localhost test]# dnf list installed audit
Installed Packages
audit.x86_64 3.0-0.17.20191104git1c2f876.el8 @anaconda
[root@localhost test]# ausearch -k test --format text -ts recent
At 14:10:55 02/28/2022 root successfully opened-file /root/test/./hosts using /usr/bin/cp
At 14:11:37 02/28/2022 root successfully deleted /root/test/hosts using /usr/bin/rm
[root@localhost test]# dnf list audit
CentOS Stream 8 - AppStream 7.7 MB/s | 20 MB 00:02
CentOS Stream 8 - BaseOS 9.5 MB/s | 19 MB 00:02
CentOS Stream 8 - Extras 52 kB/s | 18 kB 00:00
Installed Packages
audit.x86_64 3.0-0.17.20191104git1c2f876.el8 @anaconda
Available Packages
audit.x86_64 3.0.7-1.el8 baseos
After Upgrade:[root@localhost test]# auditctl -l
No rules
[root@localhost test]# auditctl -w /root/test -p wa -k test
[root@localhost test]# cp /etc/hosts .
[root@localhost test]# rm hosts
rm: remove regular file 'hosts'? y
[root@localhost test]# ausearch -k test --format text -ts recent
At 14:10:55 02/28/2022 root successfully opened-file using /usr/bin/cp
At 14:11:37 02/28/2022 root successfully deleted using /usr/bin/rm
At 14:13:16 02/28/2022 system, acting as root, successfully remove_rule test using /usr/sbin/auditctl
At 14:14:11 02/28/2022 root successfully add_rule test using /usr/sbin/auditctl
At 14:14:23 02/28/2022 root successfully opened-file using /usr/bin/cp
At 14:14:30 02/28/2022 root successfully deleted using /usr/bin/rm
[root@localhost test]#
Notice no information on what file was copied / removed?
Even the earlier log entries don't show what file was copied / removed.
If I downgrade to audit 3.0-0.17, everything is there.
Is there another way to monitor a directory so we know which files were modified / removed?
2 years, 9 months