mailweb.openeuler.org
Manage this list

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Kernel

Threads by month
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
kernel@openeuler.org

  • 45 participants
  • 21918 discussions
[openeuler:openEuler-1.0-LTS 1941/1941] fs/nfs/nfs4state.c:1959:20: warning: this statement may fall through
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS head: df8d11fbcbb07177c2500e63d7f5a36063977596 commit: e0266694b581d23df8040ccfa9b7b25e4545e25e [1941/1941] NFSv4: Fail mounts if the lease setup times out config: arm64-defconfig (https://download.01.org/0day-ci/archive/20251213/202512131318.6WaJp6sm-lkp@…) compiler: aarch64-linux-gcc (GCC) 15.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131318.6WaJp6sm-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131318.6WaJp6sm-lkp@intel.com/ All warnings (new ones prefixed by >>): In file included from include/linux/sunrpc/sched.h:19, from include/linux/sunrpc/auth.h:15, from include/linux/nfs_fs.h:31, from fs/nfs/nfs4state.c:44: include/linux/sunrpc/xdr.h: In function 'xdr_stream_decode_uint32_array': include/linux/sunrpc/xdr.h:512:17: warning: comparison is always false due to limited range of data type [-Wtype-limits] 512 | if (len > SIZE_MAX / sizeof(*p)) | ^ fs/nfs/nfs4state.c: In function 'nfs4_handle_reclaim_lease_error': >> fs/nfs/nfs4state.c:1959:20: warning: this statement may fall through [-Wimplicit-fallthrough=] 1959 | if (clp->cl_cons_state == NFS_CS_SESSION_INITING) { | ^ fs/nfs/nfs4state.c:1963:9: note: here 1963 | case -EACCES: | ^~~~ fs/nfs/nfs4state.c:580: warning: Function parameter or member 'gfp_flags' not described in 'nfs4_get_state_owner' vim +1959 fs/nfs/nfs4state.c 1934 1935 /* Set NFS4CLNT_LEASE_EXPIRED and reclaim reboot state for all v4.0 errors 1936 * and for recoverable errors on EXCHANGE_ID for v4.1 1937 */ 1938 static int nfs4_handle_reclaim_lease_error(struct nfs_client *clp, int status) 1939 { 1940 switch (status) { 1941 case -NFS4ERR_SEQ_MISORDERED: 1942 if (test_and_set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) 1943 return -ESERVERFAULT; 1944 /* Lease confirmation error: retry after purging the lease */ 1945 ssleep(1); 1946 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state); 1947 break; 1948 case -NFS4ERR_STALE_CLIENTID: 1949 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state); 1950 nfs4_state_start_reclaim_reboot(clp); 1951 break; 1952 case -NFS4ERR_CLID_INUSE: 1953 pr_err("NFS: Server %s reports our clientid is in use\n", 1954 clp->cl_hostname); 1955 nfs_mark_client_ready(clp, -EPERM); 1956 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state); 1957 return -EPERM; 1958 case -ETIMEDOUT: > 1959 if (clp->cl_cons_state == NFS_CS_SESSION_INITING) { 1960 nfs_mark_client_ready(clp, -EIO); 1961 return -EIO; 1962 } 1963 case -EACCES: 1964 case -NFS4ERR_DELAY: 1965 case -EAGAIN: 1966 ssleep(1); 1967 break; 1968 1969 case -NFS4ERR_MINOR_VERS_MISMATCH: 1970 if (clp->cl_cons_state == NFS_CS_SESSION_INITING) 1971 nfs_mark_client_ready(clp, -EPROTONOSUPPORT); 1972 dprintk("%s: exit with error %d for server %s\n", 1973 __func__, -EPROTONOSUPPORT, clp->cl_hostname); 1974 return -EPROTONOSUPPORT; 1975 case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery 1976 * in nfs4_exchange_id */ 1977 default: 1978 dprintk("%s: exit with error %d for server %s\n", __func__, 1979 status, clp->cl_hostname); 1980 return status; 1981 } 1982 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state); 1983 dprintk("%s: handled error %d for server %s\n", __func__, status, 1984 clp->cl_hostname); 1985 return 0; 1986 } 1987 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6 3541/3541] fs/ext4/inode.c:3585:24: sparse: sparse: symbol 'ext4_iomap_buffered_read_ops' was not declared. Should it be static?
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 commit: a38e9381cf2ba6f3300c716b1cff4551bec0fbdf [3541/3541] ext4: implement buffered read iomap path config: x86_64-randconfig-r134-20251213 (https://download.01.org/0day-ci/archive/20251213/202512131322.9GP5gEO8-lkp@…) compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131322.9GP5gEO8-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131322.9GP5gEO8-lkp@intel.com/ sparse warnings: (new ones prefixed by >>) >> fs/ext4/inode.c:3585:24: sparse: sparse: symbol 'ext4_iomap_buffered_read_ops' was not declared. Should it be static? vim +/ext4_iomap_buffered_read_ops +3585 fs/ext4/inode.c 3584 > 3585 const struct iomap_ops ext4_iomap_buffered_read_ops = { 3586 .iomap_begin = ext4_iomap_buffered_io_begin, 3587 }; 3588 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6 3541/3541] drivers/crypto/montage/tsse/tsse_ipc_drv.c:22:41: sparse: sparse: cast removes address space '__iomem' of expression
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 commit: 914854f2adb6988ac3b6521088ec96833d6743e2 [3541/3541] driver: crypto - update support for Mont-TSSE Driver config: x86_64-randconfig-r122-20251213 (https://download.01.org/0day-ci/archive/20251213/202512131336.tVlhD5u5-lkp@…) compiler: gcc-14 (Debian 14.2.0-19) 14.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131336.tVlhD5u5-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131336.tVlhD5u5-lkp@intel.com/ sparse warnings: (new ones prefixed by >>) >> drivers/crypto/montage/tsse/tsse_ipc_drv.c:22:41: sparse: sparse: cast removes address space '__iomem' of expression drivers/crypto/montage/tsse/tsse_ipc_drv.c:42:33: sparse: sparse: cast removes address space '__iomem' of expression >> drivers/crypto/montage/tsse/tsse_ipc_drv.c:42:46: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void const volatile [noderef] __iomem * @@ got unsigned char [usertype] * @@ drivers/crypto/montage/tsse/tsse_ipc_drv.c:42:46: sparse: expected void const volatile [noderef] __iomem * drivers/crypto/montage/tsse/tsse_ipc_drv.c:42:46: sparse: got unsigned char [usertype] * drivers/crypto/montage/tsse/tsse_ipc_drv.c:108:16: sparse: sparse: cast removes address space '__iomem' of expression drivers/crypto/montage/tsse/tsse_ipc_drv.c:120:21: sparse: sparse: cast from restricted __le32 drivers/crypto/montage/tsse/tsse_ipc_drv.c:124:60: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void *msg @@ got void [noderef] __iomem *d2h_msg @@ drivers/crypto/montage/tsse/tsse_ipc_drv.c:124:60: sparse: expected void *msg drivers/crypto/montage/tsse/tsse_ipc_drv.c:124:60: sparse: got void [noderef] __iomem *d2h_msg >> drivers/crypto/montage/tsse/tsse_ipc_drv.c:136:21: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void volatile [noderef] __iomem * @@ got unsigned char [usertype] *addr @@ drivers/crypto/montage/tsse/tsse_ipc_drv.c:136:21: sparse: expected void volatile [noderef] __iomem * drivers/crypto/montage/tsse/tsse_ipc_drv.c:136:21: sparse: got unsigned char [usertype] *addr vim +/__iomem +22 drivers/crypto/montage/tsse/tsse_ipc_drv.c 19 20 static int ipc_d2h_new_msg_process(struct tsse_ipc *tsseipc, void __iomem *d2h_msg) 21 { > 22 struct tsse_ipc_msg *ipc_msg = (struct tsse_ipc_msg *)d2h_msg; 23 void *payload; 24 u32 msg_len; 25 u32 header_len; 26 u32 payload_len; 27 int ret; 28 u64 epid; 29 30 msg_len = ipc_msg->msg_len; 31 header_len = sizeof(struct tsse_ipc_msg); 32 payload_len = msg_len - header_len; 33 epid = ipc_msg->epid; 34 35 if (msg_len < header_len || msg_len > IPC_MAX_DATA_LEN) { 36 pr_err("%s %d: invalid msg len: %u in resp\n", __func__, __LINE__, msg_len); 37 return -EINVAL; 38 } 39 payload = kzalloc(payload_len, GFP_ATOMIC); 40 if (!payload) 41 return -ENOMEM; > 42 memcpy_fromio(payload, (u8 *)d2h_msg + header_len, payload_len); 43 if (ipc_msg->type == TSSE_IPC_TYPE_RING_SETUP_RSP) 44 ret = ipc_ring_setup_resp_receive(payload, payload_len); 45 else 46 ret = tsse_service_msg_receive(epid, payload, payload_len); 47 kfree(payload); 48 return ret; 49 } 50 51 static struct tsse_ipc_msg *ipc_h2d_msg_header_create(u64 epid, u32 payload_length) 52 { 53 struct tsse_ipc_msg *header = (struct tsse_ipc_msg *)( 54 kzalloc(sizeof(struct tsse_ipc_msg), GFP_ATOMIC)); 55 if (header) { 56 if (GET_SERVICE_ID(epid) == EPID_MANAGE_SERVICE_ID) { 57 if (GET_APP_SPECIFIC_ID(epid) == TSSE_IPC_SPECIFIC_RING_SETUP_REQ) 58 header->type = TSSE_IPC_TYPE_RING_SETUP_REQ; 59 else if (GET_APP_SPECIFIC_ID(epid) == TSSE_IPC_SPECIFIC_RING_SETUP_RSP) 60 header->type = TSSE_IPC_TYPE_RING_SETUP_RSP; 61 else 62 header->type = TSSE_IPC_TYPE_SERVICE; 63 } else { 64 header->type = TSSE_IPC_TYPE_SERVICE; 65 } 66 header->msg_len = sizeof(struct tsse_ipc_msg) + payload_length; 67 header->rev = 0; 68 header->epid = epid; 69 } 70 return header; 71 } 72 73 int ipc_h2d_msg_send(int device_handle, u64 epid, void *msg_payload, u32 length) 74 { 75 struct tsse_dev *tdev; 76 struct tsse_ipc *tsseipc; 77 struct tsse_ipc_msg *header; 78 u8 *h2d; 79 u32 int_reg; 80 u32 header_size; 81 82 tdev = tsse_get_dev_by_handle(device_handle); 83 if (!tdev) 84 return -ENODEV; 85 86 if (!msg_payload || !length) { 87 pr_err("%s %d: invalid msg payload\n", __func__, __LINE__); 88 return -EINVAL; 89 } 90 header_size = sizeof(struct tsse_ipc_msg); 91 if (length + header_size > IPC_MAX_DATA_LEN) { 92 pr_err("%s %d length too large: %u\n", __func__, __LINE__, length); 93 return -EINVAL; 94 } 95 tsseipc = tdev->ipc; 96 mutex_lock(&tsseipc->list_lock); 97 int_reg = readl(tsseipc->virt_addr + HOST2MAIN_INTR_SET_OFFSET); 98 if ((int_reg & IPC_REGISTER_INT_SET) != 0) { 99 mutex_unlock(&tsseipc->list_lock); 100 return -EAGAIN; 101 } 102 header = ipc_h2d_msg_header_create(epid, length); 103 if (!header) { 104 mutex_unlock(&tsseipc->list_lock); 105 pr_err("%s(): msg header kzalloc failed\n", __func__); 106 return -ENOMEM; 107 } 108 h2d = (u8 *)(tsseipc->virt_addr + HOST2MAIN_IPC_OFFSET); 109 ipc_memcpy_to_io(h2d, (u8 *)header, header_size); 110 ipc_memcpy_to_io(h2d + header_size, msg_payload, length); 111 112 writel(0x1, tsseipc->virt_addr + HOST2MAIN_INTR_SET_OFFSET); 113 mutex_unlock(&tsseipc->list_lock); 114 kfree(header); 115 return 0; 116 } 117 118 int ipc_d2h_msg_dispatch(struct tsse_ipc *tsseipc, void __iomem *d2h_msg) 119 { 120 u16 type = (u16) cpu_to_le32(readl(d2h_msg)); 121 122 switch (type) { 123 case TSSE_IPC_TYPE_LEGACY: 124 return ipc_d2h_legacy_msg_process(tsseipc, d2h_msg); 125 case TSSE_IPC_TYPE_SERVICE: 126 case TSSE_IPC_TYPE_RING_SETUP_RSP: 127 return ipc_d2h_new_msg_process(tsseipc, d2h_msg); 128 default: 129 pr_err("%s %d: invalid msg type: %u\n", __func__, __LINE__, type); 130 return -EINVAL; 131 } 132 } 133 134 void ipc_memcpy_to_io(u8 *addr, u8 *src, u32 len) 135 { > 136 memcpy_toio(addr, src, len); -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:openEuler-1.0-LTS] BUILD REGRESSION df8d11fbcbb07177c2500e63d7f5a36063977596
by kernel test robot 13 Dec '25

13 Dec '25
tree/branch: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS branch HEAD: df8d11fbcbb07177c2500e63d7f5a36063977596 !19646 fbdev: bitblit: bound-check glyph index in bit_putcs* Error/Warning (recently discovered and may have been fixed): https://lore.kernel.org/oe-kbuild-all/202512130142.AbrsHgBp-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130318.QHdKVAVx-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130502.2LxTdCek-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130517.YGb86X1A-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130605.0REtc4uw-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130735.vWIWdRUh-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130829.PYuFPQHp-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512131018.8qdFT5tV-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512131110.yshNLkZn-lkp@intel.com https://lore.kernel.org/oe-kbuild/202512130409.sZE93fMA-lkp@intel.com crypto/sm4_generic.o: warning: objtool: missing symbol for section .text drivers/base/node.c:480: warning: Function parameter or member 'mem_nid' not described in 'register_memory_node_under_compute_node' drivers/base/node.c:77: warning: Function parameter or member 'hmem_attrs' not described in 'node_access_nodes' drivers/tee/optee/core.c:618:10: warning: return makes integer from pointer without a cast [-Wint-conversion] fs/fscache/stats.o: warning: objtool: missing symbol for section .text kernel/sched/core.c:5976:22: error: 'root_task_group' undeclared (first use in this function); did you mean 'task_group'? mm/ioremap.o: warning: objtool: missing symbol for section .text mm/kmemleak.c:434:4: error: implicit declaration of function 'printk_safe_exit'; did you mean 'printk_nmi_exit'? [-Werror=implicit-function-declaration] net/ax25/ax25_dev.o: warning: objtool: missing symbol for section .exit.text net/netfilter/nf_conntrack_core.c:1017: warning: Excess function parameter 'hash_reply' description in 'nf_ct_resolve_clash' net/netfilter/nf_conntrack_core.c:1017: warning: Function parameter or member 'reply_hash' not described in 'nf_ct_resolve_clash' net/netfilter/nf_nat_proto.c:56:6: warning: no previous prototype for 'nf_nat_csum_recalc' [-Wmissing-prototypes] net/netfilter/nf_nat_proto.c:56:6: warning: no previous prototype for function 'nf_nat_csum_recalc' [-Wmissing-prototypes] Unverified Error/Warning (likely false positive, kindly check if interested): block/blk-map.o: warning: objtool: missing symbol for section .text block/blk-rq-qos.o: warning: objtool: missing symbol for section .text crypto/asymmetric_keys/mscode_parser.o: warning: objtool: missing symbol for section .text drivers/acpi/arm64/iort.c:1033: warning: Excess function parameter 'size' description in 'iort_dma_setup' drivers/acpi/arm64/iort.c:1535: warning: Function parameter or member 'ops' not described in 'iort_add_platform_device' drivers/acpi/pptt.c:338: warning: Function parameter or member 'offset' not described in 'acpi_pptt_validate_cache_node' drivers/acpi/utils.c:526: warning: Function parameter or member 'fmt' not described in '__acpi_handle_debug' drivers/base/bus.o: warning: objtool: missing symbol for section .init.text drivers/base/container.o: warning: objtool: missing symbol for section .init.text drivers/base/core.o: warning: objtool: missing symbol for section .init.text drivers/base/devcon.o: warning: objtool: missing symbol for section .text drivers/base/power/domain.c:1281: warning: Function parameter or member 'suspend' not described in 'genpd_syscore_switch' drivers/bcma/driver_chipcommon_b.o: warning: objtool: missing symbol for section .text drivers/bcma/driver_gmac_cmn.o: warning: objtool: missing symbol for section .text drivers/bcma/driver_mips.c:70:18: warning: unused variable 'ipsflag_irq_shift' [-Wunused-const-variable] drivers/bluetooth/hci_bcm.c:800:39: warning: unused variable 'acpi_bcm_int_last_gpios' [-Wunused-const-variable] drivers/bluetooth/hci_bcm.o: warning: objtool: missing symbol for section .init.text drivers/bluetooth/hci_intel.o: warning: objtool: missing symbol for section .init.text drivers/clk/clk-fixed-rate.c:194: warning: Function parameter or member 'node' not described in 'of_fixed_clk_setup' drivers/clk/clk.c:3676: warning: Function parameter or member 'get_hw' not described in 'of_clk_provider' drivers/clk/mediatek/clk-mt2701.c:252:27: warning: 'audio_parents' defined but not used [-Wunused-const-variable=] drivers/clk/qcom/gcc-msm8996.c:141:32: warning: 'gcc_xo_gpll0_gpll2_gpll3_gpll0_early_div_map' defined but not used [-Wunused-const-variable=] drivers/clk/qcom/gcc-msm8996.c:195:32: warning: 'gcc_xo_gpll0_gpll2_gpll3_gpll1_gpll4_gpll0_early_div_map' defined but not used [-Wunused-const-variable=] drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'div_flags' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'gate_shift' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'mux_flags' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'mux_width' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'name' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-half-divider.c:168: warning: Function parameter or member 'num_parents' not described in 'rockchip_clk_register_halfdiv' drivers/clk/rockchip/clk-rv1108.c:133:7: warning: 'mux_pll_src_3plls_p' defined but not used [-Wunused-const-variable=] drivers/clk/rockchip/clk.c:187: warning: Function parameter or member 'hw' not described in 'rockchip_fractional_approximation' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'div_shift' not described in 'rockchip_clk_register_branch' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'div_width' not described in 'rockchip_clk_register_branch' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'flags' not described in 'rockchip_clk_register_branch' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'gate_offset' not described in 'rockchip_clk_register_branch' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'mux_flags' not described in 'rockchip_clk_register_branch' drivers/clk/rockchip/clk.c:53: warning: Function parameter or member 'mux_shift' not described in 'rockchip_clk_register_branch' drivers/clocksource/timer-of.o: warning: objtool: missing symbol for section .init.text drivers/cpufreq/cpufreq.c:2569: warning: Function parameter or member 'driver' not described in 'cpufreq_unregister_driver' drivers/cpufreq/cpufreq.c:648: warning: Function parameter or member 'object' not described in 'show_one' drivers/cpufreq/cpufreq.c:743: warning: Function parameter or member 'buf' not described in 'store_scaling_governor' drivers/cpufreq/cpufreq.c:743: warning: Function parameter or member 'policy' not described in 'store_scaling_governor' drivers/cpufreq/cpufreq.c:828: warning: Function parameter or member 'policy' not described in 'show_affected_cpus' drivers/cpufreq/cpufreq_governor.c:49: warning: Function parameter or member 'count' not described in 'store_sampling_rate' drivers/cpufreq/freq_table.c:233: warning: Function parameter or member 'buf' not described in 'show_available_freqs' drivers/dma/altera-msgdma.c:201: warning: Function parameter or member 'idle' not described in 'msgdma_device' drivers/dma/altera-msgdma.c:201: warning: Function parameter or member 'sw_desq' not described in 'msgdma_device' drivers/dma/mediatek/mtk-hsdma.c:120: warning: Function parameter or member 'desc1' not described in 'mtk_hsdma_pdesc' drivers/dma/of-dma.c:108: warning: Function parameter or member 'data' not described in 'of_dma_controller_register' drivers/dma/pl330.c:2598:15: warning: 'dst' may be used uninitialized in this function [-Wmaybe-uninitialized] drivers/dma/pl330.c:2599:15: warning: 'src' may be used uninitialized in this function [-Wmaybe-uninitialized] drivers/firewire/core-device.c:969:7: warning: this statement may fall through [-Wimplicit-fallthrough=] drivers/firewire/core-iso.c:365: warning: Function parameter or member 'bandwidth' not described in 'fw_iso_resource_manage' drivers/gpio/gpio-altera.c:35: warning: bad line: will be blocked until the current one completes. drivers/gpio/gpiolib-devprop.o: warning: objtool: missing symbol for section .text drivers/gpu/drm/amd/amdgpu/../display/include/fixed31_32.h:72:32: warning: 'dc_fixpt_pi' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../display/include/fixed31_32.h:73:32: warning: 'dc_fixpt_two_pi' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../display/include/fixed31_32.h:75:32: warning: 'dc_fixpt_ln2' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega10_ip_offset.h:103:29: warning: 'DFX_DAP_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega10_ip_offset.h:123:29: warning: 'L2IMU_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega10_ip_offset.h:128:29: warning: 'IOHC_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega10_ip_offset.h:208:29: warning: 'FUSE_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega10_ip_offset.h:68:29: warning: 'MP2_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/../include/vega20_ip_offset.h:154:29: warning: 'XDMA_BASE' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c:502: warning: Excess function parameter 'adev' description in 'acp_hw_fini' drivers/gpu/drm/amd/amdgpu/ci_dpm.c:5020:7: warning: this statement may fall through [-Wimplicit-fallthrough=] drivers/gpu/drm/amd/amdgpu/cik_sdma.c:274: warning: Excess function parameter 'fence' description in 'cik_sdma_ring_emit_fence' drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c:2161: warning: Function parameter or member 'ring' not described in 'gfx_v7_0_ring_emit_fence_gfx' drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c:524: warning: Function parameter or member 'vmid' not described in 'uvd_v4_2_ring_emit_ib' drivers/gpu/drm/drm_atomic_helper.c:249:24: warning: variable 'connector' set but not used [-Wunused-but-set-variable] drivers/gpu/drm/drm_atomic_helper.c:3217:26: warning: variable 'new_plane_state' set but not used [-Wunused-but-set-variable] drivers/gpu/drm/drm_atomic_helper.c:3219:30: warning: variable 'new_conn_state' set but not used [-Wunused-but-set-variable] drivers/gpu/drm/drm_atomic_helper.c:3221:25: warning: variable 'new_crtc_state' set but not used [-Wunused-but-set-variable] drivers/gpu/drm/msm/adreno/a5xx_gpu.c:253:7: warning: this statement may fall through [-Wimplicit-fallthrough=] drivers/gpu/drm/msm/adreno/adreno_gpu.c:300:7: warning: this statement may fall through [-Wimplicit-fallthrough=] drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1489: warning: Function parameter or member 'phys' not described in '_dpu_encoder_trigger_start' drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c:143:31: warning: variable 'cmd_enc' set but not used [-Wunused-but-set-variable] drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c:485:32: warning: 'dpu_format_map_tile' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c:58: warning: Function parameter or member 'uc' not described in 'INTERLEAVED_RGB_FMT' drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c:610:32: warning: 'dpu_format_map_p010' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c:627:32: warning: 'dpu_format_map_tp10_ubwc' defined but not used [-Wunused-const-variable=] drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog_format.h:157:41: warning: 'rgb_10bit_formats' defined but not used [-Wunused-const-variable=] drivers/gpu/ipu-v3/ipu-dmfc.o: warning: objtool: missing symbol for section .text drivers/hsi/hsi_boardinfo.o: warning: objtool: missing symbol for section .init.text drivers/i2c/algos/i2c-algo-pca.o: warning: objtool: missing symbol for section .text.unlikely. drivers/iio/accel/bma220_spi.c:315:36: warning: unused variable 'bma220_acpi_id' [-Wunused-const-variable] drivers/iio/accel/sca3000.c:874: warning: Function parameter or member 'chan' not described in 'sca3000_read_event_value' drivers/iio/accel/sca3000.c:874: warning: Function parameter or member 'indio_dev' not described in 'sca3000_read_event_value' drivers/iio/accel/sca3000.c:874: warning: Function parameter or member 'val2' not described in 'sca3000_read_event_value' drivers/iio/adc/ad7923.c:173: warning: Function parameter or member 'p' not described in 'ad7923_trigger_handler' drivers/iio/adc/cpcap-adc.c:161: warning: Enum value 'CPCAP_ADC_AD3' not described in enum 'cpcap_adc_channel' drivers/iio/adc/cpcap-adc.c:161: warning: Enum value 'CPCAP_ADC_BPLUS_AD4' not described in enum 'cpcap_adc_channel' drivers/iio/adc/palmas_gpadc.c:117: warning: Function parameter or member 'dev' not described in 'palmas_gpadc' drivers/iio/common/st_sensors/st_sensors_buffer.o: warning: objtool: missing symbol for section .text drivers/iio/common/st_sensors/st_sensors_core.o: warning: objtool: missing symbol for section .text drivers/iio/pressure/bmp280-i2c.c:45:36: warning: unused variable 'bmp280_acpi_i2c_match' [-Wunused-const-variable] drivers/infiniband/core/cache.c:665: warning: Excess function parameter 'device' description in 'rdma_find_gid_by_port' drivers/infiniband/core/cma_configfs.o: warning: objtool: missing symbol for section .init.text drivers/infiniband/core/roce_gid_mgmt.o: warning: objtool: missing symbol for section .init.text drivers/infiniband/ulp/iser/iser_initiator.c:364: warning: Function parameter or member 'conn' not described in 'iser_send_command' drivers/infiniband/ulp/iser/iser_verbs.c:132: warning: Function parameter or member 'device' not described in 'iser_free_device_ib_res' drivers/iommu/io-pgtable.o: warning: objtool: missing symbol for section .text drivers/iommu/iommu-debugfs.o: warning: objtool: missing symbol for section .text drivers/isdn/capi/capiutil.o: warning: objtool: missing symbol for section .text drivers/isdn/mISDN/dsp_audio.o: warning: objtool: missing symbol for section .text drivers/media/platform/xilinx/xilinx-vip.o: warning: objtool: missing symbol for section .text drivers/net/wireless/ath/ath6kl/hif.o: warning: objtool: missing symbol for section .text drivers/net/wireless/ath/ath6kl/init.o: warning: objtool: missing symbol for section .text drivers/of/base.c:167:6: warning: no previous prototype for '__of_free_phandle_cache_entry' [-Wmissing-prototypes] drivers/of/base.c:1752: warning: Function parameter or member 'np' not described in 'of_add_property' drivers/of/base.c:1753: warning: Function parameter or member 'np' not described in 'of_add_property' drivers/of/device.c:28: warning: Excess function parameter 'ids' description in 'of_match_device' drivers/of/fdt.c:151: warning: Function parameter or member 'compat' not described in 'of_fdt_match' drivers/of/fdt.c:151: warning: Function parameter or member 'node' not described in 'of_fdt_match' fs/inode.c:1597:10: warning: no previous prototype for 'bmap' [-Wmissing-prototypes] fs/super.c:973:6: warning: no previous prototype for 'emergency_thaw_all' [-Wmissing-prototypes] mm/hugetlb_cgroup.o: warning: objtool: missing symbol for section .init.text Error/Warning ids grouped by kconfigs: recent_errors |-- arm64-allmodconfig | |-- block-blk-io-hierarchy-iodump.c:warning:no-previous-prototype-for-__bio_stage_hierarchy_start | |-- crypto-ecc.c:warning:priv-may-be-used-uninitialized | |-- drivers-base-power-domain.c:warning:Function-parameter-or-member-suspend-not-described-in-genpd_syscore_switch | |-- drivers-clk-clk-fixed-rate.c:warning:Function-parameter-or-member-node-not-described-in-of_fixed_clk_setup | |-- drivers-clk-clk.c:warning:Function-parameter-or-member-get_hw-not-described-in-of_clk_provider | |-- drivers-clk-mediatek-clk-mt2701.c:warning:audio_parents-defined-but-not-used | |-- drivers-clk-qcom-gcc-msm8996.c:warning:gcc_xo_gpll0_gpll2_gpll3_gpll0_early_div_map-defined-but-not-used | |-- drivers-clk-qcom-gcc-msm8996.c:warning:gcc_xo_gpll0_gpll2_gpll3_gpll1_gpll4_gpll0_early_div_map-defined-but-not-used | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-div_flags-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-gate_shift-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-mux_flags-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-mux_width-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-name-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-num_parents-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-rv1108.c:warning:mux_pll_src_3plls_p-defined-but-not-used | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-div_shift-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-div_width-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-flags-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-gate_offset-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-hw-not-described-in-rockchip_fractional_approximation | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-mux_flags-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-mux_shift-not-described-in-rockchip_clk_register_branch | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-buf-not-described-in-store_scaling_governor | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-driver-not-described-in-cpufreq_unregister_driver | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-object-not-described-in-show_one | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-policy-not-described-in-show_affected_cpus | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-policy-not-described-in-store_scaling_governor | |-- drivers-cpufreq-cpufreq_governor.c:warning:Function-parameter-or-member-count-not-described-in-store_sampling_rate | |-- drivers-cpufreq-freq_table.c:warning:Function-parameter-or-member-buf-not-described-in-show_available_freqs | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-idle-not-described-in-msgdma_device | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-sw_desq-not-described-in-msgdma_device | |-- drivers-dma-mediatek-mtk-hsdma.c:warning:Function-parameter-or-member-desc1-not-described-in-mtk_hsdma_pdesc | |-- drivers-dma-of-dma.c:warning:Function-parameter-or-member-data-not-described-in-of_dma_controller_register | |-- drivers-firewire-core-device.c:warning:this-statement-may-fall-through | |-- drivers-firewire-core-iso.c:warning:Function-parameter-or-member-bandwidth-not-described-in-fw_iso_resource_manage | |-- drivers-gpio-gpio-altera.c:warning:bad-line:will-be-blocked-until-the-current-one-completes. | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_ln2-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_pi-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_two_pi-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:DFX_DAP_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:FUSE_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:IOHC_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:L2IMU_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:MP2_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega20_ip_offset.h:warning:XDMA_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-amdgpu_acp.c:warning:Excess-function-parameter-adev-description-in-acp_hw_fini | |-- drivers-gpu-drm-amd-amdgpu-cik_sdma.c:warning:Excess-function-parameter-fence-description-in-cik_sdma_ring_emit_fence | |-- drivers-gpu-drm-amd-amdgpu-gfx_v7_0.c:warning:Function-parameter-or-member-ring-not-described-in-gfx_v7_0_ring_emit_fence_gfx | |-- drivers-gpu-drm-amd-amdgpu-uvd_v4_2.c:warning:Function-parameter-or-member-vmid-not-described-in-uvd_v4_2_ring_emit_ib | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-connector-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_conn_state-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_crtc_state-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_plane_state-set-but-not-used | |-- drivers-gpu-drm-msm-adreno-a5xx_gpu.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-msm-adreno-adreno_gpu.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_encoder.c:warning:Function-parameter-or-member-phys-not-described-in-_dpu_encoder_trigger_start | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_encoder_phys_cmd.c:warning:variable-cmd_enc-set-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:Function-parameter-or-member-uc-not-described-in-INTERLEAVED_RGB_FMT | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_p010-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_tile-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_tp10_ubwc-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_hw_catalog_format.h:warning:rgb_10bit_formats-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_hw_cdm.c:warning:cannot-understand-function-prototype:u32-offsite_v_coeff | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_plane.c:warning:variable-pe-set-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_vbif.c:warning:Function-parameter-or-member-dpu_kms-not-described-in-dpu_vbif_set_ot_limit | |-- drivers-gpu-drm-msm-disp-mdp4-mdp4_kms.c:warning:variable-crtc_state-set-but-not-used | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_cfg.c:warning:variable-ret-set-but-not-used | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_ctl.c:warning:Function-parameter-or-member-pipeline-not-described-in-mdp5_ctl_commit | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_kms.c:warning:variable-hw_cfg-set-but-not-used | |-- drivers-gpu-drm-msm-msm_gem_shrinker.c:warning:Excess-function-parameter-dev_priv-description-in-msm_gem_shrinker_cleanup | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-chan-not-described-in-sca3000_read_event_value | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-indio_dev-not-described-in-sca3000_read_event_value | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-val2-not-described-in-sca3000_read_event_value | |-- drivers-iio-adc-ad7923.c:warning:Function-parameter-or-member-p-not-described-in-ad7923_trigger_handler | |-- drivers-iio-adc-cpcap-adc.c:warning:Enum-value-CPCAP_ADC_AD3-not-described-in-enum-cpcap_adc_channel | |-- drivers-iio-adc-cpcap-adc.c:warning:Enum-value-CPCAP_ADC_BPLUS_AD4-not-described-in-enum-cpcap_adc_channel | |-- drivers-infiniband-core-cache.c:warning:Excess-function-parameter-device-description-in-rdma_find_gid_by_port | |-- drivers-infiniband-ulp-iser-iser_initiator.c:warning:Function-parameter-or-member-conn-not-described-in-iser_send_command | |-- drivers-infiniband-ulp-iser-iser_verbs.c:warning:Function-parameter-or-member-device-not-described-in-iser_free_device_ib_res | |-- drivers-input-misc-xen-kbdfront.c:warning:this-statement-may-fall-through | |-- drivers-md-raid5.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- drivers-misc-cardreader-rts5227.c:warning:rts522a_pcr_ops-defined-but-not-used | |-- drivers-of-base.c:warning:Function-parameter-or-member-np-not-described-in-of_add_property | |-- drivers-of-device.c:warning:Excess-function-parameter-ids-description-in-of_match_device | |-- drivers-of-fdt.c:warning:Function-parameter-or-member-compat-not-described-in-of_fdt_match | |-- drivers-of-fdt.c:warning:Function-parameter-or-member-node-not-described-in-of_fdt_match | |-- drivers-parport-ieee1284.c:warning:this-statement-may-fall-through | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- drivers-pinctrl-pinctrl-rockchip.c:warning:Cannot-understand-reg_base:register-base-of-the-gpio-bank | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_carveout | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_devmem | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-work-not-described-in-rproc_crash_handler_work | |-- drivers-rtc-interface.c:warning:Function-parameter-or-member-rtc-not-described-in-rtc_read_offset | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Excess-function-parameter-fip-description-in-fcoe_ctlr_disc_start | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Excess-function-parameter-fip-description-in-fcoe_ctlr_disc_stop_locked | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Function-parameter-or-member-lport-not-described-in-fcoe_ctlr_disc_start | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Function-parameter-or-member-rdata-not-described-in-fcoe_ctlr_vlan_disc_reply | |-- drivers-scsi-libfc-fc_exch.c:warning:Function-parameter-or-member-lport-not-described-in-fc_exch_mgr | |-- drivers-scsi-libfc-fc_exch.c:warning:Function-parameter-or-member-stats.seq_not_found-not-described-in-fc_exch_mgr | |-- drivers-scsi-libfc-fc_fcp.c:warning:Function-parameter-or-member-sc_cmd-not-described-in-fc_queuecommand | |-- drivers-scsi-libfc-fc_fcp.c:warning:Function-parameter-or-member-t-not-described-in-fc_fcp_timeout | |-- drivers-scsi-libfc-fc_lport.c:warning:Function-parameter-or-member-in_fp-not-described-in-fc_lport_recv_rnid_req | |-- drivers-scsi-libfc-fc_rport.c:warning:Excess-function-parameter-lport_arg-description-in-fc_rport_logo_resp | |-- drivers-soc-mediatek-mtk-infracfg.c:warning:Excess-function-parameter-regmap-description-in-mtk_infracfg_clear_bus_protection | |-- drivers-soc-tegra-pmc.c:warning:Function-parameter-or-member-wake-not-described-in-tegra_pmc | |-- drivers-spi-spi-zynqmp-gqspi.c:warning:Excess-function-parameter-flashcs-description-in-zynqmp_gqspi_selectslave | |-- drivers-staging-iio-frequency-ad9832.c:warning:Function-parameter-or-member-not-described-in-IIO_DEV_ATTR_FREQ | |-- drivers-tty-n_gsm.c:warning:Excess-function-parameter-dlci-description-in-gsm_dlci_free | |-- drivers-tty-n_gsm.c:warning:Excess-function-parameter-mux-description-in-gsm_free_mux | |-- drivers-tty-n_gsm.c:warning:Function-parameter-or-member-c-not-described-in-gsm_read_ea | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_alloc | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_free | |-- drivers-tty-tty_io.c:warning:Excess-function-parameter-cols-description-in-tty_do_resize | |-- drivers-tty-tty_io.c:warning:Function-parameter-or-member-tty-not-described-in-tiocswinsz | |-- drivers-usb-gadget-udc-core.c:warning:Function-parameter-or-member-ep-not-described-in-usb_gadget_giveback_request | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_get_phy | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_get_phy_by_phandle | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_put_phy | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-nb-not-described-in-usb_phy_get_charger_type | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-phy-not-described-in-devm_usb_put_phy | |-- drivers-video-fbdev-xen-fbfront.c:warning:this-statement-may-fall-through | |-- drivers-virtio-virtio_ring.c:warning:Excess-function-parameter-vq-description-in-virtqueue_poll | |-- drivers-w1-slaves-w1_ds2408.c:warning:Function-parameter-or-member-filp-not-described-in-activity_write | |-- fs-adfs-dir_f.c:warning:this-statement-may-fall-through | |-- fs-hfs-inode.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- fs-hfsplus-inode.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- fs-ufs-util.h:warning:this-statement-may-fall-through | |-- include-linux-list.h:warning:storing-the-address-of-local-variable-queue-in-(struct-list_head-)packet.prev | |-- include-linux-printk.h:warning:this-statement-may-fall-through | |-- include-linux-signal.h:warning:this-statement-may-fall-through | |-- include-linux-skbuff.h:warning:array-subscript-struct-sk_buff-is-partly-outside-array-bounds-of-struct-ieee80211_tx_data | |-- include-linux-string.h:warning:__builtin_memset-offset-is-out-of-the-bounds | |-- include-linux-thread_info.h:warning:b-may-be-used-uninitialized | |-- include-linux-unaligned-access_ok.h:warning:array-subscript-is-outside-array-bounds-of-struct-retrieve_data_struct_cmd | |-- init-calibrate.c:warning:no-previous-prototype-for-calibration_delay_done | |-- mm-rodata_test.c:warning:no-previous-prototype-for-rodata_test | |-- sound-core-memalloc.c:warning:this-statement-may-fall-through | |-- sound-core-seq-oss-seq_oss_timer.c:warning:this-statement-may-fall-through | |-- sound-pci-ac97-ac97_codec.c:warning:snd_ac97_controls_master_mono-defined-but-not-used | |-- sound-soc-codecs-adau1761.c:warning:this-statement-may-fall-through | |-- sound-soc-codecs-cs42l56.c:warning:adc_swap_enum-defined-but-not-used | |-- sound-soc-codecs-cs42l73.c:warning:vsp_output_mux-defined-but-not-used | |-- sound-soc-codecs-cs42l73.c:warning:xsp_output_mux-defined-but-not-used | |-- sound-soc-codecs-cs4349.c:warning:cs4349_runtime_pm-defined-but-not-used | |-- sound-soc-codecs-es8316.c:warning:es8316_dacsrc_values-defined-but-not-used | |-- sound-soc-codecs-es8316.c:warning:es8316_hpmux_values-defined-but-not-used | |-- sound-soc-codecs-es8328.c:warning:es8328_rline_enum-defined-but-not-used | |-- sound-soc-codecs-es8328.c:warning:pga_tlv-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_alc_tlv-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_pa1en_enum-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_pa2en_enum-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_sidetone_tlv-defined-but-not-used | |-- sound-soc-codecs-max98371.c:warning:max98371_noload_gain_tlv-defined-but-not-used | |-- sound-soc-codecs-max9850.c:warning:max9850_reg-defined-but-not-used | |-- sound-soc-codecs-max98926.c:warning:max98926_boost_current_txt-defined-but-not-used | |-- sound-soc-codecs-max98926.c:warning:max98926_dai_txt-defined-but-not-used | |-- sound-soc-codecs-ml26124.c:warning:ngth-defined-but-not-used | |-- sound-soc-codecs-mt6351.c:warning:mt_lineout_control-defined-but-not-used | |-- sound-soc-codecs-pcm186x.c:warning:this-statement-may-fall-through | |-- sound-soc-codecs-rt5645.c:warning:rt5645_if3_adc_in_mux-defined-but-not-used | |-- sound-soc-codecs-rt5645.c:warning:rt5645_inl_mux-defined-but-not-used | |-- sound-soc-codecs-rt5645.c:warning:rt5645_inr_mux-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_monol_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_monor_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_sto1_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_sto2_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_monol_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_monor_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_sto_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_hpl_mix-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_hpr_mix-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_if4_adc_in_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto2_adc_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto_adc_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto_dmic3_mux-defined-but-not-used | |-- sound-soc-codecs-tas571x.c:warning:tas5721_controls-defined-but-not-used | |-- sound-soc-codecs-tlv320aic23.c:warning:tlv320aic23_rec_src-defined-but-not-used | |-- sound-soc-codecs-tlv320aic31xx.c:warning:cm_m_enum-defined-but-not-used | |-- sound-soc-codecs-tscs454.c:warning:PLL_48K_RATE-defined-but-not-used | |-- sound-soc-codecs-wm8737.c:warning:high_3d-defined-but-not-used | |-- sound-soc-codecs-wm8900.c:warning:wm8900_dapm_loutput2_control-defined-but-not-used | |-- sound-soc-codecs-wm8900.c:warning:wm8900_dapm_routput2_control-defined-but-not-used | |-- sound-soc-codecs-wm8974.c:warning:wm8974_aux_boost_controls-defined-but-not-used | |-- sound-soc-codecs-wm8974.c:warning:wm8974_mic_boost_controls-defined-but-not-used | |-- sound-soc-codecs-wm8988.c:warning:wm8988_rline_enum-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:out_omix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:rec_mix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:wm8990_dapm_rxvoice_controls-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:wm8990_regmap-defined-but-not-used | |-- sound-soc-codecs-wm8991.c:warning:wm8991_dapm_rxvoice_controls-defined-but-not-used | |-- sound-soc-codecs-wm8994.c:warning:wm1811_snd_controls-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-common.h:warning:mt2701_afe_backup_list-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_multi_ch_out_i2s4-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_o23_mix-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_o24_mix-defined-but-not-used | `-- sound-soc-sti-uniperif.h:warning:uni_tdm_hw-defined-but-not-used |-- arm64-allnoconfig | |-- drivers-clk-clk-fixed-rate.c:warning:Function-parameter-or-member-node-not-described-in-of_fixed_clk_setup | |-- drivers-clk-clk.c:warning:Function-parameter-or-member-get_hw-not-described-in-of_clk_provider | |-- drivers-of-base.c:warning:Function-parameter-or-member-np-not-described-in-of_add_property | |-- drivers-of-base.c:warning:no-previous-prototype-for-__of_free_phandle_cache_entry | |-- drivers-of-device.c:warning:Excess-function-parameter-ids-description-in-of_match_device | |-- drivers-of-fdt.c:warning:Function-parameter-or-member-compat-not-described-in-of_fdt_match | |-- drivers-of-fdt.c:warning:Function-parameter-or-member-node-not-described-in-of_fdt_match | |-- fs-inode.c:warning:no-previous-prototype-for-bmap | |-- fs-super.c:warning:no-previous-prototype-for-emergency_thaw_all | |-- include-linux-list.h:warning:storing-the-address-of-local-variable-wait-in-((struct-list_head-)x)-.prev | |-- include-linux-list.h:warning:storing-the-address-of-local-variable-waiter-in-(struct-list_head-)((char-)sem-).prev | |-- include-linux-mempolicy.h:warning:__do_mbind-defined-but-not-used | |-- include-linux-printk.h:warning:this-statement-may-fall-through | |-- include-linux-signal.h:warning:this-statement-may-fall-through | |-- init-calibrate.c:warning:no-previous-prototype-for-calibration_delay_done | |-- mm-memory.c:error:implicit-declaration-of-function-hugetlb_insert_hugepage_pte_by_pa | |-- mm-rmap.c:warning:no-previous-prototype-for-is_vma_temporary_stack | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled |-- arm64-defconfig | |-- crypto-ecc.c:warning:priv-may-be-used-uninitialized | |-- include-linux-list.h:warning:storing-the-address-of-local-variable-waiter-in-(struct-list_head-)((char-)sem-).prev | |-- include-linux-printk.h:warning:this-statement-may-fall-through | |-- include-linux-signal.h:warning:this-statement-may-fall-through | |-- include-linux-skbuff.h:warning:array-subscript-struct-sk_buff-is-partly-outside-array-bounds-of-struct-ieee80211_tx_data | |-- init-calibrate.c:warning:no-previous-prototype-for-calibration_delay_done | `-- net-netfilter-nf_nat_proto.c:warning:no-previous-prototype-for-nf_nat_csum_recalc |-- arm64-randconfig-001-20251212 | |-- crypto-ecc.c:warning:priv-may-be-used-uninitialized | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- include-linux-printk.h:warning:this-statement-may-fall-through | |-- include-linux-signal.h:warning:this-statement-may-fall-through | |-- init-calibrate.c:warning:no-previous-prototype-for-calibration_delay_done | `-- mm-rmap.c:warning:no-previous-prototype-for-is_vma_temporary_stack |-- arm64-randconfig-002-20251212 | |-- drivers-acpi-arm64-iort.c:warning:Excess-function-parameter-size-description-in-iort_dma_setup | |-- drivers-acpi-arm64-iort.c:warning:Function-parameter-or-member-ops-not-described-in-iort_add_platform_device | |-- drivers-acpi-pptt.c:warning:Function-parameter-or-member-offset-not-described-in-acpi_pptt_validate_cache_node | |-- drivers-acpi-utils.c:warning:Function-parameter-or-member-fmt-not-described-in-__acpi_handle_debug | |-- drivers-clk-mediatek-clk-mt2701.c:warning:audio_parents-defined-but-not-used | |-- drivers-clk-qcom-gcc-msm8996.c:warning:gcc_xo_gpll0_gpll2_gpll3_gpll0_early_div_map-defined-but-not-used | |-- drivers-clk-qcom-gcc-msm8996.c:warning:gcc_xo_gpll0_gpll2_gpll3_gpll1_gpll4_gpll0_early_div_map-defined-but-not-used | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-div_flags-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-gate_shift-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-mux_flags-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-mux_width-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-name-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-half-divider.c:warning:Function-parameter-or-member-num_parents-not-described-in-rockchip_clk_register_halfdiv | |-- drivers-clk-rockchip-clk-rv1108.c:warning:mux_pll_src_3plls_p-defined-but-not-used | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-div_shift-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-div_width-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-flags-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-gate_offset-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-hw-not-described-in-rockchip_fractional_approximation | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-mux_flags-not-described-in-rockchip_clk_register_branch | |-- drivers-clk-rockchip-clk.c:warning:Function-parameter-or-member-mux_shift-not-described-in-rockchip_clk_register_branch | |-- drivers-dma-mediatek-mtk-hsdma.c:warning:Function-parameter-or-member-desc1-not-described-in-mtk_hsdma_pdesc | |-- drivers-dma-pl330.c:warning:dst-may-be-used-uninitialized-in-this-function | |-- drivers-dma-pl330.c:warning:src-may-be-used-uninitialized-in-this-function | |-- drivers-firewire-core-device.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_ln2-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_pi-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-display-include-fixed31_32.h:warning:dc_fixpt_two_pi-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:DFX_DAP_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:FUSE_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:IOHC_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:L2IMU_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega10_ip_offset.h:warning:MP2_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-..-include-vega20_ip_offset.h:warning:XDMA_BASE-defined-but-not-used | |-- drivers-gpu-drm-amd-amdgpu-amdgpu_acp.c:warning:Excess-function-parameter-adev-description-in-acp_hw_fini | |-- drivers-gpu-drm-amd-amdgpu-ci_dpm.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-amd-amdgpu-cik_sdma.c:warning:Excess-function-parameter-fence-description-in-cik_sdma_ring_emit_fence | |-- drivers-gpu-drm-amd-amdgpu-gfx_v7_0.c:warning:Function-parameter-or-member-ring-not-described-in-gfx_v7_0_ring_emit_fence_gfx | |-- drivers-gpu-drm-amd-amdgpu-uvd_v4_2.c:warning:Function-parameter-or-member-vmid-not-described-in-uvd_v4_2_ring_emit_ib | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-connector-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_conn_state-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_crtc_state-set-but-not-used | |-- drivers-gpu-drm-drm_atomic_helper.c:warning:variable-new_plane_state-set-but-not-used | |-- drivers-gpu-drm-msm-adreno-a5xx_gpu.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-msm-adreno-adreno_gpu.c:warning:this-statement-may-fall-through | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_encoder.c:warning:Function-parameter-or-member-phys-not-described-in-_dpu_encoder_trigger_start | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_encoder_phys_cmd.c:warning:variable-cmd_enc-set-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:Function-parameter-or-member-uc-not-described-in-INTERLEAVED_RGB_FMT | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_p010-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_tile-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_formats.c:warning:dpu_format_map_tp10_ubwc-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_hw_catalog_format.h:warning:rgb_10bit_formats-defined-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_hw_cdm.c:warning:cannot-understand-function-prototype:u32-offsite_v_coeff | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_plane.c:warning:variable-pe-set-but-not-used | |-- drivers-gpu-drm-msm-disp-dpu1-dpu_vbif.c:warning:Function-parameter-or-member-dpu_kms-not-described-in-dpu_vbif_set_ot_limit | |-- drivers-gpu-drm-msm-disp-mdp4-mdp4_kms.c:warning:variable-crtc_state-set-but-not-used | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_cfg.c:warning:variable-ret-set-but-not-used | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_ctl.c:warning:Function-parameter-or-member-pipeline-not-described-in-mdp5_ctl_commit | |-- drivers-gpu-drm-msm-disp-mdp5-mdp5_kms.c:warning:variable-hw_cfg-set-but-not-used | |-- drivers-gpu-drm-msm-msm_gem_shrinker.c:warning:Excess-function-parameter-dev_priv-description-in-msm_gem_shrinker_cleanup | |-- drivers-input-misc-xen-kbdfront.c:warning:this-statement-may-fall-through | |-- drivers-md-raid5.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- drivers-misc-cardreader-rts5227.c:warning:rts522a_pcr_ops-defined-but-not-used | |-- drivers-parport-ieee1284.c:warning:this-statement-may-fall-through | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- drivers-pinctrl-pinctrl-rockchip.c:warning:Cannot-understand-reg_base:register-base-of-the-gpio-bank | |-- drivers-soc-tegra-pmc.c:warning:Function-parameter-or-member-wake-not-described-in-tegra_pmc | |-- drivers-video-fbdev-xen-fbfront.c:warning:this-statement-may-fall-through | |-- fs-adfs-dir_f.c:warning:this-statement-may-fall-through | |-- fs-hfs-inode.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- fs-hfsplus-inode.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- fs-ufs-util.h:warning:this-statement-may-fall-through | |-- include-linux-mempolicy.h:warning:__do_mbind-defined-but-not-used | |-- include-linux-printk.h:warning:this-statement-may-fall-through | |-- include-linux-signal.h:warning:this-statement-may-fall-through | |-- kernel-kallsyms.c:warning:kallsyms_operations-defined-but-not-used | |-- kernel-sched-core.c:error:root_task_group-undeclared-(first-use-in-this-function) | |-- mm-kmemleak.c:error:implicit-declaration-of-function-printk_safe_exit | |-- mm-slab_common.c:warning:proc_slabinfo_operations-defined-but-not-used | |-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled | |-- sound-core-memalloc.c:warning:this-statement-may-fall-through | |-- sound-core-seq-oss-seq_oss_timer.c:warning:this-statement-may-fall-through | |-- sound-core-seq_device.c:warning:suggest-braces-around-empty-body-in-an-if-statement | |-- sound-pci-ac97-ac97_codec.c:warning:snd_ac97_controls_master_mono-defined-but-not-used | |-- sound-soc-codecs-adau1761.c:warning:this-statement-may-fall-through | |-- sound-soc-codecs-cs42l56.c:warning:adc_swap_enum-defined-but-not-used | |-- sound-soc-codecs-cs42l73.c:warning:vsp_output_mux-defined-but-not-used | |-- sound-soc-codecs-cs42l73.c:warning:xsp_output_mux-defined-but-not-used | |-- sound-soc-codecs-cs4349.c:warning:cs4349_runtime_pm-defined-but-not-used | |-- sound-soc-codecs-es8316.c:warning:es8316_dacsrc_values-defined-but-not-used | |-- sound-soc-codecs-es8316.c:warning:es8316_hpmux_values-defined-but-not-used | |-- sound-soc-codecs-es8328.c:warning:es8328_rline_enum-defined-but-not-used | |-- sound-soc-codecs-es8328.c:warning:pga_tlv-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_alc_tlv-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_pa1en_enum-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_pa2en_enum-defined-but-not-used | |-- sound-soc-codecs-max98090.c:warning:max98090_sidetone_tlv-defined-but-not-used | |-- sound-soc-codecs-max98371.c:warning:max98371_noload_gain_tlv-defined-but-not-used | |-- sound-soc-codecs-max9850.c:warning:max9850_reg-defined-but-not-used | |-- sound-soc-codecs-max98926.c:warning:max98926_boost_current_txt-defined-but-not-used | |-- sound-soc-codecs-max98926.c:warning:max98926_dai_txt-defined-but-not-used | |-- sound-soc-codecs-ml26124.c:warning:ngth-defined-but-not-used | |-- sound-soc-codecs-mt6351.c:warning:mt_lineout_control-defined-but-not-used | |-- sound-soc-codecs-pcm186x.c:warning:this-statement-may-fall-through | |-- sound-soc-codecs-rt5645.c:warning:rt5645_if3_adc_in_mux-defined-but-not-used | |-- sound-soc-codecs-rt5645.c:warning:rt5645_inl_mux-defined-but-not-used | |-- sound-soc-codecs-rt5645.c:warning:rt5645_inr_mux-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_monol_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_monor_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_sto1_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_ad_sto2_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_monol_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_monor_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5659.c:warning:rt5659_da_sto_asrc_enum-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_hpl_mix-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_hpr_mix-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_if4_adc_in_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto2_adc_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto_adc_mux-defined-but-not-used | |-- sound-soc-codecs-rt5670.c:warning:rt5670_sto_dmic3_mux-defined-but-not-used | |-- sound-soc-codecs-tas571x.c:warning:tas5721_controls-defined-but-not-used | |-- sound-soc-codecs-tlv320aic23.c:warning:tlv320aic23_rec_src-defined-but-not-used | |-- sound-soc-codecs-tlv320aic31xx.c:warning:cm_m_enum-defined-but-not-used | |-- sound-soc-codecs-tscs454.c:warning:PLL_48K_RATE-defined-but-not-used | |-- sound-soc-codecs-wm8400.c:warning:out_omix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8400.c:warning:rec_mix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8400.c:warning:wm8400_dapm_rxvoice_controls-defined-but-not-used | |-- sound-soc-codecs-wm8737.c:warning:high_3d-defined-but-not-used | |-- sound-soc-codecs-wm8900.c:warning:wm8900_dapm_loutput2_control-defined-but-not-used | |-- sound-soc-codecs-wm8900.c:warning:wm8900_dapm_routput2_control-defined-but-not-used | |-- sound-soc-codecs-wm8974.c:warning:wm8974_aux_boost_controls-defined-but-not-used | |-- sound-soc-codecs-wm8974.c:warning:wm8974_mic_boost_controls-defined-but-not-used | |-- sound-soc-codecs-wm8988.c:warning:wm8988_rline_enum-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:out_omix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:rec_mix_tlv-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:wm8990_dapm_rxvoice_controls-defined-but-not-used | |-- sound-soc-codecs-wm8990.c:warning:wm8990_regmap-defined-but-not-used | |-- sound-soc-codecs-wm8991.c:warning:wm8991_dapm_rxvoice_controls-defined-but-not-used | |-- sound-soc-codecs-wm8994.c:warning:wm1811_snd_controls-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-common.h:warning:mt2701_afe_backup_list-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_multi_ch_out_i2s4-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_o23_mix-defined-but-not-used | |-- sound-soc-mediatek-mt2701-mt2701-afe-pcm.c:warning:mt2701_afe_o24_mix-defined-but-not-used | `-- sound-soc-sti-uniperif.h:warning:uni_tdm_hw-defined-but-not-used |-- arm64-randconfig-003-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- drivers-tee-optee-core.c:warning:return-makes-integer-from-pointer-without-a-cast | |-- include-linux-printk.h:warning:this-statement-may-fall-through | `-- include-linux-signal.h:warning:this-statement-may-fall-through |-- x86_64-allmodconfig | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-allnoconfig | |-- drivers-base-bus.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-container.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-devcon.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-char_dev.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-d_path.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-file_table.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-fs_struct.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-nsfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ramfs-inode.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-seq_file.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-stack.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-stat.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-statfs.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-xattr.o:warning:objtool:missing-symbol-for-section-.text | |-- init-calibrate.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-cred.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-events-hw_breakpoint.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-extable.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-irq-autoprobe.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-irq-matrix.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-ktask.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-locking-rwsem.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-locking-semaphore.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-nsproxy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-pid.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-rcu-srcutiny.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-rcu-tiny.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-sched-completion.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sched-fair.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-sched-loadavg.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sched-wait_bit.o:warning:objtool:missing-symbol-for-section-.sched.text | |-- kernel-sys_ni.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sysctl_binary.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-task_work.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-tick-broadcast.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-time-timeconv.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-timecounter.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-filemap.o:warning:objtool:missing-symbol-for-section-.init.text | |-- mm-mmu_context.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-mmzone.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-msync.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-page_alloc.o:warning:objtool:missing-symbol-for-section-.ref.text | |-- mm-rmap.o:warning:objtool:missing-symbol-for-section-.init.text | |-- mm-vmacache.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration | `-- mm-vmstat.o:warning:objtool:missing-symbol-for-section-.init.text |-- x86_64-allyesconfig | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-buildonly-randconfig-001-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- kernel-sched-core.c:error:use-of-undeclared-identifier-root_task_group | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-buildonly-randconfig-002-20250827 | |-- crypto-asymmetric_keys-mscode_parser.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-media-platform-xilinx-xilinx-vip.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-net-wireless-ath-ath6kl-hif.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-net-wireless-ath-ath6kl-init.o:warning:objtool:missing-symbol-for-section-.text | `-- mm-hugetlb_cgroup.o:warning:objtool:missing-symbol-for-section-.init.text |-- x86_64-buildonly-randconfig-002-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-buildonly-randconfig-003-20251212 | |-- block-blk-mq-rdma.o:warning:objtool:missing-symbol-for-section-.text | |-- block-ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- block-partitions-check.o:warning:objtool:missing-symbol-for-section-.text | |-- block-scsi_ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- crypto-sm4_generic.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-infiniband-sw-rxe-rxe_mr.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- drivers-net-ethernet-mellanox-mlx5-core-en_dim.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- fs-fscache-stats.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-memcontrol.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-buildonly-randconfig-004-20251212 | |-- block-blk-map.o:warning:objtool:missing-symbol-for-section-.text | |-- block-blk-mq-rdma.o:warning:objtool:missing-symbol-for-section-.text | |-- block-blk-rq-qos.o:warning:objtool:missing-symbol-for-section-.text | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- block-ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- block-partitions-check.o:warning:objtool:missing-symbol-for-section-.text | |-- block-scsi_ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- crypto-sm4_generic.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-base-bus.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-container.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-base-devcon.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-base-power-domain.c:warning:Function-parameter-or-member-suspend-not-described-in-genpd_syscore_switch | |-- drivers-bcma-driver_chipcommon_b.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-bcma-driver_gmac_cmn.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-bcma-driver_mips.c:warning:unused-variable-ipsflag_irq_shift | |-- drivers-bluetooth-hci_bcm.c:warning:unused-variable-acpi_bcm_int_last_gpios | |-- drivers-bluetooth-hci_bcm.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-bluetooth-hci_intel.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-clocksource-timer-of.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-buf-not-described-in-store_scaling_governor | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-driver-not-described-in-cpufreq_unregister_driver | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-object-not-described-in-show_one | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-policy-not-described-in-show_affected_cpus | |-- drivers-cpufreq-cpufreq.c:warning:Function-parameter-or-member-policy-not-described-in-store_scaling_governor | |-- drivers-cpufreq-cpufreq_governor.c:warning:Function-parameter-or-member-count-not-described-in-store_sampling_rate | |-- drivers-cpufreq-freq_table.c:warning:Function-parameter-or-member-buf-not-described-in-show_available_freqs | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-idle-not-described-in-msgdma_device | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-sw_desq-not-described-in-msgdma_device | |-- drivers-dma-of-dma.c:warning:Function-parameter-or-member-data-not-described-in-of_dma_controller_register | |-- drivers-firewire-core-iso.c:warning:Function-parameter-or-member-bandwidth-not-described-in-fw_iso_resource_manage | |-- drivers-gpio-gpio-altera.c:warning:bad-line:will-be-blocked-until-the-current-one-completes. | |-- drivers-gpio-gpiolib-devprop.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-gpu-ipu-v3-ipu-dmfc.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-hsi-hsi_boardinfo.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-i2c-algos-i2c-algo-pca.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- drivers-iio-accel-bma220_spi.c:warning:unused-variable-bma220_acpi_id | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-chan-not-described-in-sca3000_read_event_value | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-indio_dev-not-described-in-sca3000_read_event_value | |-- drivers-iio-accel-sca3000.c:warning:Function-parameter-or-member-val2-not-described-in-sca3000_read_event_value | |-- drivers-iio-adc-ad7923.c:warning:Function-parameter-or-member-p-not-described-in-ad7923_trigger_handler | |-- drivers-iio-adc-cpcap-adc.c:warning:Enum-value-CPCAP_ADC_AD3-not-described-in-enum-cpcap_adc_channel | |-- drivers-iio-adc-cpcap-adc.c:warning:Enum-value-CPCAP_ADC_BPLUS_AD4-not-described-in-enum-cpcap_adc_channel | |-- drivers-iio-adc-palmas_gpadc.c:warning:Function-parameter-or-member-dev-not-described-in-palmas_gpadc | |-- drivers-iio-common-st_sensors-st_sensors_buffer.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-iio-common-st_sensors-st_sensors_core.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-iio-pressure-bmp280-i2c.c:warning:unused-variable-bmp280_acpi_i2c_match | |-- drivers-infiniband-core-cache.c:warning:Excess-function-parameter-device-description-in-rdma_find_gid_by_port | |-- drivers-infiniband-core-cma_configfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-infiniband-core-roce_gid_mgmt.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-infiniband-ulp-iser-iser_initiator.c:warning:Function-parameter-or-member-conn-not-described-in-iser_send_command | |-- drivers-infiniband-ulp-iser-iser_verbs.c:warning:Function-parameter-or-member-device-not-described-in-iser_free_device_ib_res | |-- drivers-iommu-io-pgtable.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-iommu-iommu-debugfs.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-isdn-capi-capiutil.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-isdn-mISDN-dsp_audio.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-isdn-mISDN-dsp_cmx.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-isdn-mISDN-l1oip_codec.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-mfd-axp2-i2c.c:warning:unused-variable-axp2_i2c_acpi_match | |-- drivers-mfd-da9063-irq.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-mfd-pcf50633-gpio.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-mfd-sec-irq.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-misc-altera-stapl-altera.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-misc-echo-echo.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-misc-eeprom-at24.c:warning:unused-variable-at24_acpi_ids | |-- drivers-misc-eeprom-eeprom_93cx6.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-misc-lkdtm-heap.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-mtd-chips-chipreg.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-mtd-mtdchar.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-mtd-nftlmount.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-net-netdevsim-netdev.c:warning:unused-variable-nsim_switchdev_ops | |-- drivers-net-phy-mdio_bus.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-net-slip-slhc.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-nvme-host-core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-nvme-target-configfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-nvme-target-discovery.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-of-base.c:warning:no-previous-prototype-for-function-__of_free_phandle_cache_entry | |-- drivers-of-of_net.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-of-resolver.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-parport-daisy.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-parport-ieee1284_ops.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-parport-probe.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- drivers-power-supply-bq24257_charger.c:warning:unused-variable-bq24257_acpi_match | |-- drivers-ras-cec.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-regulator-core.c:warning:no-previous-prototype-for-function-regulator_suspend_enable | |-- drivers-regulator-dummy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_carveout | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_devmem | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-work-not-described-in-rproc_crash_handler_work | |-- drivers-remoteproc-remoteproc_sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-rtc-interface.c:warning:Function-parameter-or-member-rtc-not-described-in-rtc_read_offset | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Excess-function-parameter-fip-description-in-fcoe_ctlr_disc_start | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Excess-function-parameter-fip-description-in-fcoe_ctlr_disc_stop_locked | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Function-parameter-or-member-lport-not-described-in-fcoe_ctlr_disc_start | |-- drivers-scsi-fcoe-fcoe_ctlr.c:warning:Function-parameter-or-member-rdata-not-described-in-fcoe_ctlr_vlan_disc_reply | |-- drivers-scsi-libfc-fc_exch.c:warning:Function-parameter-or-member-lport-not-described-in-fc_exch_mgr | |-- drivers-scsi-libfc-fc_exch.c:warning:Function-parameter-or-member-stats.seq_not_found-not-described-in-fc_exch_mgr | |-- drivers-scsi-libfc-fc_fcp.c:warning:Function-parameter-or-member-sc_cmd-not-described-in-fc_queuecommand | |-- drivers-scsi-libfc-fc_fcp.c:warning:Function-parameter-or-member-t-not-described-in-fc_fcp_timeout | |-- drivers-scsi-libfc-fc_lport.c:warning:Function-parameter-or-member-in_fp-not-described-in-fc_lport_recv_rnid_req | |-- drivers-scsi-libfc-fc_rport.c:warning:Excess-function-parameter-lport_arg-description-in-fc_rport_logo_resp | |-- drivers-scsi-scsi_devinfo.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-scsi-scsi_trace.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-soc-mediatek-mtk-infracfg.c:warning:Excess-function-parameter-regmap-description-in-mtk_infracfg_clear_bus_protection | |-- drivers-spi-spi-fsl-lib.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-spi-spi-zynqmp-gqspi.c:warning:Excess-function-parameter-flashcs-description-in-zynqmp_gqspi_selectslave | |-- drivers-staging-iio-frequency-ad9832.c:warning:Function-parameter-or-member-not-described-in-IIO_DEV_ATTR_FREQ | |-- drivers-staging-ks7010-michael_mic.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-tty-n_gsm.c:warning:Excess-function-parameter-dlci-description-in-gsm_dlci_free | |-- drivers-tty-n_gsm.c:warning:Excess-function-parameter-mux-description-in-gsm_free_mux | |-- drivers-tty-n_gsm.c:warning:Function-parameter-or-member-c-not-described-in-gsm_read_ea | |-- drivers-tty-serial-serial_core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- drivers-tty-tty_baudrate.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_alloc | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_free | |-- drivers-tty-tty_io.c:warning:Excess-function-parameter-cols-description-in-tty_do_resize | |-- drivers-tty-tty_io.c:warning:Function-parameter-or-member-tty-not-described-in-tiocswinsz | |-- drivers-usb-gadget-epautoconf.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-usb-gadget-function-f_mass_storage.c:warning:variable-rc-set-but-not-used | |-- drivers-usb-gadget-functions.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-usb-gadget-udc-core.c:warning:Function-parameter-or-member-ep-not-described-in-usb_gadget_giveback_request | |-- drivers-usb-gadget-udc-net2272.c:warning:variable-irqflags-set-but-not-used | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_get_phy | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_get_phy_by_phandle | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-dev-not-described-in-devm_usb_put_phy | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-nb-not-described-in-usb_phy_get_charger_type | |-- drivers-usb-phy-phy.c:warning:Function-parameter-or-member-phy-not-described-in-devm_usb_put_phy | |-- drivers-video-fbdev-core-cfbcopyarea.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-video-fbdev-core-fbcmap.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-video-fbdev-core-fbcvt.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-video-fbdev-core-syscopyarea.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-video-fbdev-hgafb.c:warning:Function-parameter-or-member-init-not-described-in-hgafb_release | |-- drivers-virtio-virtio_ring.c:warning:Excess-function-parameter-vq-description-in-virtqueue_poll | |-- drivers-w1-slaves-w1_ds2408.c:warning:Function-parameter-or-member-filp-not-described-in-activity_write | |-- drivers-w1-w1_netlink.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-watchdog-watchdog_pretimeout.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-xen-preempt.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-xen-swiotlb-xen.o:warning:objtool:missing-symbol-for-section-.ref.text | |-- fs-autofs-dev-ioctl.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-async-thread.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-btrfs-backref.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-compression.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-delayed-inode.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-delayed-ref.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-disk-io.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-extent_io.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-extent_map.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-file.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-inode-item.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-btrfs-inode.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-ordered-data.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-orphan.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-btrfs-props.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-struct-funcs.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-btrfs-super.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-btrfs-tests-btrfs-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-tests-extent-buffer-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-tests-free-space-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-tests-free-space-tree-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-tests-inode-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-tests-qgroup-tests.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-btrfs-volumes.o:warning:objtool:missing-symbol-for-section-.exit.text | |-- fs-char_dev.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-compat.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-d_path.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-dcookies.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-ext4-block_validity.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ext4-extents_status.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ext4-mballoc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ext4-migrate.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-ext4-page-io.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ext4-sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-fat-cache.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-fat-misc.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-file_table.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-fs_struct.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-gfs2-acl.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-gfs2-glock.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-gfs2-quota.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-gfs2-util.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-jfs-ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_discard.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_extent.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_inode.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_metapage.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-jfs-jfs_mount.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_umount.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-jfs_unicode.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-resize.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-jfs-super.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-kernfs-dir.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-kernfs-mount.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-nsfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-ocfs2-ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-ocfs2-locks.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-ocfs2-super.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- fs-ocfs2-uptodate.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-base.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-inode.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-proc_net.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-proc_sysctl.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-proc_tty.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-root.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-self.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-thread_self.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-proc-util.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-ramfs-inode.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-reiserfs-fix_node.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-reiserfs-hashes.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-reiserfs-ibalance.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-reiserfs-lbalance.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-reiserfs-resize.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-seq_file.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-stack.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-stat.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-statfs.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-sysfs-mount.o:warning:objtool:missing-symbol-for-section-.init.text | |-- fs-utimes.o:warning:objtool:missing-symbol-for-section-.text | |-- fs-xattr.o:warning:objtool:missing-symbol-for-section-.text | |-- init-calibrate.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-bpf-core.c:warning:cast-from-u64-(-)(u64-u64-u64-u64-u64)-(aka-unsigned-long-long-(-)(unsigned-long-long-unsigned-long-long-unsigned-long-long-unsigned-long-long-unsigned-long-long)-)-to-u64-(- | |-- kernel-bpf-disasm.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-bpf-helpers.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-bpf-map_in_map.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-bpf-tnum.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-crash_core.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-cred.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-debug-gdbstub.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-debug-kdb-kdb_bp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-debug-kdb-kdb_bt.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-debug-kdb-kdb_debugger.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-debug-kdb-kdb_main.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-delayacct.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-dma-contiguous.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-dma-swiotlb.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- kernel-elfcore.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-events-hw_breakpoint.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-extable.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-irq-autoprobe.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-irq-irqdesc.o:warning:objtool:missing-symbol-for-section-.ref.text | |-- kernel-irq-irqdomain.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-irq-matrix.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-jump_label.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-kexec.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-ktask.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-latencytop.o:warning:objtool:missing-symbol-for-section-.sched.text | |-- kernel-locking-rwsem.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-locking-semaphore.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-locking-spinlock.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-locking-spinlock_debug.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-nsproxy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-pid.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-printk-printk.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- kernel-printk-printk_safe.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-profile.o:warning:objtool:missing-symbol-for-section-.ref.text | |-- kernel-rcu-srcutiny.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-rcu-tiny.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-sched-completion.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sched-core.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- kernel-sched-debug.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- kernel-sched-fair.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-sched-loadavg.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sched-membarrier.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sched-wait_bit.o:warning:objtool:missing-symbol-for-section-.sched.text | |-- kernel-sys_ni.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-sysctl.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-sysctl_binary.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-task_work.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-itimer.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-tick-broadcast.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-time-tick-common.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-timeconv.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-timecounter.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-time-timer.o:warning:objtool:missing-symbol-for-section-.init.text | |-- kernel-tsacct.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-uid16.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-user-return-notifier.o:warning:objtool:missing-symbol-for-section-.text | |-- kernel-workqueue.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- mm-debug.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- mm-fadvise.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-filemap.o:warning:objtool:missing-symbol-for-section-.init.text | |-- mm-ioremap.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-memcontrol.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- mm-mmu_context.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-mmzone.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-msync.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-page_alloc.o:warning:objtool:missing-symbol-for-section-.ref.text | |-- mm-rmap.o:warning:objtool:missing-symbol-for-section-.init.text | |-- mm-shmem.o:warning:objtool:missing-symbol-for-section-.init.text | |-- mm-vmacache.o:warning:objtool:missing-symbol-for-section-.text | |-- mm-vmstat.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-8021q-vlan_gvrp.o:warning:objtool:missing-symbol-for-section-.text | |-- net-8021q-vlan_mvrp.o:warning:objtool:missing-symbol-for-section-.text | |-- net-8021q-vlan_netlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-9p-client.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-9p-error.o:warning:objtool:missing-symbol-for-section-.text | |-- net-9p-mod.o:warning:objtool:missing-symbol-for-section-.text | |-- net-9p-util.o:warning:objtool:missing-symbol-for-section-.text | |-- net-atm-addr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-atm-atm_misc.o:warning:objtool:missing-symbol-for-section-.text | |-- net-atm-atm_sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-atm-proc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-atm-pvc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-atm-svc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ax25-ax25_addr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-ax25_dev.o:warning:objtool:missing-symbol-for-section-.exit.text | |-- net-ax25-ax25_ds_in.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-ax25_ds_subr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-ax25_iface.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-ax25_route.o:warning:objtool:missing-symbol-for-section-.exit.text | |-- net-ax25-ax25_std_in.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-ax25_std_subr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ax25-sysctl_net_ax25.o:warning:objtool:missing-symbol-for-section-.text | |-- net-batman-adv-bat_iv_ogm.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-batman-adv-bitarray.o:warning:objtool:missing-symbol-for-section-.text | |-- net-batman-adv-hash.o:warning:objtool:missing-symbol-for-section-.text | |-- net-batman-adv-netlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-batman-adv-network-coding.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-batman-adv-tp_meter.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-batman-adv-translation-table.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bluetooth-hci_sock.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bluetooth-hci_sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bluetooth-l2cap_core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bluetooth-l2cap_sock.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bluetooth-lib.o:warning:objtool:missing-symbol-for-section-.text | |-- net-bridge-br_fdb.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-bridge-br_input.o:warning:objtool:missing-symbol-for-section-.text | |-- net-bridge-br_netlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ceph-armor.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-ceph_fs.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-ceph_hash.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-ceph_strings.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-crush-crush.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-crush-hash.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ceph-crypto.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ceph-debugfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-core-gen_stats.o:warning:objtool:missing-symbol-for-section-.text | |-- net-core-net-procfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-core-net-sysfs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-core-netevent.o:warning:objtool:missing-symbol-for-section-.text | |-- net-core-netpoll.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- net-core-ptp_classifier.o:warning:objtool:missing-symbol-for-section-.text | |-- net-core-rtnetlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-core-skbuff.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-core-utils.o:warning:objtool:missing-symbol-for-section-.text | |-- net-dcb-dcbevent.o:warning:objtool:missing-symbol-for-section-.text | |-- net-dns_resolver-dns_query.o:warning:objtool:missing-symbol-for-section-.text | |-- net-hsr-hsr_netlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-arp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-bpfilter-sockopt.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-datagram.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-devinet.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-fib_frontend.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-fib_trie.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-icmp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-igmp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-inet_hashtables.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-inetpeer.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-ip_forward.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-ip_fragment.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-ip_options.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-ip_output.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-ip_tunnel_core.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-metrics.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-netlink.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-ping.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-proc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-protocol.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-raw.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-route.c:warning:variable-log_martians-set-but-not-used | |-- net-ipv4-route.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-tcp_ipv4.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-tcp_offload.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-tcp_output.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-tcp_ulp.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-udp_offload.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-udp_tunnel.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-udplite.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-xfrm4_output.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv4-xfrm4_policy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-xfrm4_protocol.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv4-xfrm4_state.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-addrconf.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-addrlabel.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-exthdrs.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-exthdrs_core.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-exthdrs_offload.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-fib6_rules.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-icmp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-inet6_connection_sock.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-ip6_checksum.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-ip6_fib.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-ip6_udp_tunnel.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-mcast.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-ndisc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-output_core.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-ping.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-proc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-protocol.o:warning:objtool:missing-symbol-for-section-.text | |-- net-ipv6-raw.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-reassembly.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-seg6.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-seg6_iptunnel.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-seg6_local.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-tcp_ipv6.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-tcpv6_offload.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-udp.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-udplite.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-xfrm6_policy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-xfrm6_protocol.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-ipv6-xfrm6_state.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-kcm-kcmproc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-lapb-lapb_out.o:warning:objtool:missing-symbol-for-section-.text | |-- net-lapb-lapb_subr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-llc-llc_c_ev.o:warning:objtool:missing-symbol-for-section-.text | |-- net-llc-llc_conn.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-llc-llc_output.o:warning:objtool:missing-symbol-for-section-.text | |-- net-llc-llc_pdu.o:warning:objtool:missing-symbol-for-section-.text | |-- net-llc-llc_proc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-llc-llc_s_ev.o:warning:objtool:missing-symbol-for-section-.text | |-- net-llc-llc_station.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-llc-sysctl_net_llc.o:warning:objtool:missing-symbol-for-section-.text | |-- net-netrom-nr_in.o:warning:objtool:missing-symbol-for-section-.text | |-- net-netrom-nr_loopback.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-netrom-nr_out.o:warning:objtool:missing-symbol-for-section-.text | |-- net-netrom-nr_subr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-netrom-sysctl_net_netrom.o:warning:objtool:missing-symbol-for-section-.text | |-- net-phonet-datagram.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-phonet-pn_dev.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-phonet-pn_netlink.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-phonet-socket.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-phonet-sysctl.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-rose-rose_in.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rose-rose_loopback.o:warning:objtool:missing-symbol-for-section-.exit.text | |-- net-rose-rose_out.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rose-rose_route.o:warning:objtool:missing-symbol-for-section-.exit.text | |-- net-rose-sysctl_net_rose.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rxrpc-local_event.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rxrpc-output.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rxrpc-security.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rxrpc-sysctl.o:warning:objtool:missing-symbol-for-section-.text | |-- net-rxrpc-utils.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sched-ematch.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sctp-bind_addr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sctp-debug.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sctp-offload.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-sctp-primitive.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sctp-sm_statetable.o:warning:objtool:missing-symbol-for-section-.text | |-- net-sctp-tsnmap.o:warning:objtool:missing-symbol-for-section-.text | |-- net-smc-smc_cdc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-smc-smc_clc.o:warning:objtool:missing-symbol-for-section-.text | |-- net-smc-smc_ib.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-smc-smc_llc.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-smc-smc_pnet.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-socket.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- net-sysctl_net.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-tipc-addr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-tipc-bcast.o:warning:objtool:missing-symbol-for-section-.text | |-- net-tipc-name_distr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-tipc-net.o:warning:objtool:missing-symbol-for-section-.text.unlikely. | |-- net-tipc-netlink.o:warning:objtool:missing-symbol-for-section-.text | |-- net-tipc-netlink_compat.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-tipc-sysctl.o:warning:objtool:missing-symbol-for-section-.text | |-- net-unix-sysctl_net_unix.o:warning:objtool:missing-symbol-for-section-.text | |-- net-vmw_vsock-af_vsock_tap.o:warning:objtool:missing-symbol-for-section-.text | |-- net-vmw_vsock-vsock_addr.o:warning:objtool:missing-symbol-for-section-.text | |-- net-wireless-wext-priv.o:warning:objtool:missing-symbol-for-section-.text | |-- net-wireless-wext-spy.o:warning:objtool:missing-symbol-for-section-.text | |-- net-xfrm-xfrm_device.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-xfrm-xfrm_hash.o:warning:objtool:missing-symbol-for-section-.text | |-- net-xfrm-xfrm_input.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-xfrm-xfrm_policy.o:warning:objtool:missing-symbol-for-section-.init.text | |-- net-xfrm-xfrm_sysctl.o:warning:objtool:missing-symbol-for-section-.text | `-- virt-lib-irqbypass.o:warning:objtool:missing-symbol-for-section-.text |-- x86_64-buildonly-randconfig-006-20251212 | |-- block-bfq-cgroup.o:warning:objtool:missing-symbol-for-section-.text | |-- block-bfq-wf2q.o:warning:objtool:missing-symbol-for-section-.text | |-- block-blk-mq-rdma.o:warning:objtool:missing-symbol-for-section-.text | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- block-ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- block-partitions-check.o:warning:objtool:missing-symbol-for-section-.text | |-- block-scsi_ioctl.o:warning:objtool:missing-symbol-for-section-.text | |-- crypto-asymmetric_keys-mscode_parser.o:warning:objtool:missing-symbol-for-section-.text | |-- crypto-sm4_generic.o:warning:objtool:missing-symbol-for-section-.text | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-002-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-003-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- kernel-sched-core.c:error:use-of-undeclared-identifier-root_task_group | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-randconfig-004-20251212 | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-randconfig-005-20251212 | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-006-20251212 | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- kernel-sched-core.c:error:use-of-undeclared-identifier-root_task_group |-- x86_64-randconfig-016-20251212 | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-randconfig-073-20251212 | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-075-20251212 | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue | |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue | `-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- x86_64-randconfig-101-20251212 | |-- block-blk-core.c:preceding-lock-on-line | |-- crypto-aead.c:opportunity-for-str_yes_no(alg-cra_flags-CRYPTO_ALG_ASYNC) | |-- drivers-acpi-utils.c:warning:Function-parameter-or-member-fmt-not-described-in-__acpi_handle_debug | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-103-20251212 | |-- crypto-aead.c:opportunity-for-str_yes_no(alg-cra_flags-CRYPTO_ALG_ASYNC) | |-- drivers-acpi-utils.c:warning:Function-parameter-or-member-fmt-not-described-in-__acpi_handle_debug | |-- drivers-base-node.c:warning:Function-parameter-or-member-hmem_attrs-not-described-in-node_access_nodes | |-- drivers-base-node.c:warning:Function-parameter-or-member-mem_nid-not-described-in-register_memory_node_under_compute_node | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- kernel-sched-core.c:error:use-of-undeclared-identifier-root_task_group | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | `-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration |-- x86_64-randconfig-122-20251212 | |-- drivers-acpi-utils.c:warning:Function-parameter-or-member-fmt-not-described-in-__acpi_handle_debug | |-- drivers-clk-clk-fixed-rate.c:warning:Function-parameter-or-member-node-not-described-in-of_fixed_clk_setup | |-- drivers-clk-clk.c:warning:Function-parameter-or-member-get_hw-not-described-in-of_clk_provider | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-idle-not-described-in-msgdma_device | |-- drivers-dma-altera-msgdma.c:warning:Function-parameter-or-member-sw_desq-not-described-in-msgdma_device | |-- drivers-dma-of-dma.c:warning:Function-parameter-or-member-data-not-described-in-of_dma_controller_register | |-- drivers-firewire-core-iso.c:warning:Function-parameter-or-member-bandwidth-not-described-in-fw_iso_resource_manage | |-- drivers-gpio-gpio-altera.c:warning:bad-line:will-be-blocked-until-the-current-one-completes. | |-- drivers-gpu-drm-amd-amdgpu-amdgpu_acp.c:warning:Excess-function-parameter-adev-description-in-acp_hw_fini | |-- drivers-of-base.c:warning:Function-parameter-or-member-np-not-described-in-of_add_property | |-- drivers-of-device.c:warning:Excess-function-parameter-ids-description-in-of_match_device | |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union | |-- drivers-regulator-core.c:warning:no-previous-prototype-for-function-regulator_suspend_enable | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_carveout | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-offset-not-described-in-rproc_handle_devmem | |-- drivers-remoteproc-remoteproc_core.c:warning:Function-parameter-or-member-work-not-described-in-rproc_crash_handler_work | |-- drivers-rtc-interface.c:warning:Function-parameter-or-member-rtc-not-described-in-rtc_read_offset | |-- drivers-spi-spi-zynqmp-gqspi.c:warning:Excess-function-parameter-flashcs-description-in-zynqmp_gqspi_selectslave | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_alloc | |-- drivers-tty-tty_buffer.c:warning:Excess-function-parameter-tty-description-in-tty_buffer_free | |-- drivers-tty-tty_io.c:warning:Excess-function-parameter-cols-description-in-tty_do_resize | |-- drivers-tty-tty_io.c:warning:Function-parameter-or-member-tty-not-described-in-tiocswinsz | |-- drivers-virtio-virtio_ring.c:warning:Excess-function-parameter-vq-description-in-virtqueue_poll | |-- drivers-w1-slaves-w1_ds2408.c:warning:Function-parameter-or-member-filp-not-described-in-activity_write | |-- kernel-bpf-core.c:warning:cast-from-u64-(-)(u64-u64-u64-u64-u64)-(aka-unsigned-long-long-(-)(unsigned-long-long-unsigned-long-long-unsigned-long-long-unsigned-long-long-unsigned-long-long)-)-to-u64-(- | |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type | |-- mm-vmscan.c:error:implicit-declaration-of-function-kernel_swap_enabled-Werror-Wimplicit-function-declaration | `-- net-ipv4-route.c:warning:variable-log_martians-set-but-not-used `-- x86_64-rhel-9.4-rust |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_issue |-- block-blk-wbt.c:warning:no-previous-prototype-for-function-wbt_requeue |-- drivers-pinctrl-core.c:error:Cannot-parse-struct-or-union |-- mm-memory.c:warning:cast-from-int-(-)(unsigned-long-unsigned-long-struct-cgp_args-)-to-ktask_thread_func-(aka-int-(-)(void-void-void-)-)-converts-to-incompatible-function-type |-- net-netfilter-nf_conntrack_core.c:warning:Excess-function-parameter-hash_reply-description-in-nf_ct_resolve_clash |-- net-netfilter-nf_conntrack_core.c:warning:Function-parameter-or-member-reply_hash-not-described-in-nf_ct_resolve_clash `-- net-netfilter-nf_nat_proto.c:warning:no-previous-prototype-for-function-nf_nat_csum_recalc elapsed time: 1459m configs tested: 36 configs skipped: 11 tested configs: arm64 allmodconfig gcc-15.1.0 arm64 allnoconfig gcc-15.1.0 arm64 defconfig gcc-15.1.0 arm64 randconfig-001-20251212 gcc-12.5.0 arm64 randconfig-002-20251212 gcc-7.5.0 arm64 randconfig-003-20251212 gcc-7.5.0 arm64 randconfig-004-20251212 gcc-5.5.0 x86_64 allmodconfig clang-22 x86_64 allnoconfig clang-22 x86_64 allyesconfig clang-22 x86_64 buildonly-randconfig-001-20251212 clang-22 x86_64 buildonly-randconfig-002-20251212 clang-22 x86_64 buildonly-randconfig-003-20251212 clang-22 x86_64 buildonly-randconfig-004-20251212 clang-22 x86_64 buildonly-randconfig-005-20251212 gcc-14 x86_64 buildonly-randconfig-006-20251212 clang-22 x86_64 defconfig gcc-14 x86_64 randconfig-001-20251212 gcc-14 x86_64 randconfig-002-20251212 clang-22 x86_64 randconfig-003-20251212 clang-22 x86_64 randconfig-004-20251212 clang-22 x86_64 randconfig-005-20251212 clang-22 x86_64 randconfig-006-20251212 clang-22 x86_64 randconfig-011-20251212 clang-22 x86_64 randconfig-012-20251212 gcc-14 x86_64 randconfig-013-20251212 gcc-14 x86_64 randconfig-014-20251212 clang-22 x86_64 randconfig-015-20251212 gcc-14 x86_64 randconfig-016-20251212 clang-22 x86_64 randconfig-071-20251212 gcc-12 x86_64 randconfig-072-20251212 gcc-14 x86_64 randconfig-073-20251212 clang-22 x86_64 randconfig-074-20251212 gcc-14 x86_64 randconfig-075-20251212 clang-22 x86_64 randconfig-076-20251212 gcc-14 x86_64 rhel-9.4-rust clang-22 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6] BUILD REGRESSION cd9eb9b4365b71652b2c2ac58293bea47c9f9302
by kernel test robot 13 Dec '25

13 Dec '25
tree/branch: https://gitee.com/openeuler/kernel.git OLK-6.6 branch HEAD: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 !19647 fbdev: bitblit: bound-check glyph index in bit_putcs* Error/Warning (recently discovered and may have been fixed): https://lore.kernel.org/oe-kbuild-all/202511130834.0qWsUngh-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511140839.9biSTcQm-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511160039.06UP1LhU-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511160338.SRwmoKy5-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511171230.PQsrWhhz-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511171413.zOn7Hte0-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511171556.lxjrabpR-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511171908.GkIEY88E-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511180451.SpjYxpJv-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511181354.QrCo9qqP-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511190025.obom3fen-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511221253.wiWo5CIW-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511230550.gjk44kyv-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511241700.GqFsj3QM-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511250630.aTlUN4lt-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511251246.qIzuARuC-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511251558.2eHkQQky-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511251727.cFjVKjQN-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511251921.jfyR52m4-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511252147.paqMgpCw-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511260440.XtGIX1Qz-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511280702.XVMyBDu0-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511281657.lWcX7PhK-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511281845.H2cg7rYT-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511282009.VCbXC9Zw-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511282111.LvHs2qlX-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202511282349.cceTk3rf-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512031727.TzoJZqMA-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512032006.udjnn6SV-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512051530.omM8ItZN-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512051717.zlmADxcV-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512051906.P1qE1lcs-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512052152.oJkyjVVl-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512052329.KGMXGdpW-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512060140.vNbFPUxu-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512060214.uqTv7hOT-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512060320.lR9JnDhZ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512060607.MyfYJLh0-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512061350.XW1D64dE-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512080408.Kma3SOA7-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512080518.RsQU37Pq-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512080744.dk0pGz73-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512080850.XFeNdf38-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512081156.izr1Nkua-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512081339.m9dijSrU-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512081644.0Feaab8s-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512090002.kbElJ2I7-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512090019.r12ZqVrM-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512090240.NdebMvOZ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512091138.u8NXXfZk-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512091141.r06Y9a5w-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512091204.Q8mSD8MC-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512101830.7qQXxUnc-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512101954.2PMARPcx-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512102106.8emZWvbe-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110235.L883ZLLi-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110241.IA0OcNWQ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110538.WcU44lJd-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110543.30EinXFl-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110548.FQDvrNPq-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110700.3emRQ7Un-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110706.bkOqQiMM-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110717.yxbCknCT-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512110945.4orBvyVq-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111016.FVDarhlL-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111041.BvyrUXKy-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111142.MddOammZ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111243.5gbg71Im-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111346.xfjnxdWL-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111728.ksAjCqeX-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111810.cbJGbotT-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512111912.9dS3N6D9-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512112010.YtfZjYX3-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512112035.fGJa8Hzw-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512120305.ngE1OnFo-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512120523.uRmzPGgB-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512120744.b8phlWWR-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512121402.K1KWDJc7-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512121829.l6WBMb9f-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512122024.MnPMvwJ8-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512122101.aJqs71rj-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512122109.Sy1IvzI5-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512122204.MoIXLFAZ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130131.7HrtXRUl-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130255.5pbCemhg-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130423.1ubNFGvk-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130435.BO31TiNF-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130602.wgKjB7EZ-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130728.UiRm4V7I-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130739.rii7QdtB-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130900.UPe4oSIC-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512130954.LPEUb9Ak-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512131040.ErvjOWkV-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512131145.YwV73bz7-lkp@intel.com https://lore.kernel.org/oe-kbuild-all/202512131229.07COqzuf-lkp@intel.com arch/arm64/kernel/xcall/xcall.c:57:24: warning: address of array '((struct xcall_info *)task->xinfo)->xcall_enable' will always evaluate to 'true' [-Wpointer-bool-conversion] block/blk-cgroup.c:2320:18: warning: no previous prototype for function 'bpf_blkcg_get_dev_iostat' [-Wmissing-prototypes] block/blk-ioinf.c:278:6: warning: no previous prototype for function 'ioinf_done' [-Wmissing-prototypes] block/blk-ioinf.c:656:5: warning: no previous prototype for function 'ioinf_calc_budget' [-Wmissing-prototypes] block/genhd.c:100:6: warning: no previous prototype for 'part_stat_read_all' [-Wmissing-prototypes] block/genhd.c:100:6: warning: no previous prototype for function 'part_stat_read_all' [-Wmissing-prototypes] crypto/asymmetric_keys/pgp_library.c:189: warning: Excess function parameter '_data' description in 'pgp_parse_packets' crypto/asymmetric_keys/pgp_library.c:189: warning: Excess function parameter '_datalen' description in 'pgp_parse_packets' crypto/asymmetric_keys/pgp_library.c:189: warning: Function parameter or member 'data' not described in 'pgp_parse_packets' crypto/asymmetric_keys/pgp_library.c:189: warning: Function parameter or member 'datalen' not described in 'pgp_parse_packets' drivers/acpi/pptt.c:309:5: warning: no previous prototype for 'acpi_pptt_for_each_container' [-Wmissing-prototypes] drivers/block/drbd/drbd_bitmap.c:1232: warning: Function parameter or member 'peer_device' not described in 'drbd_bm_write' drivers/block/drbd/drbd_bitmap.c:1234: warning: Function parameter or member 'peer_device' not described in 'drbd_bm_write' drivers/cpufreq/cppc_cpufreq.c:852:19: error: incomplete definition of type 'struct fb_ctr_pair' drivers/cpuinspect/sysfs.c:104:9: warning: no previous prototype for 'cpu_utility_store' [-Wmissing-prototypes] drivers/cpuinspect/sysfs.c:123:9: warning: no previous prototype for 'patrol_times_store' [-Wmissing-prototypes] drivers/cpuinspect/sysfs.c:139:9: warning: no previous prototype for 'start_patrol_store' [-Wmissing-prototypes] drivers/cpuinspect/sysfs.c:98:9: warning: no previous prototype for 'cpu_utility_show' [-Wmissing-prototypes] drivers/crypto/ccp/hygon/ccp-mdev.c:895:17: error: no member named 'numa_node' in 'struct device' drivers/crypto/ccp/hygon/ccp-mdev.c:895:30: error: 'struct device' has no member named 'numa_node' drivers/crypto/ccp/hygon/csv-dev.c:882: warning: Function parameter or member 'api_minor' not described in 'user_data_status' drivers/crypto/ccp/hygon/psp-dev.c:25:10: warning: no previous prototype for function 'atomic64_exchange' [-Wmissing-prototypes] drivers/crypto/ccp/hygon/vpsp.c:589:6: warning: no previous prototype for function 'vpsp_set_default_vid_permission' [-Wmissing-prototypes] drivers/firmware/uvb/cis/cis_info_process.c:615: warning: expecting prototype for cis_call(). Prototype was for cis_call_by_uvb() instead drivers/firmware/uvb/cis/uvb_info_process.c:18: warning: Cannot understand Calculate checksum in 4bytes, if size not aligned with 4bytes, padding with 0. drivers/firmware/uvb/odf/odf_data.c:131: warning: Cannot understand Search all od file in the root, input value path, output the value structure, contains value info. drivers/firmware/uvb/odf/odf_data.c:16: warning: Cannot understand @brief Search and match one value name, return the pointer of value structrue if matched. drivers/firmware/uvb/odf/odf_data.c:174: warning: Cannot understand @brief Get table information like row, colomn, sub types, .etc. drivers/firmware/uvb/odf/odf_data.c:232: warning: Cannot understand @brief Get a value's offset in row of table, will check type first. drivers/firmware/uvb/odf/odf_data.c:296: warning: Cannot understand @brief Get a value pointer from table according name and row, will check type first. drivers/firmware/uvb/odf/odf_data.c:408: warning: Cannot understand @brief Get a ubios od value struct from od root according to the path drivers/firmware/uvb/odf/odf_data.c:429: warning: Cannot understand @brief Get a list from od root, will return a list info structure. drivers/firmware/uvb/odf/odf_data.c:473: warning: Cannot understand @brief Get a value structure from list by index. drivers/firmware/uvb/odf/odf_data.c:546: warning: Cannot understand @brief Get next value of a list. drivers/firmware/uvb/odf/odf_data.c:55: warning: Cannot understand Change value structure by index in a list, the name will not be changed, drivers/firmware/uvb/odf/odf_data.c:594: warning: Cannot understand Internal function, get data pointer by path and type. drivers/firmware/uvb/odf/odf_data.c:686: warning: Cannot understand Get table in the value structure. drivers/firmware/uvb/odf/odf_data.c:70: warning: Cannot understand Change the value structure with index, move the pointer to the data indicated by index, drivers/firmware/uvb/odf/odf_data.c:87: warning: Cannot understand Search one od file, input value path, output the value structure, contains value info drivers/firmware/uvb/odf/odf_get_fdt.c:14:5: warning: no previous prototype for 'odf_get_fdt_ubiostbl' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:115:5: warning: no previous prototype for 'odf_separate_name' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:175: warning: Cannot understand @brief Get a name/value structrue by the data pointer drivers/firmware/uvb/odf/odf_helper.c:179:6: warning: no previous prototype for 'odf_get_vs_by_pointer' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:222:6: warning: no previous prototype for 'is_od_root_valid' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:242:6: warning: no previous prototype for 'is_od_file_valid' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:260: warning: Cannot understand @brief Search all pointer in od root, return the specific od file matched the input name. drivers/firmware/uvb/odf/odf_helper.c:267:5: warning: no previous prototype for 'odf_get_od_file' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:28:4: warning: no previous prototype for 'odf_read8' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:33:5: warning: no previous prototype for 'odf_read16' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:41:5: warning: no previous prototype for 'odf_read32' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:49:5: warning: no previous prototype for 'odf_read64' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:57:5: warning: no previous prototype for 'odf_checksum' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:84: warning: Cannot understand Only calculate the valid data region drivers/firmware/uvb/odf/odf_helper.c:86:6: warning: no previous prototype for 'odf_is_checksum_ok' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_helper.c:97:6: warning: no previous prototype for 'odf_update_checksum' [-Wmissing-prototypes] drivers/firmware/uvb/odf/odf_trans.c:119:42: error: implicit declaration of function 'memremap'; did you mean 'memcmp'? [-Werror=implicit-function-declaration] drivers/firmware/uvb/odf/odf_trans.c:120:73: error: 'MEMREMAP_WB' undeclared (first use in this function) drivers/firmware/uvb/odf/odf_trans.c:126:33: error: implicit declaration of function 'memunmap'; did you mean 'pte_unmap'? [-Werror=implicit-function-declaration] drivers/firmware/uvb/odf/odf_trans.c:28:6: warning: no previous prototype for 'free_cis_info' [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c:1475:66: warning: '%s' directive output may be truncated writing between 1 and 2 bytes into a region of size between 0 and 29 [-Wformat-truncation=] drivers/iommu/hisilicon/flush.c:174:13: warning: stack frame size (2240) exceeds limit (2048) in 'ummu_tlbi_range' [-Wframe-larger-than] drivers/irqchip/irq-gic-v3.c:1541:6: warning: no previous prototype for 'gic_get_ipiv_status' [-Wmissing-prototypes] drivers/irqchip/irq-gic-v3.c:561:6: warning: no previous prototype for 'gic_irq_set_prio' [-Wmissing-prototypes] drivers/media/platform/renesas/vsp1/vsp1_histo.c:556:21: warning: ' histo' directive output may be truncated writing 6 bytes into a region of size between 1 and 32 [-Wformat-truncation=] drivers/media/radio/radio-si476x.c:333:28: warning: '%s' directive output may be truncated writing up to 35 bytes into a region of size 23 [-Wformat-truncation=] drivers/net/ethernet/cavium/thunder/thunder_bgx.c:1432:34: warning: '%d' directive output may be truncated writing between 1 and 3 bytes into a region of size 2 [-Wformat-truncation=] drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:1214:5: warning: no previous prototype for 'hclge_tm_vf_tc_dwrr_cfg' [-Wmissing-prototypes] drivers/net/ethernet/huawei/bma/kbox_drv/kbox_panic.c:85:57: warning: diagnostic behavior may be improved by adding the 'format(printf, 1, 2)' attribute to the declaration of 'kbox_dump_painc_info' [-Wmissing-format-attribute] drivers/net/ethernet/huawei/bma/kbox_drv/kbox_printk.c:281:57: warning: diagnostic behavior may be improved by adding the 'format(printf, 1, 2)' attribute to the declaration of 'kbox_dump_printk_info' [-Wmissing-format-attribute] drivers/net/ethernet/linkdata/sxe/base/log/sxe_log.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxe/base/trace/sxe_trace.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ipsec.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxe/sxepf/sxe_ptp.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxevf/base/log/sxe_log.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_main.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_monitor.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_netdev.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/linkdata/sxevf/sxevf/sxevf_ring.c:3: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_common/nbl_common.c:158: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_common/nbl_common.c:171: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_common/nbl_common.c:522:6: warning: variable 'node_num' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_common/nbl_common.c:674:6: warning: variable 'node_num' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_dev_user.c:676:30: warning: variable 'vfn' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_dev_user.c:756:16: warning: variable 'vfn' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_dev_user.c:756:23: warning: variable 'vfn' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_service.c:1406:35: warning: variable 'ring_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_service.c:28: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_service.c:3025:28: warning: variable 'ring_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_service.c:3025:35: warning: variable 'ring_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_core/nbl_service.c:34: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_hw_leonis/nbl_flow_leonis.c:725:22: warning: variable 'phy_ops' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_hw_leonis/nbl_flow_leonis.c:893:22: warning: variable 'phy_ops' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_hw_leonis/nbl_flow_leonis.c:893:29: warning: variable 'phy_ops' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_txrx.c:1196: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_txrx.c:851: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_vsi.c:63:24: warning: variable 'queue_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_vsi.c:76:24: warning: variable 'queue_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/nebula-matrix/nbl/nbl_hw/nbl_vsi.c:76:31: warning: variable 'queue_mgt' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/wangxun/ngbe/ngbe_main.c:3878:20: warning: variable 'vlnctrl' set but not used [-Wunused-but-set-variable] drivers/net/ethernet/wangxun/ngbe/ngbe_ptp.c:631:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough] drivers/net/ethernet/wangxun/ngbe/ngbe_sriov.c:1079:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough] drivers/pinctrl/zhaoxin/pinctrl-kx7000.c:307:23: warning: overlapping comparisons always evaluate to true [-Wtautological-overlap-compare] drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:134:6: warning: variable 'value_back' set but not used [-Wunused-but-set-variable] drivers/platform/surface/surface3_power.c:248:3: warning: 'snprintf' will always be truncated; specified size is 10, but format string expands to at least 12 [-Wformat-truncation-non-kprintf] drivers/spi/spi-axi-spi-engine.c:101: warning: Function parameter or member 'p' not described in 'spi_engine_message_state' drivers/spi/spi-axi-spi-engine.c:106: warning: Function parameter or member 'p' not described in 'spi_engine_message_state' drivers/spmi/spmi-pmic-arb.c:180: warning: Function parameter or member 'core' not described in 'spmi_pmic_arb' drivers/ub/urma/ubagg/ubagg_ioctl.c:445:5: warning: no previous prototype for 'ubagg_user_ctl' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:482:5: warning: no previous prototype for 'ubagg_config_device' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:513:20: warning: no previous prototype for 'ubagg_create_jfc' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:549:5: warning: no previous prototype for 'ubagg_destroy_jfc' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:567:20: warning: no previous prototype for 'ubagg_create_jfs' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:608:5: warning: no previous prototype for 'ubagg_destroy_jfs' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:625:20: warning: no previous prototype for 'ubagg_create_jfr' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:70:6: warning: no previous prototype for 'ubagg_dev_ref_get' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:717:5: warning: no previous prototype for 'ubagg_destroy_jfr' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:736:22: warning: no previous prototype for 'ubagg_create_jetty' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:75:6: warning: no previous prototype for 'ubagg_dev_ref_put' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:828:5: warning: no previous prototype for 'ubagg_destroy_jetty' [-Wmissing-prototypes] drivers/ub/urma/ubagg/ubagg_ioctl.c:848:5: warning: no previous prototype for 'ubagg_query_device_status' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcm/ub_cm.c:56:37: warning: 'g_ubcm_ops' defined but not used [-Wunused-const-variable=] drivers/ub/urma/ubcore/ubcm/ubmad_datapath.c:141:23: warning: no previous prototype for 'ubmad_create_rt_work' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcm/ubmad_datapath.c:530:5: warning: no previous prototype for 'ubmad_post_send_conn_ack' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcm/ubmad_datapath.c:550:5: warning: no previous prototype for 'ubmad_repost_send_conn_data' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcm/ubmad_datapath.c:757:6: warning: no previous prototype for 'ubmad_process_rx_msn' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_cmd_tlv.c:251:5: warning: no previous prototype for 'ubcore_tlv_parse' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_cmd_tlv.c:285:5: warning: no previous prototype for 'ubcore_tlv_append' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_connect_adapter.c:180:1: warning: no previous prototype for 'ubcore_find_remove_ex_tp_info' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1169:5: warning: no previous prototype for 'ubcore_register_device' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1236:6: warning: no previous prototype for 'ubcore_unregister_device' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1279:6: warning: no previous prototype for 'ubcore_stop_requests' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1366:6: warning: no previous prototype for 'ubcore_dispatch_async_event' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1798:25: warning: no previous prototype for 'ubcore_get_eid_list' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:1850:6: warning: no previous prototype for 'ubcore_free_eid_list' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:2117:6: warning: no previous prototype for 'ubcore_dispatch_mgmt_event' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_device.c:469:1: warning: no previous prototype for 'ubcore_find_mue_device_legacy' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_msg.c:206:1: warning: no previous prototype for 'ubcore_asyn_send_ue2mue_msg' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:114:27: warning: no previous prototype for 'ubcore_register_seg' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:169:5: warning: no previous prototype for 'ubcore_unregister_seg' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:19:25: warning: no previous prototype for 'ubcore_alloc_token_id' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:203:27: warning: no previous prototype for 'ubcore_import_seg' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:238:5: warning: no previous prototype for 'ubcore_unimport_seg' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_segment.c:50:5: warning: no previous prototype for 'ubcore_free_token_id' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_tp.c:16:5: warning: no previous prototype for 'ubcore_get_tp_list' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_tp.c:42:5: warning: no previous prototype for 'ubcore_set_tp_attr' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_tp.c:65:5: warning: no previous prototype for 'ubcore_get_tp_attr' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_tp_table.c:18:5: warning: no previous prototype for 'ubcore_destroy_tp' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_vtp.c:170:6: warning: no previous prototype for 'ubcore_add_vtp_work_list' [-Wmissing-prototypes] drivers/ub/urma/ubcore/ubcore_vtp.c:177:6: warning: no previous prototype for 'ubcore_del_vtp_work_list' [-Wmissing-prototypes] drivers/ub/urma/uburma/uburma_dev_ops.c:68:6: warning: no previous prototype for 'uburma_unregister_mmu' [-Wmissing-prototypes] drivers/ub/urma/uburma/uburma_dev_ops.c:80:5: warning: no previous prototype for 'uburma_register_mmu' [-Wmissing-prototypes] drivers/xcu/xcu_group.c:41:5: warning: no previous prototype for '__xcu_group_attach' [-Wmissing-prototypes] drivers/xcu/xcu_group.c:41:5: warning: no previous prototype for function '__xcu_group_attach' [-Wmissing-prototypes] fs/mfs/data.c:379:24: warning: default initialization of an object of type 'struct vm_area_struct' with const member leaves the object uninitialized [-Wdefault-const-init-field-unsafe] fs/nfs/dir.c:1500:6: warning: no previous prototype for 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes] fs/nfs/dir.c:1500:6: warning: no previous prototype for function 'nfs_check_have_lookup_cache_flag' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:123: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst fs/nfs/enfs/dns_process.c:125:6: warning: no previous prototype for function 'enfs_swap_name_cache' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:144:6: warning: no previous prototype for function 'enfs_domain_inc' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:213:6: warning: no previous prototype for function 'ip_list_append' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:357:5: warning: no previous prototype for function 'enfs_quick_sort' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:390:5: warning: no previous prototype for function 'enfs_dns_process_ip' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:430:5: warning: no previous prototype for function 'enfs_server_query_dns' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:490:6: warning: no previous prototype for function 'query_dns_each_name' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:578:5: warning: no previous prototype for function 'enfs_iter_nfs_clnt' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:665:6: warning: no previous prototype for function 'enfs_domain_for_each' [-Wmissing-prototypes] fs/nfs/enfs/dns_process.c:88:6: warning: no previous prototype for function 'enfs_update_domain_name' [-Wmissing-prototypes] fs/nfs/enfs/enfs_config.c:551:6: warning: no previous prototype for function 'enfs_glob_match' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:111:6: warning: no previous prototype for function 'enfs_update_lookup_cache_flag_to_server' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:145:5: warning: no previous prototype for function 'enfs_query_lookup_cache' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:246:6: warning: no previous prototype for function 'enfs_query_lookup_cache_pre_check' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:264:6: warning: no previous prototype for function 'lookupcache_execute_work' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:287:5: warning: no previous prototype for function 'lookupcache_add_work' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:356:6: warning: no previous prototype for function 'lookupcache_loop_rpclnt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:405:6: warning: no previous prototype for function 'enfs_lookupcache_update_switch' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:422:5: warning: no previous prototype for function 'lookupcache_routine' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:442:5: warning: no previous prototype for function 'lookupcache_start' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:453:5: warning: no previous prototype for function 'enfs_lookupcache_workqueue_init' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:464:6: warning: no previous prototype for function 'lookupcache_workqueue_fini' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:472:5: warning: no previous prototype for function 'enfs_lookupcache_timer_init' [-Wmissing-prototypes] fs/nfs/enfs/enfs_lookup_cache.c:97:6: warning: no previous prototype for function 'enfs_clean_server_lookup_cache_flag' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:178: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst fs/nfs/enfs/enfs_multipath.c:315:5: warning: no previous prototype for function 'enfs_configure_xprt_to_clnt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:349:6: warning: no previous prototype for function 'enfs_cmp_addrs' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:366:6: warning: no previous prototype for function 'enfs_xprt_addrs_is_same' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:385:6: warning: no previous prototype for function 'enfs_already_have_xprt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:582:6: warning: variable 'link_count' set but not used [-Wunused-but-set-variable] fs/nfs/enfs/enfs_multipath.c:823:5: warning: no previous prototype for function 'enfs_multipath_create_thread' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:919:6: warning: no previous prototype for function 'enfs_create_multi_xprt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath.c:971:6: warning: no previous prototype for function 'enfs_release_rpc_clnt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:154:5: warning: no previous prototype for function 'enfs_parse_ip_single' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:201:7: warning: no previous prototype for function 'nfs_multipath_parse_ip_list_get_cursor' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:20:6: warning: no previous prototype for function 'nfs_multipath_parse_ip_ipv6_add' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:228:6: warning: no previous prototype for function 'enfs_valid_ip' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:240:5: warning: no previous prototype for function 'nfs_multipath_parse_ip_list' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:353:6: warning: no previous prototype for function 'isInvalidDns' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:379:5: warning: no previous prototype for function 'nfs_multipath_parse_dns_list' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:423:5: warning: no previous prototype for function 'parse_remote_type' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:463:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check_ipv4_valid' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:470:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check_ipv6_valid' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:486:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check_ip_valid' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:502:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check_valid' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:528:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check_duplicate' [-Wmissing-prototypes] fs/nfs/enfs/enfs_multipath_parse.c:553:5: warning: no previous prototype for function 'nfs_multipath_parse_options_check' [-Wmissing-prototypes] fs/nfs/enfs/enfs_proc.c:547:30: warning: unused variable 'shardview_proc_fops' [-Wunused-const-variable] fs/nfs/enfs/enfs_remount.c:101:6: warning: no previous prototype for function 'enfs_clnt_delete_obsolete_xprts' [-Wmissing-prototypes] fs/nfs/enfs/enfs_roundrobin.c:108:1: warning: no previous prototype for function 'enfs_lb_switch_find_first_active_xprt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_roundrobin.c:119:18: warning: no previous prototype for function 'enfs_lb_switch_get_main_xprt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_roundrobin.c:169:18: warning: no previous prototype for function 'enfs_lb_get_singular_xprt' [-Wmissing-prototypes] fs/nfs/enfs/enfs_roundrobin.c:330:5: warning: no previous prototype for function 'enfs_lb_revert_policy' [-Wmissing-prototypes] fs/nfs/enfs/enfs_rpc_init.c:7:5: warning: no previous prototype for function 'enfs_rpc_init' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:180:5: warning: no previous prototype for function 'NfsExtendDecodeFsShard' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:265:5: warning: no previous prototype for function 'NfsExtendDecodeLifInfo' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:533:5: warning: no previous prototype for function 'EnfsExtendDecodePreCheck' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:601:5: warning: no previous prototype for function 'dorado_extend_route' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:662:6: warning: no previous prototype for function 'nego_enfs_version' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:947:6: warning: no previous prototype for function 'NfsExtendDnsQuerySetArgs' [-Wmissing-prototypes] fs/nfs/enfs/exten_call.c:958:6: warning: no previous prototype for function 'NfsExtendDnsQuerySetRes' [-Wmissing-prototypes] fs/nfs/enfs/failover_path.c:239: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst fs/nfs/enfs/pm_state.c:83:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable] fs/nfs/enfs/shard_route.c:257: warning: Function parameter or member '__list_name' not described in 'DEFINE_CLEAR_LIST_FUNC' fs/nfs/enfs/shard_route.c:257: warning: Function parameter or member '__struct_name' not described in 'DEFINE_CLEAR_LIST_FUNC' fs/nfs/enfs/shard_route.c:333: warning: Cannot understand * @return:0 for success,otherwise for failed fs/nfs/enfs_adapter.c:47:26: warning: no previous prototype for function 'nfs_multipath_router_get' [-Wmissing-prototypes] fs/nfs/enfs_adapter.c:63:6: warning: no previous prototype for function 'nfs_multipath_router_put' [-Wmissing-prototypes] fs/nfs/enfs_adapter.c:69:6: warning: no previous prototype for function 'is_valid_option' [-Wmissing-prototypes] fs/nfs/fs_context.c:374:26: warning: no previous prototype for function 'getNfsMultiPathOpt' [-Wmissing-prototypes] fs/proc/stat.c:227:17: warning: no previous prototype for function 'bpf_get_idle_time' [-Wmissing-prototypes] fs/proc/stat.c:232:17: warning: no previous prototype for function 'bpf_get_iowait_time' [-Wmissing-prototypes] fs/proc/stat.c:237:18: warning: no previous prototype for function 'bpf_show_all_irqs' [-Wmissing-prototypes] fs/resctrl/monitor.c:51: warning: Cannot understand * @closid_num_dirty_rmid The number of dirty RMID each CLOSID has. fs/xfs/libxfs/xfs_alloc.c:103:1: warning: no previous prototype for function 'xfs_ag_fixup_aside' [-Wmissing-prototypes] include/linux/fortify-string.h:507:4: warning: call to '__write_overflow_field' declared with 'warning' attribute: detected write beyond size of field (1st parameter); maybe use struct_group()? [-Wattribute-warning] include/linux/fortify-string.h:597:4: warning: call to '__write_overflow_field' declared with 'warning' attribute: detected write beyond size of field (1st parameter); maybe use struct_group()? [-Wattribute-warning] include/linux/syscalls.h:954:54: warning: declaration of 'struct xsched_attr' will not be visible outside of this function [-Wvisibility] kernel/bpf/mprog.c:420:13: warning: default initialization of an object of type 'typeof ((attr->query.prog_ids))' (aka 'const unsigned long long') leaves the object uninitialized [-Wdefault-const-init-var-unsafe] kernel/bpf/mprog.c:421:16: warning: default initialization of an object of type 'typeof ((attr->query.prog_attach_flags))' (aka 'const unsigned long long') leaves the object uninitialized [-Wdefault-const-init-var-unsafe] kernel/bpf/mprog.c:422:13: warning: default initialization of an object of type 'typeof ((attr->query.link_ids))' (aka 'const unsigned long long') leaves the object uninitialized [-Wdefault-const-init-var-unsafe] kernel/bpf/mprog.c:423:16: warning: default initialization of an object of type 'typeof ((attr->query.link_attach_flags))' (aka 'const unsigned long long') leaves the object uninitialized [-Wdefault-const-init-var-unsafe] kernel/cpu.c:2684: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst kernel/dma/contiguous.c:212:13: warning: no previous prototype for 'is_zhaoxin_kh40000' [-Wmissing-prototypes] kernel/dma/contiguous.c:212:13: warning: no previous prototype for function 'is_zhaoxin_kh40000' [-Wmissing-prototypes] kernel/fork.c:2233: warning: Excess function parameter 'pidfd' description in '__pidfd_prepare' kernel/fork.c:2233: warning: Function parameter or member 'ret' not described in '__pidfd_prepare' kernel/fork.c:2282: warning: Excess function parameter 'pidfd' description in 'pidfd_prepare' kernel/fork.c:2282: warning: Function parameter or member 'ret' not described in 'pidfd_prepare' kernel/irq/proc.c:338:13: warning: no previous prototype for function 'register_irqchip_proc' [-Wmissing-prototypes] kernel/irq/proc.c:339:13: warning: no previous prototype for function 'unregister_irqchip_proc' [-Wmissing-prototypes] kernel/locking/mutex.c:623:2: warning: variable 'ifs_clock' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] kernel/locking/mutex.c:623:6: warning: variable 'ifs_clock' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] kernel/power/swap.c:1572: warning: Excess function parameter 'exclusive' description in 'swsusp_close' kernel/sched/core.c:11465:5: warning: no previous prototype for function 'tg_set_dynamic_affinity_mode' [-Wmissing-prototypes] kernel/sched/core.c:11506:5: warning: no previous prototype for function 'tg_set_affinity_period' [-Wmissing-prototypes] kernel/sched/core.c:11520:5: warning: no previous prototype for function 'tg_get_affinity_period' [-Wmissing-prototypes] kernel/sched/debug.c:102:12: warning: no previous prototype for 'is_prefer_numa' [-Wmissing-prototypes] kernel/xsched/cfs.c:108: warning: Excess function parameter 'gxcu' description in 'xg_update' kernel/xsched/cfs.c:108: warning: Function parameter or member 'task_delta' not described in 'xg_update' kernel/xsched/cfs.c:108: warning: Function parameter or member 'xg' not described in 'xg_update' kernel/xsched/cfs.c:22:6: warning: no previous prototype for function 'xs_rq_add' [-Wmissing-prototypes] kernel/xsched/cfs.c:233:6: warning: no previous prototype for function 'rq_init_fair' [-Wmissing-prototypes] kernel/xsched/cfs.c:238:6: warning: no previous prototype for function 'xse_init_fair' [-Wmissing-prototypes] kernel/xsched/cfs.c:243:6: warning: no previous prototype for function 'xse_deinit_fair' [-Wmissing-prototypes] kernel/xsched/cfs.c:45:6: warning: no previous prototype for function 'xs_rq_remove' [-Wmissing-prototypes] kernel/xsched/cfs.c:56: warning: Function parameter or member 'new_xrt' not described in 'xs_cfs_rq_update' kernel/xsched/cfs.c:56: warning: Function parameter or member 'xse_cfs' not described in 'xs_cfs_rq_update' kernel/xsched/cgroup.c:402:6: warning: no previous prototype for function 'xcu_move_task' [-Wmissing-prototypes] kernel/xsched/cgroup.c:65: warning: Cannot understand * @brief Initialize the core components of an xsched_group. kernel/xsched/core.c:189:5: warning: no previous prototype for 'xsched_xse_set_class' [-Wmissing-prototypes] kernel/xsched/core.c:189:5: warning: no previous prototype for function 'xsched_xse_set_class' [-Wmissing-prototypes] kernel/xsched/core.c:515:12: warning: no previous prototype for 'xsched_sched_init' [-Wmissing-prototypes] kernel/xsched/core.c:515:12: warning: no previous prototype for function 'xsched_sched_init' [-Wmissing-prototypes] kernel/xsched/rt.c:122:6: warning: no previous prototype for 'rq_init_rt' [-Wmissing-prototypes] kernel/xsched/rt.c:122:6: warning: no previous prototype for function 'rq_init_rt' [-Wmissing-prototypes] kernel/xsched/rt.c:133:6: warning: no previous prototype for 'xse_init_rt' [-Wmissing-prototypes] kernel/xsched/rt.c:133:6: warning: no previous prototype for function 'xse_init_rt' [-Wmissing-prototypes] kernel/xsched/rt.c:144:6: warning: no previous prototype for 'xse_deinit_rt' [-Wmissing-prototypes] kernel/xsched/rt.c:144:6: warning: no previous prototype for function 'xse_deinit_rt' [-Wmissing-prototypes] kernel/xsched/vstream.c:663:1: error: conflicting types for 'sys_xsched_setattr' kernel/xsched/vstream.c:668:1: error: conflicting types for 'sys_xsched_getattr' kernel/xsched/vstream.c:98:19: warning: no previous prototype for 'xcu_find' [-Wmissing-prototypes] kernel/xsched/vstream.c:98:19: warning: no previous prototype for function 'xcu_find' [-Wmissing-prototypes] lib/../mm/internal.h:1508:55: warning: diagnostic behavior may be improved by adding the 'format(printf, 2, 0)' attribute to the declaration of 'shrinker_debugfs_name_alloc' [-Wmissing-format-attribute] mm/damon/../internal.h:1508:55: warning: diagnostic behavior may be improved by adding the 'format(printf, 2, 0)' attribute to the declaration of 'shrinker_debugfs_name_alloc' [-Wmissing-format-attribute] mm/gmem.c:383:13: warning: unused variable 'nid' [-Wunused-variable] mm/gmem.c:383:6: warning: unused variable 'nid' [-Wunused-variable] mm/gmem_phys.c:398:19: warning: no previous prototype for function 'gm_evict_page' [-Wmissing-prototypes] mm/internal.h:1508:55: warning: diagnostic behavior may be improved by adding the 'format(printf, 2, 0)' attribute to the declaration of 'shrinker_debugfs_name_alloc' [-Wmissing-format-attribute] mm/madvise.c:285:6: warning: no previous prototype for 'force_swapin_vma' [-Wmissing-prototypes] mm/madvise.c:285:6: warning: no previous prototype for function 'force_swapin_vma' [-Wmissing-prototypes] mm/memblock.c:1444:20: warning: no previous prototype for 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes] mm/memblock.c:1444:20: warning: no previous prototype for function 'memblock_alloc_range_nid_flags' [-Wmissing-prototypes] mm/memblock.c:1611: warning: expecting prototype for memblock_alloc_internal(). Prototype was for __memblock_alloc_internal() instead mm/memcontrol.c:4848:12: warning: 'mem_cgroup_check_swap_for_v1' defined but not used [-Wunused-function] mm/memory.c:2802:5: warning: no previous prototype for '__remap_pfn_range' [-Wmissing-prototypes] mm/memory.c:2802:5: warning: no previous prototype for function '__remap_pfn_range' [-Wmissing-prototypes] mm/memory.c:2805: warning: Function parameter or member 'page_shift' not described in '__remap_pfn_range' mm/memory.c:2805: warning: expecting prototype for remap_pfn_range(). Prototype was for __remap_pfn_range() instead mm/mempolicy.c:1145:25: warning: variable 'vma' set but not used [-Wunused-but-set-variable] mm/mempolicy.c:1145:32: warning: variable 'vma' set but not used [-Wunused-but-set-variable] mm/shrinker.c:699:53: warning: diagnostic behavior may be improved by adding the 'format(printf, 2, 3)' attribute to the declaration of 'shrinker_alloc' [-Wmissing-format-attribute] net/ipv4/tcp_comp.c:740:6: warning: no previous prototype for function 'comp_stream_read' [-Wmissing-prototypes] net/ipv4/tcp_comp.c:779:6: warning: no previous prototype for function 'comp_setup_strp' [-Wmissing-prototypes] net/ipv4/tcp_output.c:1371:12: warning: variable 'tcp_hdr_rsrvd_4b' set but not used [-Wunused-but-set-variable] net/ipv4/tcp_output.c:1371:5: warning: variable 'tcp_hdr_rsrvd_4b' set but not used [-Wunused-but-set-variable] Error/Warning ids grouped by kconfigs: recent_errors |-- arm64-allmodconfig | |-- arch-arm64-kernel-xcall-xcall.c:warning:address-of-array-((struct-xcall_info-)task-xinfo)-xcall_enable-will-always-evaluate-to-true | |-- block-blk-cgroup.c:warning:no-previous-prototype-for-function-bpf_blkcg_get_dev_iostat | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_calc_budget | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_done | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-firmware-uvb-cis-cis_info_process.c:warning:expecting-prototype-for-cis_call().-Prototype-was-for-cis_call_by_uvb()-instead | |-- drivers-firmware-uvb-cis-uvb_info_process.c:warning:Cannot-understand-Calculate-checksum-in-4bytes-if-size-not-aligned-with-4bytes-padding-with-. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Change-the-value-structure-with-index-move-the-pointer-to-the-data-indicated-by-index | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Change-value-structure-by-index-in-a-list-the-name-will-not-be-changed | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Get-table-in-the-value-structure. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Internal-function-get-data-pointer-by-path-and-type. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Search-all-od-file-in-the-root-input-value-path-output-the-value-structure-contains-value-info. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Search-one-od-file-input-value-path-output-the-value-structure-contains-value-info | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-list-from-od-root-will-return-a-list-info-structure. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-ubios-od-value-struct-from-od-root-according-to-the-path | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-pointer-from-table-according-name-and-row-will-check-type-first. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-s-offset-in-row-of-table-will-check-type-first. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-structure-from-list-by-index. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-next-value-of-a-list. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-table-information-like-row-colomn-sub-types-.etc. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Search-and-match-one-value-name-return-the-pointer-of-value-structrue-if-matched. | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-Only-calculate-the-valid-data-region | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-brief-Get-a-name-value-structrue-by-the-data-pointer | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-brief-Search-all-pointer-in-od-root-return-the-specific-od-file-matched-the-input-name. | |-- drivers-iommu-hisilicon-flush.c:warning:stack-frame-size-()-exceeds-limit-()-in-ummu_tlbi_range | |-- drivers-iommu-hisilicon-ummu_main.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_main.c:warning:variable-vlnctrl-set-but-not-used | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_ptp.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_sriov.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-platform-surface-surface3_power.c:warning:snprintf-will-always-be-truncated-specified-size-is-but-format-string-expands-to-at-least | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- drivers-spmi-spmi-pmic-arb.c:warning:Function-parameter-or-member-core-not-described-in-spmi_pmic_arb | |-- drivers-xcu-xcu_group.c:warning:no-previous-prototype-for-function-__xcu_group_attach | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-nfs-enfs-dns_process.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_dns_process_ip | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_for_each | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_domain_inc | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_iter_nfs_clnt | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_quick_sort | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_server_query_dns | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_swap_name_cache | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-enfs_update_domain_name | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-ip_list_append | |-- fs-nfs-enfs-dns_process.c:warning:no-previous-prototype-for-function-query_dns_each_name | |-- fs-nfs-enfs-enfs_config.c:warning:no-previous-prototype-for-function-enfs_glob_match | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_clean_server_lookup_cache_flag | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_timer_init | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_update_switch | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_lookupcache_workqueue_init | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_query_lookup_cache_pre_check | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-enfs_update_lookup_cache_flag_to_server | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_add_work | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_execute_work | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_loop_rpclnt | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_routine | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_start | |-- fs-nfs-enfs-enfs_lookup_cache.c:warning:no-previous-prototype-for-function-lookupcache_workqueue_fini | |-- fs-nfs-enfs-enfs_multipath.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_already_have_xprt | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_cmp_addrs | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_configure_xprt_to_clnt | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_create_multi_xprt | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_multipath_create_thread | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_release_rpc_clnt | |-- fs-nfs-enfs-enfs_multipath.c:warning:no-previous-prototype-for-function-enfs_xprt_addrs_is_same | |-- fs-nfs-enfs-enfs_multipath.c:warning:variable-link_count-set-but-not-used | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_parse_ip_single | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-enfs_valid_ip | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-isInvalidDns | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_dns_list | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_ipv6_add | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_ip_list_get_cursor | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_duplicate | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ip_valid | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv4_valid | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_ipv6_valid | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-nfs_multipath_parse_options_check_valid | |-- fs-nfs-enfs-enfs_multipath_parse.c:warning:no-previous-prototype-for-function-parse_remote_type | |-- fs-nfs-enfs-enfs_proc.c:warning:unused-variable-shardview_proc_fops | |-- fs-nfs-enfs-enfs_remount.c:warning:no-previous-prototype-for-function-enfs_clnt_delete_obsolete_xprts | |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_get_singular_xprt | |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_revert_policy | |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_find_first_active_xprt | |-- fs-nfs-enfs-enfs_roundrobin.c:warning:no-previous-prototype-for-function-enfs_lb_switch_get_main_xprt | |-- fs-nfs-enfs-enfs_rpc_init.c:warning:no-previous-prototype-for-function-enfs_rpc_init | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-EnfsExtendDecodePreCheck | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeFsShard | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDecodeLifInfo | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetArgs | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-NfsExtendDnsQuerySetRes | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-dorado_extend_route | |-- fs-nfs-enfs-exten_call.c:warning:no-previous-prototype-for-function-nego_enfs_version | |-- fs-nfs-enfs-failover_path.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- fs-nfs-enfs-pm_state.c:warning:variable-ret-set-but-not-used | |-- fs-nfs-enfs-shard_route.c:warning:Cannot-understand-return-for-success-otherwise-for-failed | |-- fs-nfs-enfs-shard_route.c:warning:Function-parameter-or-member-__list_name-not-described-in-DEFINE_CLEAR_LIST_FUNC | |-- fs-nfs-enfs-shard_route.c:warning:Function-parameter-or-member-__struct_name-not-described-in-DEFINE_CLEAR_LIST_FUNC | |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-is_valid_option | |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_get | |-- fs-nfs-enfs_adapter.c:warning:no-previous-prototype-for-function-nfs_multipath_router_put | |-- fs-nfs-fs_context.c:warning:no-previous-prototype-for-function-getNfsMultiPathOpt | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_idle_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_iowait_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_show_all_irqs | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_get_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_dynamic_affinity_mode | |-- kernel-xsched-cfs.c:warning:Excess-function-parameter-gxcu-description-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-new_xrt-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-task_delta-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xg-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xse_cfs-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-rq_init_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_add | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_remove | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_deinit_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_init_fair | |-- kernel-xsched-cgroup.c:warning:Cannot-understand-brief-Initialize-the-core-components-of-an-xsched_group. | |-- kernel-xsched-cgroup.c:warning:no-previous-prototype-for-function-xcu_move_task | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_sched_init | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_xse_set_class | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-rq_init_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_deinit_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_init_rt | |-- kernel-xsched-vstream.c:warning:no-previous-prototype-for-function-xcu_find | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- mm-mempolicy.c:warning:variable-vma-set-but-not-used |-- arm64-allnoconfig | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-irqchip-irq-gic-v3.c:warning:no-previous-prototype-for-gic_irq_set_prio | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | `-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range |-- arm64-defconfig | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-acpi-pptt.c:warning:no-previous-prototype-for-acpi_pptt_for_each_container | |-- drivers-irqchip-irq-gic-v3.c:warning:no-previous-prototype-for-gic_get_ipiv_status | |-- drivers-media-platform-renesas-vsp1-vsp1_histo.c:warning:histo-directive-output-may-be-truncated-writing-bytes-into-a-region-of-size-between-and | |-- drivers-net-ethernet-cavium-thunder-thunder_bgx.c:warning:d-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size | |-- drivers-net-ethernet-hisilicon-hns3-hns3pf-hclge_tm.c:warning:no-previous-prototype-for-hclge_tm_vf_tc_dwrr_cfg | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-spmi-spmi-pmic-arb.c:warning:Function-parameter-or-member-core-not-described-in-spmi_pmic_arb | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- arm64-randconfig-001-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-livepatch-core.c:warning:bad-line: | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- mm-mempolicy.c:warning:variable-vma-set-but-not-used |-- arm64-randconfig-002-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-cpufreq-cppc_cpufreq.c:error:incomplete-definition-of-type-struct-fb_ctr_pair | |-- drivers-platform-surface-surface3_power.c:warning:snprintf-will-always-be-truncated-specified-size-is-but-format-string-expands-to-at-least | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | `-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range |-- arm64-randconfig-003-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- lib-..-mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- mm-shrinker.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_alloc |-- arm64-randconfig-r113-20251213 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Change-the-value-structure-with-index-move-the-pointer-to-the-data-indicated-by-index | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Change-value-structure-by-index-in-a-list-the-name-will-not-be-changed | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Get-table-in-the-value-structure. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Internal-function-get-data-pointer-by-path-and-type. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Search-all-od-file-in-the-root-input-value-path-output-the-value-structure-contains-value-info. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-Search-one-od-file-input-value-path-output-the-value-structure-contains-value-info | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-list-from-od-root-will-return-a-list-info-structure. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-ubios-od-value-struct-from-od-root-according-to-the-path | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-pointer-from-table-according-name-and-row-will-check-type-first. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-s-offset-in-row-of-table-will-check-type-first. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-a-value-structure-from-list-by-index. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-next-value-of-a-list. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Get-table-information-like-row-colomn-sub-types-.etc. | |-- drivers-firmware-uvb-odf-odf_data.c:warning:Cannot-understand-brief-Search-and-match-one-value-name-return-the-pointer-of-value-structrue-if-matched. | |-- drivers-firmware-uvb-odf-odf_get_fdt.c:sparse:sparse:incorrect-type-in-argument-(different-base-types)-expected-restricted-__be32-const-usertype-p-got-unsigned-int-const-usertype | |-- drivers-firmware-uvb-odf-odf_get_fdt.c:warning:no-previous-prototype-for-odf_get_fdt_ubiostbl | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-Only-calculate-the-valid-data-region | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-brief-Get-a-name-value-structrue-by-the-data-pointer | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:Cannot-understand-brief-Search-all-pointer-in-od-root-return-the-specific-od-file-matched-the-input-name. | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-is_od_file_valid | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-is_od_root_valid | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_checksum | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_get_od_file | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_get_vs_by_pointer | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_is_checksum_ok | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_read16 | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_read32 | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_read64 | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_read8 | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_separate_name | |-- drivers-firmware-uvb-odf-odf_helper.c:warning:no-previous-prototype-for-odf_update_checksum | |-- drivers-firmware-uvb-odf-odf_trans.c:error:MEMREMAP_WB-undeclared-(first-use-in-this-function) | |-- drivers-firmware-uvb-odf-odf_trans.c:error:implicit-declaration-of-function-memremap | |-- drivers-firmware-uvb-odf-odf_trans.c:error:implicit-declaration-of-function-memunmap | |-- drivers-firmware-uvb-odf-odf_trans.c:warning:no-previous-prototype-for-free_cis_info | |-- drivers-irqchip-irq-gic-v3.c:warning:no-previous-prototype-for-gic_irq_set_prio | |-- drivers-pmdomain-bcm-bcm-pmb.c:sparse:sparse:restricted-__be32-degrades-to-integer | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- drivers-spmi-spmi-pmic-arb.c:warning:Function-parameter-or-member-core-not-described-in-spmi_pmic_arb | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-noderef-__user-from-got-void | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_config_device-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_create_jetty-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_create_jfc-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_create_jfr-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_create_jfs-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_destroy_jetty-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_destroy_jfc-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_destroy_jfr-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_destroy_jfs-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_dev_ref_get-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_dev_ref_put-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_query_device_status-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:sparse:sparse:symbol-ubagg_user_ctl-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_config_device | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_create_jetty | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_create_jfc | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_create_jfr | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_create_jfs | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_destroy_jetty | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_destroy_jfc | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_destroy_jfr | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_destroy_jfs | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_dev_ref_get | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_dev_ref_put | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_query_device_status | |-- drivers-ub-urma-ubagg-ubagg_ioctl.c:warning:no-previous-prototype-for-ubagg_user_ctl | |-- drivers-ub-urma-ubcore-net-ubcore_session.c:sparse:sparse:symbol-session_ctx-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-net-ubcore_sock.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-restricted-__be32-usertype-s_addr-got-unsigned-int-usertype-addr | |-- drivers-ub-urma-ubcore-net-ubcore_sock.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-restricted-__poll_t-usertype-_key-got-int | |-- drivers-ub-urma-ubcore-net-ubcore_sock.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-usertype-addr-got-restricted-__be32-usertype-s_addr | |-- drivers-ub-urma-ubcore-net-ubcore_sock.c:sparse:sparse:restricted-__be32-degrades-to-integer | |-- drivers-ub-urma-ubcore-net-ubcore_sock.c:sparse:sparse:restricted-__poll_t-degrades-to-integer | |-- drivers-ub-urma-ubcore-ubcm-ub_cm.c:warning:g_ubcm_ops-defined-but-not-used | |-- drivers-ub-urma-ubcore-ubcm-ubcm_genl.c:sparse:sparse:symbol-g_ubcm_genl_family-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:sparse:sparse:symbol-ubmad_create_rt_work-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:sparse:sparse:symbol-ubmad_post_send_conn_ack-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:sparse:sparse:symbol-ubmad_process_rx_msn-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:sparse:sparse:symbol-ubmad_repost_send_conn_data-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:warning:no-previous-prototype-for-ubmad_create_rt_work | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:warning:no-previous-prototype-for-ubmad_post_send_conn_ack | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:warning:no-previous-prototype-for-ubmad_process_rx_msn | |-- drivers-ub-urma-ubcore-ubcm-ubmad_datapath.c:warning:no-previous-prototype-for-ubmad_repost_send_conn_data | |-- drivers-ub-urma-ubcore-ubcore_cdev_file.c:sparse:sparse:incompatible-types-in-comparison-expression-(different-address-spaces): | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-args_addr-got-void-noderef-__user | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-args_addr-got-void-noderef-__user | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:sparse:sparse:symbol-ubcore_tlv_append-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:sparse:sparse:symbol-ubcore_tlv_parse-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:warning:no-previous-prototype-for-ubcore_tlv_append | |-- drivers-ub-urma-ubcore-ubcore_cmd_tlv.c:warning:no-previous-prototype-for-ubcore_tlv_parse | |-- drivers-ub-urma-ubcore-ubcore_connect_adapter.c:sparse:sparse:symbol-ubcore_find_remove_ex_tp_info-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_connect_adapter.c:warning:no-previous-prototype-for-ubcore_find_remove_ex_tp_info | |-- drivers-ub-urma-ubcore-ubcore_device.c:sparse:sparse:symbol-ubcore_find_mue_device_legacy-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_dispatch_async_event | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_dispatch_mgmt_event | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_find_mue_device_legacy | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_free_eid_list | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_get_eid_list | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_register_device | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_stop_requests | |-- drivers-ub-urma-ubcore-ubcore_device.c:warning:no-previous-prototype-for-ubcore_unregister_device | |-- drivers-ub-urma-ubcore-ubcore_msg.c:sparse:sparse:symbol-ubcore_asyn_send_ue2mue_msg-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_msg.c:warning:no-previous-prototype-for-ubcore_asyn_send_ue2mue_msg | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_alloc_token_id | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_free_token_id | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_import_seg | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_register_seg | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_unimport_seg | |-- drivers-ub-urma-ubcore-ubcore_segment.c:warning:no-previous-prototype-for-ubcore_unregister_seg | |-- drivers-ub-urma-ubcore-ubcore_tp.c:warning:no-previous-prototype-for-ubcore_get_tp_attr | |-- drivers-ub-urma-ubcore-ubcore_tp.c:warning:no-previous-prototype-for-ubcore_get_tp_list | |-- drivers-ub-urma-ubcore-ubcore_tp.c:warning:no-previous-prototype-for-ubcore_set_tp_attr | |-- drivers-ub-urma-ubcore-ubcore_tp_table.c:warning:no-previous-prototype-for-ubcore_destroy_tp | |-- drivers-ub-urma-ubcore-ubcore_vtp.c:sparse:sparse:symbol-ubcore_add_vtp_work_list-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_vtp.c:sparse:sparse:symbol-ubcore_del_vtp_work_list-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-ubcore-ubcore_vtp.c:warning:no-previous-prototype-for-ubcore_add_vtp_work_list | |-- drivers-ub-urma-ubcore-ubcore_vtp.c:warning:no-previous-prototype-for-ubcore_del_vtp_work_list | |-- drivers-ub-urma-uburma-uburma_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-noderef-__user-from-got-void-const-args_addr | |-- drivers-ub-urma-uburma-uburma_cmd.h:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-void-args_addr | |-- drivers-ub-urma-uburma-uburma_cmd_tlv.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-args_addr-got-void-noderef-__user | |-- drivers-ub-urma-uburma-uburma_cmd_tlv.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-args_addr-got-void-noderef-__user | |-- drivers-ub-urma-uburma-uburma_dev_ops.c:sparse:sparse:symbol-uburma_register_mmu-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-uburma-uburma_dev_ops.c:sparse:sparse:symbol-uburma_unregister_mmu-was-not-declared.-Should-it-be-static | |-- drivers-ub-urma-uburma-uburma_dev_ops.c:warning:no-previous-prototype-for-uburma_register_mmu | |-- drivers-ub-urma-uburma-uburma_dev_ops.c:warning:no-previous-prototype-for-uburma_unregister_mmu | |-- drivers-ub-urma-uburma-uburma_event.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-const-noderef-__user-from-got-struct-uburma_cmd_hdr | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:sparse:sparse:symbol-hisi_oom_recover-was-not-declared.-Should-it-be-static | |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- mm-mempolicy.c:warning:variable-vma-set-but-not-used |-- loongarch-allmodconfig | |-- block-blk-cgroup.c:warning:no-previous-prototype-for-function-bpf_blkcg_get_dev_iostat | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_calc_budget | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_done | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_main.c:warning:variable-vlnctrl-set-but-not-used | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_ptp.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_sriov.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-platform-surface-surface3_power.c:warning:snprintf-will-always-be-truncated-specified-size-is-but-format-string-expands-to-at-least | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- drivers-spmi-spmi-pmic-arb.c:warning:Function-parameter-or-member-core-not-described-in-spmi_pmic_arb | |-- drivers-xcu-xcu_group.c:warning:no-previous-prototype-for-function-__xcu_group_attach | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_idle_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_iowait_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_show_all_irqs | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-livepatch-core.c:warning:bad-line: | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_get_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_dynamic_affinity_mode | |-- kernel-xsched-cfs.c:warning:Excess-function-parameter-gxcu-description-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-new_xrt-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-task_delta-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xg-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xse_cfs-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-rq_init_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_add | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_remove | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_deinit_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_init_fair | |-- kernel-xsched-cgroup.c:warning:Cannot-understand-brief-Initialize-the-core-components-of-an-xsched_group. | |-- kernel-xsched-cgroup.c:warning:no-previous-prototype-for-function-xcu_move_task | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_sched_init | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_xse_set_class | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-rq_init_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_deinit_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_init_rt | |-- kernel-xsched-vstream.c:warning:no-previous-prototype-for-function-xcu_find | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- mm-mempolicy.c:warning:variable-vma-set-but-not-used |-- loongarch-allnoconfig | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- include-linux-syscalls.h:warning:declaration-of-struct-xsched_attr-will-not-be-visible-outside-of-this-function | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_getattr | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_setattr | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | `-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range |-- loongarch-allyesconfig | |-- block-blk-cgroup.c:warning:no-previous-prototype-for-function-bpf_blkcg_get_dev_iostat | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_calc_budget | |-- block-blk-ioinf.c:warning:no-previous-prototype-for-function-ioinf_done | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-net-ethernet-huawei-bma-kbox_drv-kbox_panic.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-kbox_dump_painc_info | |-- drivers-net-ethernet-huawei-bma-kbox_drv-kbox_printk.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-kbox_dump_printk_info | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_main.c:warning:variable-vlnctrl-set-but-not-used | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_ptp.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_sriov.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-platform-surface-surface3_power.c:warning:snprintf-will-always-be-truncated-specified-size-is-but-format-string-expands-to-at-least | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- drivers-spmi-spmi-pmic-arb.c:warning:Function-parameter-or-member-core-not-described-in-spmi_pmic_arb | |-- drivers-xcu-xcu_group.c:warning:no-previous-prototype-for-function-__xcu_group_attach | |-- fs-mfs-data.c:warning:default-initialization-of-an-object-of-type-struct-vm_area_struct-with-const-member-leaves-the-object-uninitialized | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_idle_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_get_iowait_time | |-- fs-proc-stat.c:warning:no-previous-prototype-for-function-bpf_show_all_irqs | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-livepatch-core.c:warning:bad-line: | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_get_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_affinity_period | |-- kernel-sched-core.c:warning:no-previous-prototype-for-function-tg_set_dynamic_affinity_mode | |-- kernel-xsched-cfs.c:warning:Excess-function-parameter-gxcu-description-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-new_xrt-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-task_delta-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xg-not-described-in-xg_update | |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xse_cfs-not-described-in-xs_cfs_rq_update | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-rq_init_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_add | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_remove | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_deinit_fair | |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_init_fair | |-- kernel-xsched-cgroup.c:warning:Cannot-understand-brief-Initialize-the-core-components-of-an-xsched_group. | |-- kernel-xsched-cgroup.c:warning:no-previous-prototype-for-function-xcu_move_task | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_sched_init | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_xse_set_class | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-rq_init_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_deinit_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_init_rt | |-- kernel-xsched-vstream.c:warning:no-previous-prototype-for-function-xcu_find | |-- lib-..-mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-damon-..-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | |-- mm-shrinker.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_alloc | |-- net-ipv4-tcp_comp.c:warning:no-previous-prototype-for-function-comp_setup_strp | `-- net-ipv4-tcp_comp.c:warning:no-previous-prototype-for-function-comp_stream_read |-- loongarch-defconfig | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_main.c:warning:variable-vlnctrl-set-but-not-used | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_ptp.c:warning:unannotated-fall-through-between-switch-labels | |-- drivers-net-ethernet-wangxun-ngbe-ngbe_sriov.c:warning:unannotated-fall-through-between-switch-labels | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- include-linux-syscalls.h:warning:declaration-of-struct-xsched_attr-will-not-be-visible-outside-of-this-function | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-livepatch-core.c:warning:bad-line: | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_getattr | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_setattr | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- loongarch-randconfig-001-20251212 | |-- include-linux-syscalls.h:warning:declaration-of-struct-xsched_attr-will-not-be-visible-outside-of-this-function | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_getattr | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_setattr | |-- lib-..-mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- mm-shrinker.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_alloc |-- loongarch-randconfig-002-20251212 | |-- include-linux-syscalls.h:warning:declaration-of-struct-xsched_attr-will-not-be-visible-outside-of-this-function | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_getattr | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_setattr | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | `-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range |-- loongarch-randconfig-r071-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets | |-- include-linux-syscalls.h:warning:declaration-of-struct-xsched_attr-will-not-be-visible-outside-of-this-function | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.link_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_attach_flags))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-bpf-mprog.c:warning:default-initialization-of-an-object-of-type-typeof-((attr-query.prog_ids))-(aka-const-unsigned-long-long-)-leaves-the-object-uninitialized | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_getattr | |-- kernel-xsched-vstream.c:error:conflicting-types-for-sys_xsched_setattr | |-- lib-..-mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-internal.h:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_debugfs_name_alloc | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- mm-shrinker.c:warning:diagnostic-behavior-may-be-improved-by-adding-the-format(printf-)-attribute-to-the-declaration-of-shrinker_alloc |-- x86_64-allnoconfig | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | `-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range |-- x86_64-buildonly-randconfig-006-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-defconfig | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-001-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-media-radio-radio-si476x.c:warning:s-directive-output-may-be-truncated-writing-up-to-bytes-into-a-region-of-size | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-002-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-003-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-004-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-005-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-012-20251212 | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-013-20251212 | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-014-20251212 | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-015-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-gpu-drm-amd-amdgpu-amdgpu_mes.c:warning:s-directive-output-may-be-truncated-writing-between-and-bytes-into-a-region-of-size-between-and | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-016-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-071-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-072-20251212 | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-073-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-074-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-crypto-ccp-hygon-ccp-mdev.c:error:struct-device-has-no-member-named-numa_node | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-075-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-076-20251212 | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-101-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-crypto-ccp-hygon-csv-dev.c:warning:Function-parameter-or-member-api_minor-not-described-in-user_data_status | |-- drivers-crypto-ccp-hygon-psp-dev.c:warning:no-previous-prototype-for-function-atomic64_exchange | |-- drivers-crypto-ccp-hygon-vpsp.c:warning:no-previous-prototype-for-function-vpsp_set_default_vid_permission | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-102-20251212 | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-103-20251212 | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:warning:no-previous-prototype-for-function-gm_evict_page | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-104-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-121-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-noderef-__user-to-got-void | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:variable-ring_mgt-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-enum-gm_ret-ret-got-restricted-vm_fault_t | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-gmem_phys.c:sparse:sparse:symbol-gm_evict_page-was-not-declared.-Should-it-be-static | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-122-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all | |-- drivers-crypto-ccp-hygon-ccp-mdev.c:error:no-member-named-numa_node-in-struct-device | |-- drivers-crypto-ccp-hygon-psp-dev.c:warning:no-previous-prototype-for-function-atomic64_exchange | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:variable-ring_mgt-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag | |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc | |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc | |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true | |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags | |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-123-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:variable-ring_mgt-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-enum-gm_ret-ret-got-restricted-vm_fault_t | |-- mm-gmem_phys.c:sparse:sparse:symbol-gm_evict_page-was-not-declared.-Should-it-be-static | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-161-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-block-drbd-drbd_bitmap.c:warning:Function-parameter-or-member-peer_device-not-described-in-drbd_bm_write | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-power-swap.c:warning:Excess-function-parameter-exclusive-description-in-swsusp_close | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-gmem.c:warning:unused-variable-nid | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-r061-20251212 | |-- block-genhd.c:warning:no-previous-prototype-for-part_stat_read_all | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ptp.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_ring.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_service.c:warning:variable-ring_mgt-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-sched-debug.c:warning:no-previous-prototype-for-is_prefer_numa | |-- mm-madvise.c:warning:no-previous-prototype-for-force_swapin_vma | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used |-- x86_64-randconfig-r122-20251213 | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets | |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets | |-- drivers-cpuinspect-sysfs.c:warning:no-previous-prototype-for-cpu_utility_show | |-- drivers-cpuinspect-sysfs.c:warning:no-previous-prototype-for-cpu_utility_store | |-- drivers-cpuinspect-sysfs.c:warning:no-previous-prototype-for-patrol_times_store | |-- drivers-cpuinspect-sysfs.c:warning:no-previous-prototype-for-start_patrol_store | |-- drivers-crypto-montage-tsse-tsse_dev_drv.c:sparse:sparse:symbol-dev_attr_tsse_image_load-was-not-declared.-Should-it-be-static | |-- drivers-crypto-montage-tsse-tsse_fw_service.c:sparse:sparse:cast-removes-address-space-__iomem-of-expression | |-- drivers-crypto-montage-tsse-tsse_fw_service.c:sparse:sparse:incorrect-type-in-argument-(different-address-spaces)-expected-void-volatile-noderef-__iomem-got-unsigned-char-usertype | |-- drivers-crypto-montage-tsse-tsse_vuart.c:sparse:sparse:cast-to-restricted-__le32 | |-- drivers-crypto-montage-tsse-tsse_vuart.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-int-value-got-restricted-__le32-usertype | |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- drivers-spi-spi-axi-spi-engine.c:warning:Function-parameter-or-member-p-not-described-in-spi_engine_message_state | |-- drivers-xcu-xcu_group.c:sparse:sparse:symbol-__xcu_group_attach-was-not-declared.-Should-it-be-static | |-- drivers-xcu-xcu_group.c:warning:no-previous-prototype-for-__xcu_group_attach | |-- fs-nfs-dir.c:warning:no-previous-prototype-for-nfs_check_have_lookup_cache_flag | |-- fs-resctrl-monitor.c:warning:Cannot-understand-closid_num_dirty_rmid-The-number-of-dirty-RMID-each-CLOSID-has. | |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst | |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-is_zhaoxin_kh40000 | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare | |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare | |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare | |-- kernel-xsched-core.c:sparse:sparse:symbol-xsched_sched_init-was-not-declared.-Should-it-be-static | |-- kernel-xsched-core.c:sparse:sparse:symbol-xsched_xse_set_class-was-not-declared.-Should-it-be-static | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-xsched_sched_init | |-- kernel-xsched-core.c:warning:no-previous-prototype-for-xsched_xse_set_class | |-- kernel-xsched-rt.c:sparse:sparse:symbol-rq_init_rt-was-not-declared.-Should-it-be-static | |-- kernel-xsched-rt.c:sparse:sparse:symbol-xse_deinit_rt-was-not-declared.-Should-it-be-static | |-- kernel-xsched-rt.c:sparse:sparse:symbol-xse_init_rt-was-not-declared.-Should-it-be-static | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-rq_init_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-xse_deinit_rt | |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-xse_init_rt | |-- kernel-xsched-vstream.c:sparse:sparse:symbol-xcu_find-was-not-declared.-Should-it-be-static | |-- kernel-xsched-vstream.c:warning:no-previous-prototype-for-xcu_find | |-- mm-gmem.c:sparse:sparse:incorrect-type-in-assignment-(different-base-types)-expected-unsigned-int-enum-gm_ret-ret-got-restricted-vm_fault_t | |-- mm-gmem_phys.c:sparse:sparse:symbol-gm_evict_page-was-not-declared.-Should-it-be-static | |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead | |-- mm-memblock.c:warning:no-previous-prototype-for-memblock_alloc_range_nid_flags | |-- mm-memcontrol.c:warning:mem_cgroup_check_swap_for_v1-defined-but-not-used | |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static | |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range | |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead | |-- mm-memory.c:warning:no-previous-prototype-for-__remap_pfn_range | |-- mm-mempolicy.c:warning:variable-vma-set-but-not-used | `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used `-- x86_64-randconfig-r134-20251213 |-- block-genhd.c:warning:no-previous-prototype-for-function-part_stat_read_all |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_data-description-in-pgp_parse_packets |-- crypto-asymmetric_keys-pgp_library.c:warning:Excess-function-parameter-_datalen-description-in-pgp_parse_packets |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-data-not-described-in-pgp_parse_packets |-- crypto-asymmetric_keys-pgp_library.c:warning:Function-parameter-or-member-datalen-not-described-in-pgp_parse_packets |-- drivers-net-ethernet-linkdata-sxe-base-log-sxe_log.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-linkdata-sxe-base-trace-sxe_trace.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_hw.c:error:no-previous-prototype-for-function-sxe_hw_link_speed_get-Werror-Wmissing-prototypes |-- drivers-net-ethernet-linkdata-sxe-sxepf-sxe_ipsec.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_hw.c:error:no-previous-prototype-for-function-sxevf_rx_rcv_ctl_configure-Werror-Wmissing-prototypes |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_main.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_monitor.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-linkdata-sxevf-sxevf-sxevf_netdev.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_common-nbl_common.c:warning:variable-node_num-set-but-not-used |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_core-nbl_dev_user.c:warning:variable-vfn-set-but-not-used |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_hw_leonis-nbl_flow_leonis.c:warning:variable-phy_ops-set-but-not-used |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_txrx.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- drivers-net-ethernet-nebula-matrix-nbl-nbl_hw-nbl_vsi.c:warning:variable-queue_mgt-set-but-not-used |-- drivers-pinctrl-zhaoxin-pinctrl-kx7000.c:warning:overlapping-comparisons-always-evaluate-to-true |-- drivers-pinctrl-zhaoxin-pinctrl-zhaoxin.c:warning:variable-value_back-set-but-not-used |-- drivers-xcu-xcu_group.c:sparse:sparse:symbol-__xcu_group_attach-was-not-declared.-Should-it-be-static |-- drivers-xcu-xcu_group.c:warning:no-previous-prototype-for-function-__xcu_group_attach |-- fs-nfs-dir.c:warning:no-previous-prototype-for-function-nfs_check_have_lookup_cache_flag |-- fs-xfs-libxfs-xfs_alloc.c:sparse:sparse:symbol-xfs_ag_fixup_aside-was-not-declared.-Should-it-be-static |-- fs-xfs-libxfs-xfs_alloc.c:warning:no-previous-prototype-for-function-xfs_ag_fixup_aside |-- include-linux-fortify-string.h:warning:call-to-__write_overflow_field-declared-with-warning-attribute:detected-write-beyond-size-of-field-(1st-parameter)-maybe-use-struct_group() |-- kernel-cpu.c:warning:This-comment-starts-with-but-isn-t-a-kernel-doc-comment.-Refer-Documentation-doc-guide-kernel-doc.rst |-- kernel-dma-contiguous.c:warning:no-previous-prototype-for-function-is_zhaoxin_kh40000 |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-__pidfd_prepare |-- kernel-fork.c:warning:Excess-function-parameter-pidfd-description-in-pidfd_prepare |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-__pidfd_prepare |-- kernel-fork.c:warning:Function-parameter-or-member-ret-not-described-in-pidfd_prepare |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-register_irqchip_proc |-- kernel-irq-proc.c:warning:no-previous-prototype-for-function-unregister_irqchip_proc |-- kernel-locking-mutex.c:warning:variable-ifs_clock-is-used-uninitialized-whenever-if-condition-is-true |-- kernel-xsched-cfs.c:sparse:sparse:symbol-rq_init_fair-was-not-declared.-Should-it-be-static |-- kernel-xsched-cfs.c:sparse:sparse:symbol-xs_rq_add-was-not-declared.-Should-it-be-static |-- kernel-xsched-cfs.c:sparse:sparse:symbol-xs_rq_remove-was-not-declared.-Should-it-be-static |-- kernel-xsched-cfs.c:sparse:sparse:symbol-xse_deinit_fair-was-not-declared.-Should-it-be-static |-- kernel-xsched-cfs.c:sparse:sparse:symbol-xse_init_fair-was-not-declared.-Should-it-be-static |-- kernel-xsched-cfs.c:warning:Excess-function-parameter-gxcu-description-in-xg_update |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-new_xrt-not-described-in-xs_cfs_rq_update |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-task_delta-not-described-in-xg_update |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xg-not-described-in-xg_update |-- kernel-xsched-cfs.c:warning:Function-parameter-or-member-xse_cfs-not-described-in-xs_cfs_rq_update |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-rq_init_fair |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_add |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xs_rq_remove |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_deinit_fair |-- kernel-xsched-cfs.c:warning:no-previous-prototype-for-function-xse_init_fair |-- kernel-xsched-cgroup.c:sparse:sparse:symbol-root_xcg-was-not-declared.-Should-it-be-static |-- kernel-xsched-cgroup.c:sparse:sparse:symbol-xcu_move_task-was-not-declared.-Should-it-be-static |-- kernel-xsched-cgroup.c:warning:Cannot-understand-brief-Initialize-the-core-components-of-an-xsched_group. |-- kernel-xsched-cgroup.c:warning:no-previous-prototype-for-function-xcu_move_task |-- kernel-xsched-core.c:sparse:sparse:symbol-xsched_sched_init-was-not-declared.-Should-it-be-static |-- kernel-xsched-core.c:sparse:sparse:symbol-xsched_xse_set_class-was-not-declared.-Should-it-be-static |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_sched_init |-- kernel-xsched-core.c:warning:no-previous-prototype-for-function-xsched_xse_set_class |-- kernel-xsched-rt.c:sparse:sparse:symbol-rq_init_rt-was-not-declared.-Should-it-be-static |-- kernel-xsched-rt.c:sparse:sparse:symbol-xse_deinit_rt-was-not-declared.-Should-it-be-static |-- kernel-xsched-rt.c:sparse:sparse:symbol-xse_init_rt-was-not-declared.-Should-it-be-static |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-rq_init_rt |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_deinit_rt |-- kernel-xsched-rt.c:warning:no-previous-prototype-for-function-xse_init_rt |-- kernel-xsched-vstream.c:sparse:sparse:symbol-xcu_find-was-not-declared.-Should-it-be-static |-- kernel-xsched-vstream.c:warning:no-previous-prototype-for-function-xcu_find |-- mm-madvise.c:warning:no-previous-prototype-for-function-force_swapin_vma |-- mm-memblock.c:warning:expecting-prototype-for-memblock_alloc_internal().-Prototype-was-for-__memblock_alloc_internal()-instead |-- mm-memblock.c:warning:no-previous-prototype-for-function-memblock_alloc_range_nid_flags |-- mm-memory.c:sparse:sparse:symbol-__remap_pfn_range-was-not-declared.-Should-it-be-static |-- mm-memory.c:warning:Function-parameter-or-member-page_shift-not-described-in-__remap_pfn_range |-- mm-memory.c:warning:expecting-prototype-for-remap_pfn_range().-Prototype-was-for-__remap_pfn_range()-instead |-- mm-memory.c:warning:no-previous-prototype-for-function-__remap_pfn_range `-- net-ipv4-tcp_output.c:warning:variable-tcp_hdr_rsrvd_4b-set-but-not-used elapsed time: 1461m configs tested: 41 configs skipped: 8 tested configs: arm64 allmodconfig clang-19 arm64 allnoconfig gcc-15.1.0 arm64 defconfig gcc-15.1.0 arm64 randconfig-001-20251212 clang-18 arm64 randconfig-002-20251212 clang-19 arm64 randconfig-003-20251212 clang-22 arm64 randconfig-004-20251212 gcc-5.5.0 loongarch allmodconfig clang-19 loongarch allnoconfig clang-22 loongarch defconfig clang-19 loongarch randconfig-001-20251212 clang-22 loongarch randconfig-002-20251212 clang-17 x86_64 allmodconfig clang-20 x86_64 allnoconfig clang-20 x86_64 allyesconfig clang-20 x86_64 buildonly-randconfig-001-20251212 clang-20 x86_64 buildonly-randconfig-002-20251212 clang-20 x86_64 buildonly-randconfig-003-20251212 clang-20 x86_64 buildonly-randconfig-004-20251212 clang-20 x86_64 buildonly-randconfig-005-20251212 gcc-14 x86_64 buildonly-randconfig-006-20251212 clang-20 x86_64 defconfig gcc-14 x86_64 randconfig-001-20251212 gcc-14 x86_64 randconfig-002-20251212 clang-20 x86_64 randconfig-003-20251212 clang-20 x86_64 randconfig-004-20251212 clang-20 x86_64 randconfig-005-20251212 clang-20 x86_64 randconfig-006-20251212 clang-20 x86_64 randconfig-011-20251212 clang-20 x86_64 randconfig-012-20251212 gcc-14 x86_64 randconfig-013-20251212 gcc-14 x86_64 randconfig-014-20251212 clang-20 x86_64 randconfig-015-20251212 gcc-14 x86_64 randconfig-016-20251212 clang-20 x86_64 randconfig-071-20251212 gcc-12 x86_64 randconfig-072-20251212 gcc-14 x86_64 randconfig-073-20251212 clang-20 x86_64 randconfig-074-20251212 gcc-14 x86_64 randconfig-075-20251212 clang-20 x86_64 randconfig-076-20251212 gcc-14 x86_64 rhel-9.4-rust clang-20 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6 3541/3541] drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:1214:5: warning: no previous prototype for 'hclge_tm_vf_tc_dwrr_cfg'
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 commit: bc47b7dc2b0180a0d6e7ad218e6c8f5e4fca07a9 [3541/3541] net: hns3: add support for vf multiple tcs config: arm64-defconfig (https://download.01.org/0day-ci/archive/20251213/202512131229.07COqzuf-lkp@…) compiler: aarch64-linux-gcc (GCC) 15.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131229.07COqzuf-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131229.07COqzuf-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:1214:5: warning: no previous prototype for 'hclge_tm_vf_tc_dwrr_cfg' [-Wmissing-prototypes] 1214 | int hclge_tm_vf_tc_dwrr_cfg(struct hclge_vport *vport) | ^~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:2357:5: warning: no previous prototype for 'hclge_mbx_set_vf_multi_tc' [-Wmissing-prototypes] 2357 | int hclge_mbx_set_vf_multi_tc(struct hclge_vport *vport, | ^~~~~~~~~~~~~~~~~~~~~~~~~ vim +/hclge_tm_vf_tc_dwrr_cfg +1214 drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c 1213 > 1214 int hclge_tm_vf_tc_dwrr_cfg(struct hclge_vport *vport) 1215 { 1216 struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo; 1217 struct hclge_dev *hdev = vport->back; 1218 struct hclge_pg_info *pg_info; 1219 u8 dwrr; 1220 int ret; 1221 u32 i; 1222 1223 for (i = 0; i < kinfo->tc_info.max_tc; i++) { 1224 pg_info = &hdev->tm_info.pg_info[hdev->tm_info.tc_info[i].pgid]; 1225 dwrr = i < kinfo->tc_info.num_tc ? pg_info->tc_dwrr[i] : 0; 1226 ret = hclge_tm_qs_weight_cfg(hdev, vport->qs_offset + i, dwrr); 1227 if (ret) 1228 return ret; 1229 } 1230 1231 return 0; 1232 } 1233 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6 3541/3541] drivers/crypto/montage/tsse/tsse_dev_drv.c:148:1: sparse: sparse: symbol 'dev_attr_tsse_image_load' was not declared. Should it be static?
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 commit: 7795623241fe9eb57352a09b27d06b5d4ff07071 [3541/3541] add firmware update function for Mont-TSSE config: x86_64-randconfig-r122-20251213 (https://download.01.org/0day-ci/archive/20251213/202512131145.YwV73bz7-lkp@…) compiler: gcc-14 (Debian 14.2.0-19) 14.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131145.YwV73bz7-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131145.YwV73bz7-lkp@intel.com/ sparse warnings: (new ones prefixed by >>) >> drivers/crypto/montage/tsse/tsse_dev_drv.c:148:1: sparse: sparse: symbol 'dev_attr_tsse_image_load' was not declared. Should it be static? vim +/dev_attr_tsse_image_load +148 drivers/crypto/montage/tsse/tsse_dev_drv.c 147 > 148 DEVICE_ATTR_WO(tsse_image_load); 149 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:openEuler-1.0-LTS 1941/1941] net/netfilter/nf_conntrack_core.c:1017: warning: Function parameter or member 'reply_hash' not described in 'nf_ct_resolve_clash'
by kernel test robot 13 Dec '25

13 Dec '25
Hi Florian, First bad commit (maybe != root cause): tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS head: df8d11fbcbb07177c2500e63d7f5a36063977596 commit: cc12c927ac504e99fc176ea49e85226b6aeadcd5 [1941/1941] netfilter: conntrack: allow insertion of clashing entries config: x86_64-rhel-9.4-rust (https://download.01.org/0day-ci/archive/20251213/202512131110.yshNLkZn-lkp@…) compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 6ec8c4351cfc1d0627d1633b02ea787bd29c77d8) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131110.yshNLkZn-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131110.yshNLkZn-lkp@intel.com/ All warnings (new ones prefixed by >>): In file included from net/netfilter/nf_conntrack_core.c:40: In file included from include/net/netfilter/nf_conntrack.h:25: In file included from include/linux/netfilter/nf_conntrack_proto_gre.h:5: In file included from include/net/gre.h:6: In file included from include/net/ip_tunnels.h:19: In file included from include/net/dst_cache.h:8: include/net/ip6_fib.h:228:10: warning: default initialization of an object of type 'typeof (f6i->expires)' (aka 'const unsigned long') leaves the object uninitialized [-Wdefault-const-init-var-unsafe] 228 | return time_after(jiffies, f6i->expires); | ^ include/linux/jiffies.h:107:3: note: expanded from macro 'time_after' 107 | typecheck(unsigned long, b) && \ | ^ include/linux/typecheck.h:11:12: note: expanded from macro 'typecheck' 11 | typeof(x) __dummy2; \ | ^ 1 warning generated. >> net/netfilter/nf_conntrack_core.c:1017: warning: Function parameter or member 'reply_hash' not described in 'nf_ct_resolve_clash' >> net/netfilter/nf_conntrack_core.c:1017: warning: Excess function parameter 'hash_reply' description in 'nf_ct_resolve_clash' vim +1017 net/netfilter/nf_conntrack_core.c cc12c927ac504e Florian Westphal 2023-11-02 980 6199b71796bcaa Florian Westphal 2023-11-02 981 /** 6199b71796bcaa Florian Westphal 2023-11-02 982 * nf_ct_resolve_clash - attempt to handle clash without packet drop 6199b71796bcaa Florian Westphal 2023-11-02 983 * 6199b71796bcaa Florian Westphal 2023-11-02 984 * @skb: skb that causes the clash 6199b71796bcaa Florian Westphal 2023-11-02 985 * @h: tuplehash of the clashing entry already in table cc12c927ac504e Florian Westphal 2023-11-02 986 * @hash_reply: hash slot for reply direction 6199b71796bcaa Florian Westphal 2023-11-02 987 * 6199b71796bcaa Florian Westphal 2023-11-02 988 * A conntrack entry can be inserted to the connection tracking table 6199b71796bcaa Florian Westphal 2023-11-02 989 * if there is no existing entry with an identical tuple. 6199b71796bcaa Florian Westphal 2023-11-02 990 * 6199b71796bcaa Florian Westphal 2023-11-02 991 * If there is one, @skb (and the assocated, unconfirmed conntrack) has 6199b71796bcaa Florian Westphal 2023-11-02 992 * to be dropped. In case @skb is retransmitted, next conntrack lookup 6199b71796bcaa Florian Westphal 2023-11-02 993 * will find the already-existing entry. 6199b71796bcaa Florian Westphal 2023-11-02 994 * 6199b71796bcaa Florian Westphal 2023-11-02 995 * The major problem with such packet drop is the extra delay added by 6199b71796bcaa Florian Westphal 2023-11-02 996 * the packet loss -- it will take some time for a retransmit to occur 6199b71796bcaa Florian Westphal 2023-11-02 997 * (or the sender to time out when waiting for a reply). 6199b71796bcaa Florian Westphal 2023-11-02 998 * 6199b71796bcaa Florian Westphal 2023-11-02 999 * This function attempts to handle the situation without packet drop. 6199b71796bcaa Florian Westphal 2023-11-02 1000 * 6199b71796bcaa Florian Westphal 2023-11-02 1001 * If @skb has no NAT transformation or if the colliding entries are 6199b71796bcaa Florian Westphal 2023-11-02 1002 * exactly the same, only the to-be-confirmed conntrack entry is discarded 6199b71796bcaa Florian Westphal 2023-11-02 1003 * and @skb is associated with the conntrack entry already in the table. 6199b71796bcaa Florian Westphal 2023-11-02 1004 * cc12c927ac504e Florian Westphal 2023-11-02 1005 * Failing that, the new, unconfirmed conntrack is still added to the table cc12c927ac504e Florian Westphal 2023-11-02 1006 * provided that the collision only occurs in the ORIGINAL direction. cc12c927ac504e Florian Westphal 2023-11-02 1007 * The new entry will be added after the existing one in the hash list, cc12c927ac504e Florian Westphal 2023-11-02 1008 * so packets in the ORIGINAL direction will continue to match the existing cc12c927ac504e Florian Westphal 2023-11-02 1009 * entry. The new entry will also have a fixed timeout so it expires -- cc12c927ac504e Florian Westphal 2023-11-02 1010 * due to the collision, it will not see bidirectional traffic. cc12c927ac504e Florian Westphal 2023-11-02 1011 * 6199b71796bcaa Florian Westphal 2023-11-02 1012 * Returns NF_DROP if the clash could not be resolved. 6199b71796bcaa Florian Westphal 2023-11-02 1013 */ 115dffa33ea6f5 Florian Westphal 2023-11-02 1014 static __cold noinline int cc12c927ac504e Florian Westphal 2023-11-02 1015 nf_ct_resolve_clash(struct sk_buff *skb, struct nf_conntrack_tuple_hash *h, cc12c927ac504e Florian Westphal 2023-11-02 1016 u32 reply_hash) 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 @1017 { 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1018 /* This is the conntrack entry already in hashes that won race. */ 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1019 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h); b3480fe059ac91 Florian Westphal 2017-08-12 1020 const struct nf_conntrack_l4proto *l4proto; 6199b71796bcaa Florian Westphal 2023-11-02 1021 enum ip_conntrack_info ctinfo; 6199b71796bcaa Florian Westphal 2023-11-02 1022 struct nf_conn *loser_ct; 6199b71796bcaa Florian Westphal 2023-11-02 1023 struct net *net; 94ebb264459f97 Florian Westphal 2023-11-02 1024 int ret; 6199b71796bcaa Florian Westphal 2023-11-02 1025 6199b71796bcaa Florian Westphal 2023-11-02 1026 loser_ct = nf_ct_get(skb, &ctinfo); 94ebb264459f97 Florian Westphal 2023-11-02 1027 net = nf_ct_net(loser_ct); 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1028 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1029 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct)); 6199b71796bcaa Florian Westphal 2023-11-02 1030 if (!l4proto->allow_clash) 6199b71796bcaa Florian Westphal 2023-11-02 1031 goto drop; 6199b71796bcaa Florian Westphal 2023-11-02 1032 94ebb264459f97 Florian Westphal 2023-11-02 1033 ret = __nf_ct_resolve_clash(skb, h); 94ebb264459f97 Florian Westphal 2023-11-02 1034 if (ret == NF_ACCEPT) 94ebb264459f97 Florian Westphal 2023-11-02 1035 return ret; 6199b71796bcaa Florian Westphal 2023-11-02 1036 cc12c927ac504e Florian Westphal 2023-11-02 1037 ret = nf_ct_resolve_clash_harder(skb, reply_hash); cc12c927ac504e Florian Westphal 2023-11-02 1038 if (ret == NF_ACCEPT) cc12c927ac504e Florian Westphal 2023-11-02 1039 return ret; cc12c927ac504e Florian Westphal 2023-11-02 1040 6199b71796bcaa Florian Westphal 2023-11-02 1041 drop: 94ebb264459f97 Florian Westphal 2023-11-02 1042 nf_ct_add_to_dying_list(loser_ct); 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1043 NF_CT_STAT_INC(net, drop); 94ebb264459f97 Florian Westphal 2023-11-02 1044 NF_CT_STAT_INC(net, insert_failed); 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1045 return NF_DROP; 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1046 } 71d8c47fc65371 Pablo Neira Ayuso 2016-05-01 1047 :::::: The code at line 1017 was first introduced by commit :::::: 71d8c47fc653711c41bc3282e5b0e605b3727956 netfilter: conntrack: introduce clash resolution on insertion race :::::: TO: Pablo Neira Ayuso <pablo(a)netfilter.org> :::::: CC: Pablo Neira Ayuso <pablo(a)netfilter.org> -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:openEuler-1.0-LTS 1941/1941] net/netfilter/nf_nat_proto.c:56:6: warning: no previous prototype for 'nf_nat_csum_recalc'
by kernel test robot 13 Dec '25

13 Dec '25
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS head: df8d11fbcbb07177c2500e63d7f5a36063977596 commit: 83abe3a3b85762720192809ac8695ff9255cfd23 [1941/1941] netfilter: nat: remove csum_recalc hook config: arm64-defconfig (https://download.01.org/0day-ci/archive/20251213/202512131018.8qdFT5tV-lkp@…) compiler: aarch64-linux-gcc (GCC) 15.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131018.8qdFT5tV-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131018.8qdFT5tV-lkp@intel.com/ All warnings (new ones prefixed by >>): >> net/netfilter/nf_nat_proto.c:56:6: warning: no previous prototype for 'nf_nat_csum_recalc' [-Wmissing-prototypes] 56 | void nf_nat_csum_recalc(struct sk_buff *skb, | ^~~~~~~~~~~~~~~~~~ vim +/nf_nat_csum_recalc +56 net/netfilter/nf_nat_proto.c 55 > 56 void nf_nat_csum_recalc(struct sk_buff *skb, -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
[openeuler:OLK-6.6 3541/3541] drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:134:6: warning: variable 'value_back' set but not used
by kernel test robot 13 Dec '25

13 Dec '25
Hi leoliu-oc, FYI, the error/warning still remains. tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: cd9eb9b4365b71652b2c2ac58293bea47c9f9302 commit: 996e18349e58a3ace519f9c0f32f4e62fc46ec2c [3541/3541] Add support Zhaoxin GPIO pinctrl config: x86_64-randconfig-r134-20251213 (https://download.01.org/0day-ci/archive/20251213/202512131040.ErvjOWkV-lkp@…) compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251213/202512131040.ErvjOWkV-lkp@…) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp(a)intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202512131040.ErvjOWkV-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:134:6: warning: variable 'value_back' set but not used [-Wunused-but-set-variable] 134 | u16 value_back = 0; | ^ drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:257:6: warning: variable 'pin' set but not used [-Wunused-but-set-variable] 257 | int pin; | ^ drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:277:6: warning: variable 'pin' set but not used [-Wunused-but-set-variable] 277 | int pin; | ^ drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:337:6: warning: variable 'base_offset' set but not used [-Wunused-but-set-variable] 337 | int base_offset = 0; | ^ drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:340:6: warning: variable 'value_read' set but not used [-Wunused-but-set-variable] 340 | u16 value_read; | ^ drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c:371:6: warning: variable 'base_offset' set but not used [-Wunused-but-set-variable] 371 | int base_offset = 0; | ^ 6 warnings generated. vim +/value_back +134 drivers/pinctrl/zhaoxin/pinctrl-zhaoxin.c 128 129 static void zhaoxin_gpio_set_gpio_mode_and_pull(struct zhaoxin_pinctrl *pctrl, unsigned int pin, 130 bool isup) 131 { 132 u16 tmp = 0; 133 u16 value; > 134 u16 value_back = 0; 135 136 if (isup) 137 tmp = ZHAOXIN_PULL_UP_10K|1; 138 else 139 tmp = ZHAOXIN_PULL_DOWN|1; 140 value = zx_pad_read16(pctrl, pin); 141 142 //for gpio 143 if (pin <= 0x32 && pin >= 0x29) { 144 if (isup) { 145 value &= (~(ZHAOXIN_PULL_DOWN)); 146 value |= tmp; 147 } else { 148 value &= (~(ZHAOXIN_PULL_UP)); 149 value |= tmp; 150 } 151 value &= ~(0x1); 152 zx_pad_write16(pctrl, pin, value); 153 value_back = zx_pad_read16(pctrl, pin); 154 } else {// for pgpio 155 if (isup) { 156 value &= (~(ZHAOXIN_PULL_DOWN)); 157 value |= tmp; 158 } else { 159 value &= (~(ZHAOXIN_PULL_UP)); 160 value |= tmp; 161 } 162 value |= 0x1; 163 zx_pad_write16(pctrl, pin, value); 164 value_back = zx_pad_read16(pctrl, pin); 165 } 166 } 167 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki
1 0
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • ...
  • 2192
  • Older →

HyperKitty Powered by HyperKitty