While the static key is correctly initialized as being disabled, it will
remain forever enabled once turned on. This means that if we start with an
asymmetric system and hotplug out enough CPUs to end up with an SMP system,
the static key will remain set - which is obviously wrong. We should detect
this and turn off things like misfit migration and capacity aware wakeups.
As Quentin pointed out, having separate root domains makes this slightly
trickier. We could have exclusive cpusets that create an SMP island - IOW,
the domains within this root domain will not see any asymmetry. This means
we need to count how many asymmetric root domains we have.
Change the simple key enablement to an increment, and decrement the key
counter when destroying domains that cover asymmetric CPUs.
Cc: <stable(a)vger.kernel.org>
Fixes: df054e8445a4 ("sched/topology: Add static_key for asymmetric CPU capacity optimizations")
Signed-off-by: Valentin Schneider <valentin.schneider(a)arm.com>
---
Changes since v1:
Use static_branch_{inc,dec} rather than enable/disable
---
kernel/sched/topology.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index b5667a273bf6..79944e969bcf 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -2026,7 +2026,7 @@ build_sched_domains(const struct cpumask *cpu_map, struct sched_domain_attr *att
rcu_read_unlock();
if (has_asym)
- static_branch_enable_cpuslocked(&sched_asym_cpucapacity);
+ static_branch_inc_cpuslocked(&sched_asym_cpucapacity);
if (rq && sched_debug_enabled) {
pr_info("root domain span: %*pbl (max cpu_capacity = %lu)\n",
@@ -2124,8 +2124,17 @@ static void detach_destroy_domains(const struct cpumask *cpu_map)
int i;
rcu_read_lock();
+
+ if (static_key_enabled(&sched_asym_cpucapacity)) {
+ unsigned int cpu = cpumask_any(cpu_map);
+
+ if (rcu_dereference(per_cpu(sd_asym_cpucapacity, cpu)))
+ static_branch_dec_cpuslocked(&sched_asym_cpucapacity);
+ }
+
for_each_cpu(i, cpu_map)
cpu_attach_domain(NULL, &def_root_domain, i);
+
rcu_read_unlock();
}
--
2.22.0
While the static key is correctly initialized as being disabled, it will
remain forever enabled once turned on. This means that if we start with an
asymmetric system and hotplug out enough CPUs to end up with an SMP system,
the static key will remain set - which is obviously wrong. We should detect
this and turn off things like misfit migration and EAS wakeups.
Having that key enabled should also mandate
per_cpu(sd_asym_cpucapacity, cpu) != NULL
for all CPUs, but this is obviously not true with the above.
On top of that, sched domain rebuilds first lead to attaching the NULL
domain to the affected CPUs, which means there will be a window where the
static key is set but the sd_asym_cpucapacity shortcut points to NULL even
if asymmetry hasn't been hotplugged out.
Disable the static key when destroying domains, and let
build_sched_domains() (re) enable it as needed.
Cc: <stable(a)vger.kernel.org>
Fixes: df054e8445a4 ("sched/topology: Add static_key for asymmetric CPU capacity optimizations")
Signed-off-by: Valentin Schneider <valentin.schneider(a)arm.com>
---
kernel/sched/topology.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index b5667a273bf6..c49ae57a0611 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -2123,7 +2123,8 @@ static void detach_destroy_domains(const struct cpumask *cpu_map)
{
int i;
+ static_branch_disable_cpuslocked(&sched_asym_cpucapacity);
+
rcu_read_lock();
for_each_cpu(i, cpu_map)
cpu_attach_domain(NULL, &def_root_domain, i);
--
2.22.0
The device cannot be probed on !ACPI and gives this warning:
drivers/soundwire/slave.c:16:12: warning: ‘sdw_slave_add’ defined but
not used [-Wunused-function]
static int sdw_slave_add(struct sdw_bus *bus,
^~~~~~~~~~~~~
Cc: stable(a)vger.kernel.org
Fixes: 7c3cd189b86d ("soundwire: Add Master registration")
Signed-off-by: Michal Suchanek <msuchanek(a)suse.de>
---
drivers/soundwire/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/soundwire/Kconfig b/drivers/soundwire/Kconfig
index f518273cfbe3..c73bfbaa2659 100644
--- a/drivers/soundwire/Kconfig
+++ b/drivers/soundwire/Kconfig
@@ -5,6 +5,7 @@
menuconfig SOUNDWIRE
tristate "SoundWire support"
+ depends on ACPI
help
SoundWire is a 2-Pin interface with data and clock line ratified
by the MIPI Alliance. SoundWire is used for transporting data
--
2.23.0
stable-rc/linux-5.3.y build: 208 builds: 178 failed, 30 passed, 1068 errors, 164 warnings (v5.3.6-84-g973b124921fc)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-5.3.y/kernel/v5.3.6-84-g9…
Tree: stable-rc
Branch: linux-5.3.y
Git Describe: v5.3.6-84-g973b124921fc
Git Commit: 973b124921fc639825ae455aa91ed9ce15167584
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 7 unique architectures
Build Failures Detected:
arc:
axs103_defconfig: (gcc-8) FAIL
axs103_smp_defconfig: (gcc-8) FAIL
haps_hs_defconfig: (gcc-8) FAIL
haps_hs_smp_defconfig: (gcc-8) FAIL
hsdk_defconfig: (gcc-8) FAIL
nsim_hs_defconfig: (gcc-8) FAIL
nsim_hs_smp_defconfig: (gcc-8) FAIL
nsimosci_hs_defconfig: (gcc-8) FAIL
nsimosci_hs_smp_defconfig: (gcc-8) FAIL
vdk_hs38_defconfig: (gcc-8) FAIL
vdk_hs38_smp_defconfig: (gcc-8) FAIL
arm64:
defconfig: (gcc-8) FAIL
arm:
acs5k_defconfig: (gcc-8) FAIL
acs5k_tiny_defconfig: (gcc-8) FAIL
am200epdkit_defconfig: (gcc-8) FAIL
aspeed_g4_defconfig: (gcc-8) FAIL
aspeed_g5_defconfig: (gcc-8) FAIL
assabet_defconfig: (gcc-8) FAIL
at91_dt_defconfig: (gcc-8) FAIL
axm55xx_defconfig: (gcc-8) FAIL
badge4_defconfig: (gcc-8) FAIL
bcm2835_defconfig: (gcc-8) FAIL
cerfcube_defconfig: (gcc-8) FAIL
clps711x_defconfig: (gcc-8) FAIL
cm_x2xx_defconfig: (gcc-8) FAIL
cm_x300_defconfig: (gcc-8) FAIL
colibri_pxa270_defconfig: (gcc-8) FAIL
colibri_pxa300_defconfig: (gcc-8) FAIL
collie_defconfig: (gcc-8) FAIL
corgi_defconfig: (gcc-8) FAIL
davinci_all_defconfig: (gcc-8) FAIL
dove_defconfig: (gcc-8) FAIL
ebsa110_defconfig: (gcc-8) FAIL
efm32_defconfig: (gcc-8) FAIL
em_x270_defconfig: (gcc-8) FAIL
ep93xx_defconfig: (gcc-8) FAIL
eseries_pxa_defconfig: (gcc-8) FAIL
exynos_defconfig: (gcc-8) FAIL
ezx_defconfig: (gcc-8) FAIL
footbridge_defconfig: (gcc-8) FAIL
gemini_defconfig: (gcc-8) FAIL
h3600_defconfig: (gcc-8) FAIL
h5000_defconfig: (gcc-8) FAIL
hackkit_defconfig: (gcc-8) FAIL
hisi_defconfig: (gcc-8) FAIL
imote2_defconfig: (gcc-8) FAIL
imx_v4_v5_defconfig: (gcc-8) FAIL
imx_v6_v7_defconfig: (gcc-8) FAIL
integrator_defconfig: (gcc-8) FAIL
iop13xx_defconfig: (gcc-8) FAIL
iop32x_defconfig: (gcc-8) FAIL
iop33x_defconfig: (gcc-8) FAIL
ixp4xx_defconfig: (gcc-8) FAIL
jornada720_defconfig: (gcc-8) FAIL
keystone_defconfig: (gcc-8) FAIL
ks8695_defconfig: (gcc-8) FAIL
lart_defconfig: (gcc-8) FAIL
lpc18xx_defconfig: (gcc-8) FAIL
lpc32xx_defconfig: (gcc-8) FAIL
lpd270_defconfig: (gcc-8) FAIL
lubbock_defconfig: (gcc-8) FAIL
magician_defconfig: (gcc-8) FAIL
mainstone_defconfig: (gcc-8) FAIL
mini2440_defconfig: (gcc-8) FAIL
mmp2_defconfig: (gcc-8) FAIL
moxart_defconfig: (gcc-8) FAIL
mps2_defconfig: (gcc-8) FAIL
multi_v5_defconfig: (gcc-8) FAIL
multi_v7_defconfig: (gcc-8) FAIL
mv78xx0_defconfig: (gcc-8) FAIL
mvebu_v5_defconfig: (gcc-8) FAIL
mvebu_v7_defconfig: (gcc-8) FAIL
mxs_defconfig: (gcc-8) FAIL
neponset_defconfig: (gcc-8) FAIL
netwinder_defconfig: (gcc-8) FAIL
nhk8815_defconfig: (gcc-8) FAIL
omap1_defconfig: (gcc-8) FAIL
omap2plus_defconfig: (gcc-8) FAIL
orion5x_defconfig: (gcc-8) FAIL
oxnas_v6_defconfig: (gcc-8) FAIL
palmz72_defconfig: (gcc-8) FAIL
pcm027_defconfig: (gcc-8) FAIL
pleb_defconfig: (gcc-8) FAIL
pxa168_defconfig: (gcc-8) FAIL
pxa255-idp_defconfig: (gcc-8) FAIL
pxa3xx_defconfig: (gcc-8) FAIL
pxa910_defconfig: (gcc-8) FAIL
pxa_defconfig: (gcc-8) FAIL
qcom_defconfig: (gcc-8) FAIL
realview_defconfig: (gcc-8) FAIL
rpc_defconfig: (gcc-8) FAIL
s3c2410_defconfig: (gcc-8) FAIL
s5pv210_defconfig: (gcc-8) FAIL
sama5_defconfig: (gcc-8) FAIL
shannon_defconfig: (gcc-8) FAIL
shmobile_defconfig: (gcc-8) FAIL
simpad_defconfig: (gcc-8) FAIL
socfpga_defconfig: (gcc-8) FAIL
spear13xx_defconfig: (gcc-8) FAIL
spitz_defconfig: (gcc-8) FAIL
sunxi_defconfig: (gcc-8) FAIL
tango4_defconfig: (gcc-8) FAIL
tct_hammer_defconfig: (gcc-8) FAIL
tegra_defconfig: (gcc-8) FAIL
trizeps4_defconfig: (gcc-8) FAIL
u8500_defconfig: (gcc-8) FAIL
versatile_defconfig: (gcc-8) FAIL
vexpress_defconfig: (gcc-8) FAIL
viper_defconfig: (gcc-8) FAIL
vt8500_v6_v7_defconfig: (gcc-8) FAIL
xcep_defconfig: (gcc-8) FAIL
zeus_defconfig: (gcc-8) FAIL
i386:
i386_defconfig: (gcc-8) FAIL
mips:
32r2el_defconfig: (gcc-8) FAIL
ar7_defconfig: (gcc-8) FAIL
ath25_defconfig: (gcc-8) FAIL
ath79_defconfig: (gcc-8) FAIL
bcm47xx_defconfig: (gcc-8) FAIL
bcm63xx_defconfig: (gcc-8) FAIL
bigsur_defconfig: (gcc-8) FAIL
bmips_be_defconfig: (gcc-8) FAIL
bmips_stb_defconfig: (gcc-8) FAIL
capcella_defconfig: (gcc-8) FAIL
cavium_octeon_defconfig: (gcc-8) FAIL
ci20_defconfig: (gcc-8) FAIL
cobalt_defconfig: (gcc-8) FAIL
db1xxx_defconfig: (gcc-8) FAIL
decstation_64_defconfig: (gcc-8) FAIL
decstation_defconfig: (gcc-8) FAIL
decstation_r4k_defconfig: (gcc-8) FAIL
fuloong2e_defconfig: (gcc-8) FAIL
gcw0_defconfig: (gcc-8) FAIL
gpr_defconfig: (gcc-8) FAIL
ip22_defconfig: (gcc-8) FAIL
ip27_defconfig: (gcc-8) FAIL
ip28_defconfig: (gcc-8) FAIL
ip32_defconfig: (gcc-8) FAIL
jazz_defconfig: (gcc-8) FAIL
jmr3927_defconfig: (gcc-8) FAIL
lasat_defconfig: (gcc-8) FAIL
lemote2f_defconfig: (gcc-8) FAIL
loongson1b_defconfig: (gcc-8) FAIL
loongson1c_defconfig: (gcc-8) FAIL
loongson3_defconfig: (gcc-8) FAIL
malta_defconfig: (gcc-8) FAIL
malta_kvm_defconfig: (gcc-8) FAIL
malta_kvm_guest_defconfig: (gcc-8) FAIL
malta_qemu_32r6_defconfig: (gcc-8) FAIL
maltaaprp_defconfig: (gcc-8) FAIL
maltasmvp_defconfig: (gcc-8) FAIL
maltasmvp_eva_defconfig: (gcc-8) FAIL
maltaup_defconfig: (gcc-8) FAIL
maltaup_xpa_defconfig: (gcc-8) FAIL
markeins_defconfig: (gcc-8) FAIL
mips_paravirt_defconfig: (gcc-8) FAIL
mpc30x_defconfig: (gcc-8) FAIL
msp71xx_defconfig: (gcc-8) FAIL
mtx1_defconfig: (gcc-8) FAIL
nlm_xlp_defconfig: (gcc-8) FAIL
nlm_xlr_defconfig: (gcc-8) FAIL
omega2p_defconfig: (gcc-8) FAIL
pistachio_defconfig: (gcc-8) FAIL
pnx8335_stb225_defconfig: (gcc-8) FAIL
qi_lb60_defconfig: (gcc-8) FAIL
rb532_defconfig: (gcc-8) FAIL
rbtx49xx_defconfig: (gcc-8) FAIL
rm200_defconfig: (gcc-8) FAIL
rt305x_defconfig: (gcc-8) FAIL
sb1250_swarm_defconfig: (gcc-8) FAIL
tb0219_defconfig: (gcc-8) FAIL
tb0226_defconfig: (gcc-8) FAIL
tb0287_defconfig: (gcc-8) FAIL
vocore2_defconfig: (gcc-8) FAIL
workpad_defconfig: (gcc-8) FAIL
xway_defconfig: (gcc-8) FAIL
riscv:
defconfig: (gcc-8) FAIL
rv32_defconfig: (gcc-8) FAIL
x86_64:
x86_64_defconfig: (gcc-8) FAIL
Errors and Warnings Detected:
arc:
allnoconfig (gcc-8): 1 warning
axs103_defconfig (gcc-8): 6 errors, 1 warning
axs103_smp_defconfig (gcc-8): 6 errors, 1 warning
haps_hs_defconfig (gcc-8): 6 errors, 1 warning
haps_hs_smp_defconfig (gcc-8): 6 errors, 1 warning
hsdk_defconfig (gcc-8): 6 errors, 1 warning
nsim_hs_defconfig (gcc-8): 6 errors, 1 warning
nsim_hs_smp_defconfig (gcc-8): 6 errors, 1 warning
nsimosci_hs_defconfig (gcc-8): 6 errors, 1 warning
nsimosci_hs_smp_defconfig (gcc-8): 6 errors, 1 warning
tinyconfig (gcc-8): 1 warning
vdk_hs38_defconfig (gcc-8): 6 errors, 1 warning
vdk_hs38_smp_defconfig (gcc-8): 6 errors, 1 warning
arm64:
defconfig (gcc-8): 6 errors, 3 warnings
arm:
acs5k_defconfig (gcc-8): 6 errors
acs5k_tiny_defconfig (gcc-8): 6 errors
am200epdkit_defconfig (gcc-8): 6 errors
aspeed_g4_defconfig (gcc-8): 6 errors
aspeed_g5_defconfig (gcc-8): 6 errors
assabet_defconfig (gcc-8): 6 errors
at91_dt_defconfig (gcc-8): 6 errors, 4 warnings
axm55xx_defconfig (gcc-8): 6 errors
badge4_defconfig (gcc-8): 6 errors
bcm2835_defconfig (gcc-8): 6 errors
cerfcube_defconfig (gcc-8): 6 errors
clps711x_defconfig (gcc-8): 6 errors
cm_x2xx_defconfig (gcc-8): 6 errors
cm_x300_defconfig (gcc-8): 6 errors
colibri_pxa270_defconfig (gcc-8): 6 errors
colibri_pxa300_defconfig (gcc-8): 6 errors
collie_defconfig (gcc-8): 6 errors
corgi_defconfig (gcc-8): 6 errors
davinci_all_defconfig (gcc-8): 6 errors
dove_defconfig (gcc-8): 6 errors
ebsa110_defconfig (gcc-8): 6 errors
efm32_defconfig (gcc-8): 6 errors
em_x270_defconfig (gcc-8): 6 errors
ep93xx_defconfig (gcc-8): 6 errors
eseries_pxa_defconfig (gcc-8): 6 errors
exynos_defconfig (gcc-8): 6 errors, 1 warning
ezx_defconfig (gcc-8): 6 errors
footbridge_defconfig (gcc-8): 6 errors
gemini_defconfig (gcc-8): 6 errors
h3600_defconfig (gcc-8): 6 errors
h5000_defconfig (gcc-8): 6 errors
hackkit_defconfig (gcc-8): 6 errors
hisi_defconfig (gcc-8): 6 errors
imote2_defconfig (gcc-8): 6 errors
imx_v4_v5_defconfig (gcc-8): 6 errors, 1 warning
imx_v6_v7_defconfig (gcc-8): 6 errors
integrator_defconfig (gcc-8): 6 errors
iop13xx_defconfig (gcc-8): 6 errors
iop32x_defconfig (gcc-8): 6 errors
iop33x_defconfig (gcc-8): 6 errors
ixp4xx_defconfig (gcc-8): 6 errors
jornada720_defconfig (gcc-8): 6 errors
keystone_defconfig (gcc-8): 6 errors
ks8695_defconfig (gcc-8): 6 errors
lart_defconfig (gcc-8): 6 errors
lpc18xx_defconfig (gcc-8): 6 errors
lpc32xx_defconfig (gcc-8): 6 errors
lpd270_defconfig (gcc-8): 6 errors
lubbock_defconfig (gcc-8): 6 errors
magician_defconfig (gcc-8): 6 errors
mainstone_defconfig (gcc-8): 6 errors
mini2440_defconfig (gcc-8): 6 errors, 2 warnings
mmp2_defconfig (gcc-8): 6 errors
moxart_defconfig (gcc-8): 6 errors
mps2_defconfig (gcc-8): 6 errors
multi_v5_defconfig (gcc-8): 6 errors, 3 warnings
multi_v7_defconfig (gcc-8): 6 errors, 16 warnings
mv78xx0_defconfig (gcc-8): 6 errors
mvebu_v5_defconfig (gcc-8): 6 errors
mvebu_v7_defconfig (gcc-8): 6 errors
mxs_defconfig (gcc-8): 6 errors
neponset_defconfig (gcc-8): 6 errors
netwinder_defconfig (gcc-8): 6 errors
nhk8815_defconfig (gcc-8): 6 errors
omap1_defconfig (gcc-8): 6 errors
omap2plus_defconfig (gcc-8): 6 errors, 1 warning
orion5x_defconfig (gcc-8): 6 errors
oxnas_v6_defconfig (gcc-8): 6 errors
palmz72_defconfig (gcc-8): 6 errors
pcm027_defconfig (gcc-8): 6 errors
pleb_defconfig (gcc-8): 6 errors
pxa168_defconfig (gcc-8): 6 errors
pxa255-idp_defconfig (gcc-8): 6 errors
pxa3xx_defconfig (gcc-8): 6 errors
pxa910_defconfig (gcc-8): 6 errors
pxa_defconfig (gcc-8): 6 errors
qcom_defconfig (gcc-8): 6 errors, 2 warnings
realview_defconfig (gcc-8): 6 errors
rpc_defconfig (gcc-8): 6 errors
s3c2410_defconfig (gcc-8): 6 errors
s3c6400_defconfig (gcc-8): 1 warning
s5pv210_defconfig (gcc-8): 6 errors, 1 warning
sama5_defconfig (gcc-8): 6 errors, 4 warnings
shannon_defconfig (gcc-8): 6 errors
shmobile_defconfig (gcc-8): 6 errors, 2 warnings
simpad_defconfig (gcc-8): 6 errors
socfpga_defconfig (gcc-8): 6 errors
spear13xx_defconfig (gcc-8): 6 errors
spitz_defconfig (gcc-8): 6 errors
sunxi_defconfig (gcc-8): 6 errors
tango4_defconfig (gcc-8): 6 errors
tct_hammer_defconfig (gcc-8): 6 errors, 2 warnings
tegra_defconfig (gcc-8): 6 errors
trizeps4_defconfig (gcc-8): 6 errors
u8500_defconfig (gcc-8): 6 errors, 6 warnings
versatile_defconfig (gcc-8): 6 errors
vexpress_defconfig (gcc-8): 6 errors
viper_defconfig (gcc-8): 6 errors
vt8500_v6_v7_defconfig (gcc-8): 6 errors
xcep_defconfig (gcc-8): 6 errors
zeus_defconfig (gcc-8): 6 errors
i386:
i386_defconfig (gcc-8): 6 errors
mips:
32r2el_defconfig (gcc-8): 6 errors, 1 warning
allnoconfig (gcc-8): 1 warning
ar7_defconfig (gcc-8): 6 errors, 1 warning
ath25_defconfig (gcc-8): 6 errors, 1 warning
ath79_defconfig (gcc-8): 6 errors, 1 warning
bcm47xx_defconfig (gcc-8): 6 errors, 1 warning
bcm63xx_defconfig (gcc-8): 6 errors, 1 warning
bigsur_defconfig (gcc-8): 6 errors, 3 warnings
bmips_be_defconfig (gcc-8): 6 errors, 1 warning
bmips_stb_defconfig (gcc-8): 6 errors, 1 warning
capcella_defconfig (gcc-8): 6 errors, 1 warning
cavium_octeon_defconfig (gcc-8): 6 errors, 3 warnings
ci20_defconfig (gcc-8): 6 errors, 2 warnings
cobalt_defconfig (gcc-8): 6 errors, 1 warning
db1xxx_defconfig (gcc-8): 6 errors, 2 warnings
decstation_64_defconfig (gcc-8): 6 errors, 3 warnings
decstation_defconfig (gcc-8): 6 errors, 1 warning
decstation_r4k_defconfig (gcc-8): 6 errors, 1 warning
e55_defconfig (gcc-8): 2 warnings
fuloong2e_defconfig (gcc-8): 6 errors, 3 warnings
gcw0_defconfig (gcc-8): 6 errors, 1 warning
gpr_defconfig (gcc-8): 6 errors, 1 warning
ip22_defconfig (gcc-8): 6 errors, 2 warnings
ip27_defconfig (gcc-8): 6 errors, 3 warnings
ip28_defconfig (gcc-8): 6 errors, 4 warnings
ip32_defconfig (gcc-8): 6 errors, 3 warnings
jazz_defconfig (gcc-8): 6 errors, 1 warning
jmr3927_defconfig (gcc-8): 6 errors, 1 warning
lasat_defconfig (gcc-8): 6 errors, 1 warning
lemote2f_defconfig (gcc-8): 6 errors, 3 warnings
loongson1b_defconfig (gcc-8): 6 errors, 1 warning
loongson1c_defconfig (gcc-8): 6 errors, 1 warning
loongson3_defconfig (gcc-8): 6 errors, 3 warnings
malta_defconfig (gcc-8): 6 errors, 1 warning
malta_kvm_defconfig (gcc-8): 6 errors, 1 warning
malta_kvm_guest_defconfig (gcc-8): 6 errors, 1 warning
malta_qemu_32r6_defconfig (gcc-8): 6 errors, 2 warnings
maltaaprp_defconfig (gcc-8): 6 errors, 1 warning
maltasmvp_defconfig (gcc-8): 6 errors, 1 warning
maltasmvp_eva_defconfig (gcc-8): 6 errors, 1 warning
maltaup_defconfig (gcc-8): 6 errors, 1 warning
maltaup_xpa_defconfig (gcc-8): 6 errors, 1 warning
markeins_defconfig (gcc-8): 6 errors, 1 warning
mips_paravirt_defconfig (gcc-8): 6 errors, 3 warnings
mpc30x_defconfig (gcc-8): 6 errors, 1 warning
msp71xx_defconfig (gcc-8): 6 errors, 1 warning
mtx1_defconfig (gcc-8): 6 errors, 1 warning
nlm_xlp_defconfig (gcc-8): 6 errors, 3 warnings
nlm_xlr_defconfig (gcc-8): 6 errors, 1 warning
omega2p_defconfig (gcc-8): 6 errors, 1 warning
pic32mzda_defconfig (gcc-8): 2 warnings
pistachio_defconfig (gcc-8): 6 errors, 1 warning
pnx8335_stb225_defconfig (gcc-8): 6 errors, 1 warning
qi_lb60_defconfig (gcc-8): 6 errors, 3 warnings
rb532_defconfig (gcc-8): 6 errors, 1 warning
rbtx49xx_defconfig (gcc-8): 6 errors, 1 warning
rm200_defconfig (gcc-8): 6 errors, 1 warning
rt305x_defconfig (gcc-8): 6 errors, 1 warning
sb1250_swarm_defconfig (gcc-8): 6 errors, 2 warnings
tb0219_defconfig (gcc-8): 6 errors, 1 warning
tb0226_defconfig (gcc-8): 6 errors, 1 warning
tb0287_defconfig (gcc-8): 6 errors, 1 warning
tinyconfig (gcc-8): 1 warning
vocore2_defconfig (gcc-8): 6 errors, 1 warning
workpad_defconfig (gcc-8): 6 errors, 1 warning
xway_defconfig (gcc-8): 6 errors, 1 warning
riscv:
defconfig (gcc-8): 6 errors
rv32_defconfig (gcc-8): 6 errors, 3 warnings
x86_64:
tinyconfig (gcc-8): 1 warning
x86_64_defconfig (gcc-8): 6 errors
Errors summary:
178 include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
178 include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
178 include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
178 include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
178 fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
178 fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
Warnings summary:
105 <stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
4 drivers/mmc/host/sdhci-s3c.c:613:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
4 drivers/mmc/host/atmel-mci.c:2426:40: warning: this statement may fall through [-Wimplicit-fallthrough=]
4 drivers/mmc/host/atmel-mci.c:2422:28: warning: this statement may fall through [-Wimplicit-fallthrough=]
4 drivers/mmc/host/atmel-mci.c:2415:30: warning: this statement may fall through [-Wimplicit-fallthrough=]
3 drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:820:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
3 drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:815:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]
2 drivers/video/fbdev/sh_mobile_lcdcfb.c:2086:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/video/fbdev/sh_mobile_lcdcfb.c:1596:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:459:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:440:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:424:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:370:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:352:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/phy/phy-ab8500-usb.c:332:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/gadget/udc/s3c2410_udc.c:418:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/gadget/udc/s3c2410_udc.c:314:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/usb/gadget/udc/atmel_usba_udc.c:329:13: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/scsi/wd33c93.c:1856:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/pinctrl/pinctrl-rockchip.c:2783:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
2 drivers/dma/imx-dma.c:542:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
1 {standard input}:131: Warning: macro instruction expanded into multiple instructions
1 drivers/video/fbdev/jz4740_fb.c:300:8: warning: this statement may fall through [-Wimplicit-fallthrough=]
1 drivers/mtd/nand/raw/au1550nd.c:443:57: warning: pointer type mismatch in conditional expression
1 drivers/cpufreq/ti-cpufreq.c:79:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
1 <stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp]
1 <stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp]
1 .config:1168:warning: override: UNWINDER_GUESS changes choice state
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
32r2el_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
allnoconfig (arc, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
allnoconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
allnoconfig (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-8) — FAIL, 6 errors, 4 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/mmc/host/atmel-mci.c:2415:30: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2422:28: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2426:40: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/gadget/udc/atmel_usba_udc.c:329:13: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
ath25_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]
--------------------------------------------------------------------------------
clps711x_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
cns3420vb_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
drivers/mtd/nand/raw/au1550nd.c:443:57: warning: pointer type mismatch in conditional expression
--------------------------------------------------------------------------------
decstation_64_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
decstation_r4k_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
defconfig (riscv, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
defconfig (arm64, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:815:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:820:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/pinctrl-rockchip.c:2783:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/mmc/host/sdhci-s3c.c:613:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
gcw0_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
gemini_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
haps_hs_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
haps_hs_smp_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
hsdk_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/dma/imx-dma.c:542:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
drivers/scsi/wd33c93.c:1856:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-8) — FAIL, 6 errors, 4 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
drivers/scsi/wd33c93.c:1856:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
loongson1b_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
loongson1c_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
{standard input}:131: Warning: macro instruction expanded into multiple instructions
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
milbeaut_m10v_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/usb/gadget/udc/s3c2410_udc.c:314:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/gadget/udc/s3c2410_udc.c:418:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
moxart_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
mps2_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
multi_v4t_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/mmc/host/atmel-mci.c:2415:30: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2422:28: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2426:40: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-8) — FAIL, 6 errors, 16 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/dma/imx-dma.c:542:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/sdhci-s3c.c:613:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2415:30: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2422:28: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2426:40: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:815:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:820:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/pinctrl-rockchip.c:2783:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/video/fbdev/sh_mobile_lcdcfb.c:2086:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/video/fbdev/sh_mobile_lcdcfb.c:1596:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:424:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:440:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:459:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:332:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:352:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:370:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
mv78xx0_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/cpufreq/ti-cpufreq.c:79:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
omega2p_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
oxnas_v6_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pic32mzda_defconfig (mips, gcc-8) — PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
pistachio_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
pxa_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:815:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c:820:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
drivers/video/fbdev/jz4740_fb.c:300:8: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/watchdog/jz4740_wdt.c:165:6: warning: unused variable 'ret' [-Wunused-variable]
--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
rv32_defconfig (riscv, gcc-8) — FAIL, 6 errors, 3 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:830:2: warning: #warning syscall fstat64 not implemented [-Wcpp]
<stdin>:1127:2: warning: #warning syscall fstatat64 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
drivers/mmc/host/sdhci-s3c.c:613:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/mmc/host/sdhci-s3c.c:613:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-8) — FAIL, 6 errors, 4 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/mmc/host/atmel-mci.c:2415:30: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2422:28: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/mmc/host/atmel-mci.c:2426:40: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/gadget/udc/atmel_usba_udc.c:329:13: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/video/fbdev/sh_mobile_lcdcfb.c:2086:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/video/fbdev/sh_mobile_lcdcfb.c:1596:22: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
tango4_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-8) — FAIL, 6 errors, 2 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/usb/gadget/udc/s3c2410_udc.c:314:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/gadget/udc/s3c2410_udc.c:418:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
.config:1168:warning: override: UNWINDER_GUESS changes choice state
--------------------------------------------------------------------------------
tinyconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
tinyconfig (riscv, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-8) — FAIL, 6 errors, 6 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
drivers/usb/phy/phy-ab8500-usb.c:424:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:440:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:459:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:332:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:352:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
drivers/usb/phy/phy-ab8500-usb.c:370:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
vocore2_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-8) — FAIL, 6 errors, 1 warning, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
Warnings:
<stdin>:1511:2: warning: #warning syscall clone3 not implemented [-Wcpp]
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-8) — FAIL, 6 errors, 0 warnings, 0 section mismatches
Errors:
include/linux/kernel.h:47:52: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/kernel.h:47:52: error: dereferencing pointer to incomplete type 'struct workqueue_struct'
include/linux/compiler.h:357:67: error: invalid use of undefined type 'struct workqueue_struct'
include/linux/build_bug.h:16:45: error: bit-field '<anonymous>' width not an integer constant
fs/io_uring.c:2571:18: error: invalid use of undefined type 'struct workqueue_struct'
fs/io_uring.c:2572:31: error: invalid use of undefined type 'struct workqueue_struct'
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info(a)kernelci.org>