This is a note to let you know that I've just added the patch titled
usbcore: Select only first configuration for non-UAC3 compliant
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From ff2a8c532c14fd22fb26a36574d9ff199afbbe54 Mon Sep 17 00:00:00 2001
From: Saranya Gopal <saranya.gopal(a)intel.com>
Date: Sun, 6 Jan 2019 08:14:02 +0530
Subject: usbcore: Select only first configuration for non-UAC3 compliant
devices
In most of the UAC1 and UAC2 audio devices, the first
configuration is most often the best configuration.
However, with recent patch to support UAC3 configuration,
second configuration was unintentionally chosen for
some of the UAC1/2 devices that had more than one
configuration. This was because of the existing check
after the audio config check which selected any config
which had a non-vendor class. This patch fixes this issue.
Fixes: f13912d3f014 ("usbcore: Select UAC3 configuration for audio if present")
Reported-by: Con Kolivas <kernel(a)kolivas.org>
Signed-off-by: Saranya Gopal <saranya.gopal(a)intel.com>
Tested-by: Con Kolivas <kernel(a)kolivas.org>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
---
drivers/usb/core/generic.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/usb/core/generic.c b/drivers/usb/core/generic.c
index 356b05c82dbc..f713cecc1f41 100644
--- a/drivers/usb/core/generic.c
+++ b/drivers/usb/core/generic.c
@@ -143,9 +143,12 @@ int usb_choose_configuration(struct usb_device *udev)
continue;
}
- if (i > 0 && desc && is_audio(desc) && is_uac3_config(desc)) {
- best = c;
- break;
+ if (i > 0 && desc && is_audio(desc)) {
+ if (is_uac3_config(desc)) {
+ best = c;
+ break;
+ }
+ continue;
}
/* From the remaining configs, choose the first one whose
--
2.20.1
This is a note to let you know that I've just added the patch titled
USB: storage: add quirk for SMI SM3350
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From 0a99cc4b8ee83885ab9f097a3737d1ab28455ac0 Mon Sep 17 00:00:00 2001
From: Icenowy Zheng <icenowy(a)aosc.io>
Date: Thu, 3 Jan 2019 11:26:18 +0800
Subject: USB: storage: add quirk for SMI SM3350
The SMI SM3350 USB-UFS bridge controller cannot handle long sense request
correctly and will make the chip refuse to do read/write when requested
long sense.
Add a bad sense quirk for it.
Signed-off-by: Icenowy Zheng <icenowy(a)aosc.io>
Cc: stable <stable(a)vger.kernel.org>
Acked-by: Alan Stern <stern(a)rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
---
drivers/usb/storage/unusual_devs.h | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h
index f7f83b21dc74..ea0d27a94afe 100644
--- a/drivers/usb/storage/unusual_devs.h
+++ b/drivers/usb/storage/unusual_devs.h
@@ -1265,6 +1265,18 @@ UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff,
USB_SC_DEVICE, USB_PR_DEVICE, NULL,
US_FL_FIX_CAPACITY ),
+/*
+ * Reported by Icenowy Zheng <icenowy(a)aosc.io>
+ * The SMI SM3350 USB-UFS bridge controller will enter a wrong state
+ * that do not process read/write command if a long sense is requested,
+ * so force to use 18-byte sense.
+ */
+UNUSUAL_DEV( 0x090c, 0x3350, 0x0000, 0xffff,
+ "SMI",
+ "SM3350 UFS-to-USB-Mass-Storage bridge",
+ USB_SC_DEVICE, USB_PR_DEVICE, NULL,
+ US_FL_BAD_SENSE ),
+
/*
* Reported by Paul Hartman <paul.hartman+linux(a)gmail.com>
* This card reader returns "Illegal Request, Logical Block Address
--
2.20.1
This is a note to let you know that I've just added the patch titled
USB: storage: don't insert sane sense for SPC3+ when bad sense
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From c5603d2fdb424849360fe7e3f8c1befc97571b8c Mon Sep 17 00:00:00 2001
From: Icenowy Zheng <icenowy(a)aosc.io>
Date: Thu, 3 Jan 2019 11:26:17 +0800
Subject: USB: storage: don't insert sane sense for SPC3+ when bad sense
specified
Currently the code will set US_FL_SANE_SENSE flag unconditionally if
device claims SPC3+, however we should allow US_FL_BAD_SENSE flag to
prevent this behavior, because SMI SM3350 UFS-USB bridge controller,
which claims SPC4, will show strange behavior with 96-byte sense
(put the chip into a wrong state that cannot read/write anything).
Check the presence of US_FL_BAD_SENSE when assuming US_FL_SANE_SENSE on
SPC4+ devices.
Signed-off-by: Icenowy Zheng <icenowy(a)aosc.io>
Cc: stable <stable(a)vger.kernel.org>
Acked-by: Alan Stern <stern(a)rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
---
drivers/usb/storage/scsiglue.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/storage/scsiglue.c b/drivers/usb/storage/scsiglue.c
index fde2e71a6ade..a73ea495d5a7 100644
--- a/drivers/usb/storage/scsiglue.c
+++ b/drivers/usb/storage/scsiglue.c
@@ -235,8 +235,12 @@ static int slave_configure(struct scsi_device *sdev)
if (!(us->fflags & US_FL_NEEDS_CAP16))
sdev->try_rc_10_first = 1;
- /* assume SPC3 or latter devices support sense size > 18 */
- if (sdev->scsi_level > SCSI_SPC_2)
+ /*
+ * assume SPC3 or latter devices support sense size > 18
+ * unless US_FL_BAD_SENSE quirk is specified.
+ */
+ if (sdev->scsi_level > SCSI_SPC_2 &&
+ !(us->fflags & US_FL_BAD_SENSE))
us->fflags |= US_FL_SANE_SENSE;
/*
--
2.20.1
This is a note to let you know that I've just added the patch titled
usb: cdc-acm: send ZLP for Telit 3G Intel based modems
to my usb git tree which can be found at
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
in the usb-linus branch.
The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)
The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release.
If you have any questions about this process, please let me know.
>From 34aabf918717dd14e05051896aaecd3b16b53d95 Mon Sep 17 00:00:00 2001
From: Daniele Palmas <dnlplm(a)gmail.com>
Date: Fri, 28 Dec 2018 16:15:41 +0100
Subject: usb: cdc-acm: send ZLP for Telit 3G Intel based modems
Telit 3G Intel based modems require zero packet to be sent if
out data size is equal to the endpoint max packet size.
Signed-off-by: Daniele Palmas <dnlplm(a)gmail.com>
Cc: stable <stable(a)vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
---
drivers/usb/class/cdc-acm.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index ed8c62b2d9d1..739f8960811a 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1865,6 +1865,13 @@ static const struct usb_device_id acm_ids[] = {
.driver_info = IGNORE_DEVICE,
},
+ { USB_DEVICE(0x1bc7, 0x0021), /* Telit 3G ACM only composition */
+ .driver_info = SEND_ZERO_PACKET,
+ },
+ { USB_DEVICE(0x1bc7, 0x0023), /* Telit 3G ACM + ECM composition */
+ .driver_info = SEND_ZERO_PACKET,
+ },
+
/* control interfaces without any protocol set */
{ USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
USB_CDC_PROTO_NONE) },
--
2.20.1
stable-rc/linux-4.9.y build: 193 builds: 109 failed, 84 passed, 228 errors, 231 warnings (v4.9.148-71-g5799fa356b8c)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.148-71-…
Tree: stable-rc
Branch: linux-4.9.y
Git Describe: v4.9.148-71-g5799fa356b8c
Git Commit: 5799fa356b8c6c38d641457c783f2c19730d1d01
Git URL: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 6 unique architectures
Build Failures Detected:
arc: arc-linux-gcc (ARCv2 ISA Linux uClibc toolchain 2017.09) 7.1.1 20170710
axs103_defconfig: FAIL
axs103_smp_defconfig: FAIL
vdk_hs38_defconfig: FAIL
vdk_hs38_smp_defconfig: FAIL
arm64: aarch64-linux-gnu-gcc (Debian 7.4.0-1) 7.4.0
defconfig: FAIL
arm: arm-linux-gnueabihf-gcc (Debian 7.4.0-1) 7.4.0
at91_dt_defconfig: FAIL
axm55xx_defconfig: FAIL
badge4_defconfig: FAIL
bcm2835_defconfig: FAIL
cerfcube_defconfig: FAIL
cm_x2xx_defconfig: FAIL
cm_x300_defconfig: FAIL
colibri_pxa300_defconfig: FAIL
davinci_all_defconfig: FAIL
dove_defconfig: FAIL
em_x270_defconfig: FAIL
ep93xx_defconfig: FAIL
eseries_pxa_defconfig: FAIL
exynos_defconfig: FAIL
ezx_defconfig: FAIL
hisi_defconfig: FAIL
imote2_defconfig: FAIL
imx_v4_v5_defconfig: FAIL
imx_v6_v7_defconfig: FAIL
iop13xx_defconfig: FAIL
iop32x_defconfig: FAIL
iop33x_defconfig: FAIL
ixp4xx_defconfig: FAIL
keystone_defconfig: FAIL
lart_defconfig: FAIL
mini2440_defconfig: FAIL
mmp2_defconfig: FAIL
moxart_defconfig: FAIL
multi_v5_defconfig: FAIL
multi_v7_defconfig: FAIL
mv78xx0_defconfig: FAIL
mvebu_v5_defconfig: FAIL
mvebu_v7_defconfig: FAIL
mxs_defconfig: FAIL
nhk8815_defconfig: FAIL
omap1_defconfig: FAIL
omap2plus_defconfig: FAIL
orion5x_defconfig: FAIL
palmz72_defconfig: FAIL
pcm027_defconfig: FAIL
pleb_defconfig: FAIL
pxa_defconfig: FAIL
qcom_defconfig: FAIL
raumfeld_defconfig: FAIL
rpc_defconfig: FAIL
s3c2410_defconfig: FAIL
s3c6400_defconfig: FAIL
sama5_defconfig: FAIL
simpad_defconfig: FAIL
socfpga_defconfig: FAIL
spear13xx_defconfig: FAIL
spear3xx_defconfig: FAIL
spear6xx_defconfig: FAIL
spitz_defconfig: FAIL
sunxi_defconfig: FAIL
tegra_defconfig: FAIL
trizeps4_defconfig: FAIL
u8500_defconfig: FAIL
vexpress_defconfig: FAIL
viper_defconfig: FAIL
vt8500_v6_v7_defconfig: FAIL
zeus_defconfig: FAIL
zx_defconfig: FAIL
mips: mips-linux-gcc (GCC) 6.3.0
bigsur_defconfig: FAIL
bmips_be_defconfig: FAIL
bmips_stb_defconfig: FAIL
capcella_defconfig: FAIL
cavium_octeon_defconfig: FAIL
cobalt_defconfig: FAIL
db1xxx_defconfig: FAIL
decstation_defconfig: FAIL
e55_defconfig: FAIL
fuloong2e_defconfig: FAIL
ip22_defconfig: FAIL
ip27_defconfig: FAIL
ip28_defconfig: FAIL
ip32_defconfig: FAIL
jazz_defconfig: FAIL
lasat_defconfig: FAIL
lemote2f_defconfig: FAIL
loongson1b_defconfig: FAIL
loongson1c_defconfig: FAIL
loongson3_defconfig: FAIL
malta_defconfig: FAIL
malta_kvm_defconfig: FAIL
malta_kvm_guest_defconfig: FAIL
malta_qemu_32r6_defconfig: FAIL
maltaaprp_defconfig: FAIL
maltasmvp_defconfig: FAIL
maltasmvp_eva_defconfig: FAIL
maltaup_defconfig: FAIL
maltaup_xpa_defconfig: FAIL
markeins_defconfig: FAIL
mips_paravirt_defconfig: FAIL
mtx1_defconfig: FAIL
nlm_xlp_defconfig: FAIL
nlm_xlr_defconfig: FAIL
pic32mzda_defconfig: FAIL
pistachio_defconfig: FAIL
qi_lb60_defconfig: FAIL
rm200_defconfig: FAIL
tb0219_defconfig: FAIL
tb0287_defconfig: FAIL
workpad_defconfig: FAIL
Errors and Warnings Detected:
arc: arc-linux-gcc (ARCv2 ISA Linux uClibc toolchain 2017.09) 7.1.1 20170710
allnoconfig: 5 warnings
axs103_defconfig: 2 errors, 19 warnings
axs103_smp_defconfig: 2 errors, 20 warnings
nsim_hs_smp_defconfig: 6 warnings
nsimosci_hs_defconfig: 8 warnings
nsimosci_hs_smp_defconfig: 9 warnings
tinyconfig: 6 warnings
vdk_hs38_defconfig: 2 errors, 20 warnings
vdk_hs38_smp_defconfig: 2 errors, 21 warnings
zebu_hs_defconfig: 5 warnings
zebu_hs_smp_defconfig: 6 warnings
arm64: aarch64-linux-gnu-gcc (Debian 7.4.0-1) 7.4.0
defconfig: 4 errors, 1 warning
arm: arm-linux-gnueabihf-gcc (Debian 7.4.0-1) 7.4.0
at91_dt_defconfig: 2 errors, 1 warning
axm55xx_defconfig: 2 errors, 1 warning
badge4_defconfig: 2 errors, 1 warning
bcm2835_defconfig: 2 errors, 1 warning
cerfcube_defconfig: 2 errors, 1 warning
cm_x2xx_defconfig: 2 errors, 1 warning
cm_x300_defconfig: 2 errors, 1 warning
colibri_pxa300_defconfig: 2 errors, 1 warning
davinci_all_defconfig: 2 errors, 1 warning
dove_defconfig: 2 errors, 1 warning
em_x270_defconfig: 2 errors, 1 warning
ep93xx_defconfig: 2 errors, 1 warning
eseries_pxa_defconfig: 2 errors, 1 warning
exynos_defconfig: 2 errors, 1 warning
ezx_defconfig: 2 errors, 1 warning
hisi_defconfig: 2 errors, 1 warning
imote2_defconfig: 2 errors, 1 warning
imx_v4_v5_defconfig: 2 errors, 1 warning
imx_v6_v7_defconfig: 2 errors, 1 warning
iop13xx_defconfig: 2 errors, 1 warning
iop32x_defconfig: 2 errors, 1 warning
iop33x_defconfig: 2 errors, 1 warning
ixp4xx_defconfig: 2 errors, 1 warning
keystone_defconfig: 2 errors, 1 warning
lart_defconfig: 2 errors, 1 warning
mini2440_defconfig: 2 errors, 1 warning
mmp2_defconfig: 2 errors, 1 warning
moxart_defconfig: 2 errors, 1 warning
multi_v5_defconfig: 2 errors, 1 warning
multi_v7_defconfig: 2 errors, 1 warning
mv78xx0_defconfig: 2 errors, 1 warning
mvebu_v5_defconfig: 2 errors, 1 warning
mvebu_v7_defconfig: 2 errors, 1 warning
mxs_defconfig: 2 errors, 1 warning
nhk8815_defconfig: 2 errors, 1 warning
omap1_defconfig: 2 errors, 1 warning
omap2plus_defconfig: 2 errors, 1 warning
orion5x_defconfig: 2 errors, 1 warning
palmz72_defconfig: 2 errors, 1 warning
pcm027_defconfig: 2 errors, 1 warning
pleb_defconfig: 2 errors, 1 warning
pxa_defconfig: 2 errors, 1 warning
qcom_defconfig: 2 errors, 1 warning
raumfeld_defconfig: 2 errors, 1 warning
rpc_defconfig: 2 errors, 1 warning
s3c2410_defconfig: 2 errors, 1 warning
s3c6400_defconfig: 2 errors, 1 warning
sama5_defconfig: 2 errors, 1 warning
simpad_defconfig: 2 errors, 1 warning
socfpga_defconfig: 2 errors, 1 warning
spear13xx_defconfig: 2 errors, 1 warning
spear3xx_defconfig: 2 errors, 1 warning
spear6xx_defconfig: 2 errors, 1 warning
spitz_defconfig: 2 errors, 1 warning
sunxi_defconfig: 2 errors, 1 warning
tegra_defconfig: 2 errors, 1 warning
trizeps4_defconfig: 2 errors, 1 warning
u8500_defconfig: 2 errors, 1 warning
vexpress_defconfig: 2 errors, 1 warning
viper_defconfig: 2 errors, 1 warning
vt8500_v6_v7_defconfig: 2 errors, 1 warning
zeus_defconfig: 2 errors, 1 warning
zx_defconfig: 2 errors, 1 warning
mips: mips-linux-gcc (GCC) 6.3.0
bigsur_defconfig: 2 errors, 1 warning
bmips_be_defconfig: 2 errors, 1 warning
bmips_stb_defconfig: 2 errors, 1 warning
capcella_defconfig: 2 errors, 1 warning
cavium_octeon_defconfig: 2 errors, 1 warning
cobalt_defconfig: 2 errors, 1 warning
db1xxx_defconfig: 2 errors, 1 warning
decstation_defconfig: 2 errors, 2 warnings
e55_defconfig: 2 errors, 1 warning
fuloong2e_defconfig: 2 errors, 1 warning
ip22_defconfig: 2 errors, 1 warning
ip27_defconfig: 4 errors, 1 warning
ip28_defconfig: 2 errors, 1 warning
ip32_defconfig: 2 errors, 1 warning
jazz_defconfig: 2 errors, 1 warning
lasat_defconfig: 2 errors, 1 warning
lemote2f_defconfig: 4 errors, 1 warning
loongson1b_defconfig: 2 errors, 1 warning
loongson1c_defconfig: 2 errors, 1 warning
loongson3_defconfig: 2 errors, 1 warning
malta_defconfig: 2 errors, 1 warning
malta_kvm_defconfig: 2 errors, 1 warning
malta_kvm_guest_defconfig: 2 errors, 1 warning
malta_qemu_32r6_defconfig: 2 errors, 1 warning
maltaaprp_defconfig: 2 errors, 1 warning
maltasmvp_defconfig: 2 errors, 1 warning
maltasmvp_eva_defconfig: 2 errors, 1 warning
maltaup_defconfig: 2 errors, 1 warning
maltaup_xpa_defconfig: 2 errors, 1 warning
markeins_defconfig: 2 errors, 1 warning
mips_paravirt_defconfig: 2 errors, 1 warning
mtx1_defconfig: 2 errors, 1 warning
nlm_xlp_defconfig: 4 errors, 1 warning
nlm_xlr_defconfig: 4 errors, 1 warning
pic32mzda_defconfig: 2 errors, 1 warning
pistachio_defconfig: 2 errors, 1 warning
qi_lb60_defconfig: 2 errors, 1 warning
rm200_defconfig: 2 errors, 1 warning
tb0219_defconfig: 2 errors, 1 warning
tb0287_defconfig: 2 errors, 1 warning
workpad_defconfig: 2 errors, 1 warning
Errors summary:
109 fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
68 fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
41 fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
5 fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
5 fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
Warnings summary:
109 cc1: some warnings being treated as errors
36 fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
12 arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
11 kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
11 include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
9 net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
9 net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
9 include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
7 warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
6 fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
5 lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
4 block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
2 arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
1 drivers/net/ethernet/amd/declance.c:1231:2: warning: 'desc' may be used uninitialized in this function [-Wmaybe-uninitialized]
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
acs5k_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (x86_64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (i386) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arc) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
assabet_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ath25_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath79_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axm55xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
axs103_defconfig (arc) — FAIL, 2 errors, 19 warnings, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
cc1: some warnings being treated as errors
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc) — FAIL, 2 errors, 20 warnings, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
cc1: some warnings being treated as errors
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
badge4_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
bcm2835_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bigsur_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
bmips_be_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
capcella_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
cerfcube_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ci20_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
clps711x_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
cm_x300_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
cns3420vb_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
collie_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
corgi_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
davinci_all_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
db1xxx_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
decstation_defconfig (mips) — FAIL, 2 errors, 2 warnings, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
drivers/net/ethernet/amd/declance.c:1231:2: warning: 'desc' may be used uninitialized in this function [-Wmaybe-uninitialized]
--------------------------------------------------------------------------------
defconfig (arm64) — FAIL, 4 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
dove_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
e55_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ebsa110_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
efm32_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
em_x270_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ep93xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
exynos_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ezx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
footbridge_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
gpr_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h3600_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h5000_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hackkit_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hisi_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
imote2_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
integrator_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop13xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
iop32x_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
iop33x_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ip22_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ip27_defconfig (mips) — FAIL, 4 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ip28_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ip32_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
jazz_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
jmr3927_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jornada720_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
keystone_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
ks8695_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lart_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
lasat_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
lemote2f_defconfig (mips) — FAIL, 4 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
loongson1b_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
loongson1c_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
loongson3_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpd270_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lubbock_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
magician_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mainstone_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
maltaup_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
markeins_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mini2440_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mmp2_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
moxart_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mpc30x_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mps2_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
msp71xx_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mtx1_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
multi_v4t_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v5_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
multi_v7_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mv78xx0_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mxs_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
neponset_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netwinder_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netx_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nhk8815_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips) — FAIL, 4 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips) — FAIL, 4 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/tree-log.c:5562:11: error: 'struct inode' has no member named 'vfs_inode'
fs/btrfs/tree-log.c:5563:11: error: 'struct inode' has no member named 'last_link_trans'
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc) — PASS, 0 errors, 6 warnings, 0 section mismatches
Warnings:
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc) — PASS, 0 errors, 8 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc) — PASS, 0 errors, 9 warnings, 0 section mismatches
Warnings:
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
nuc910_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
omap2plus_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
orion5x_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
palmz72_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
pcm027_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
pic32mzda_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
pistachio_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
pleb_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
prima2_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa910_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
qcom_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
raumfeld_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
rb532_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
realview_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rm200_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
rpc_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
rt305x_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s3c2410_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
s3c6400_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
s5pv210_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sama5_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shannon_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shmobile_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
simpad_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
socfpga_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
spear13xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
spear3xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
spear6xx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
spitz_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
stm32_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
tb0219_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
tb0226_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0287_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tegra_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
tinyconfig (arm64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arc) — PASS, 0 errors, 6 warnings, 0 section mismatches
Warnings:
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
--------------------------------------------------------------------------------
trizeps4_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
u300_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc) — FAIL, 2 errors, 20 warnings, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
cc1: some warnings being treated as errors
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc) — FAIL, 2 errors, 21 warnings, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
arch/arc/kernel/unwind.c:188:14: warning: 'unw_hdr_alloc' defined but not used [-Wunused-function]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
cc1: some warnings being treated as errors
block/cfq-iosched.c:3840:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
fs/ext4/ext4_jbd2.h:430:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
fs/posix_acl.c:34:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
versatile_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vexpress_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
vf610m4_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
workpad_defconfig (mips) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown' [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
xcep_defconfig (arm) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xway_defconfig (mips) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zebu_hs_defconfig (arc) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zebu_hs_smp_defconfig (arc) — PASS, 0 errors, 6 warnings, 0 section mismatches
Warnings:
kernel/sched/core.c:3294:1: warning: control reaches end of non-void function [-Wreturn-type]
include/linux/kernel.h:740:16: warning: comparison of distinct pointer types lacks a cast
net/core/ethtool.c:300:1: warning: control reaches end of non-void function [-Wreturn-type]
net/ipv4/tcp_input.c:4325:49: warning: array subscript is above array bounds [-Warray-bounds]
include/linux/sunrpc/svc_xprt.h:178:1: warning: control reaches end of non-void function [-Wreturn-type]
lib/cpumask.c:211:1: warning: control reaches end of non-void function [-Wreturn-type]
--------------------------------------------------------------------------------
zeus_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
zx_defconfig (arm) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
fs/ext4/inode.c:5018:6: error: implicit declaration of function 'sb_rdonly' [-Werror=implicit-function-declaration]
fs/ext4/inode.c:5021:15: error: implicit declaration of function 'ext4_forced_shutdown'; did you mean 'ext4_force_commit'? [-Werror=implicit-function-declaration]
Warnings:
cc1: some warnings being treated as errors
---
For more info write to <info(a)kernelci.org>