From: Oliver Hartkopp <socketcan(a)hartkopp.net>
Muyu Yu provided a POC where user root with CAP_NET_ADMIN can create a CAN
frame modification rule that makes the data length code a higher value than
the available CAN frame data size. In combination with a configured checksum
calculation where the result is stored relatively to the end of the data
(e.g. cgw_csum_xor_rel) the tail of the skb (e.g. frag_list pointer in
skb_shared_info) can be rewritten which finally can cause a system crash.
Michael Kubecek suggested to drop frames that have a DLC exceeding the
available space after the modification process and provided a patch that can
handle CAN FD frames too. Within this patch we also limit the length for the
checksum calculations to the maximum of Classic CAN data length (8).
CAN frames that are dropped by these additional checks are counted with the
CGW_DELETED counter which indicates misconfigurations in can-gw rules.
This fixes CVE-2019-3701.
Reported-by: Muyu Yu <ieatmuttonchuan(a)gmail.com>
Reported-by: Marcus Meissner <meissner(a)suse.de>
Suggested-by: Michal Kubecek <mkubecek(a)suse.cz>
Tested-by: Muyu Yu <ieatmuttonchuan(a)gmail.com>
Tested-by: Oliver Hartkopp <socketcan(a)hartkopp.net>
Signed-off-by: Oliver Hartkopp <socketcan(a)hartkopp.net>
Cc: linux-stable <stable(a)vger.kernel.org> # >= v3.2
Signed-off-by: Marc Kleine-Budde <mkl(a)pengutronix.de>
---
Hello,
I've removed the else from dlc length check. Keeps the code and the
patch more readable.
Marc
Changes since v2:
- add newline after goto (Tnx, Oliver)
Changes since v1:
- remove else from dlc length check.
net/can/gw.c | 30 +++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)
diff --git a/net/can/gw.c b/net/can/gw.c
index faa3da88a127..53859346dc9a 100644
--- a/net/can/gw.c
+++ b/net/can/gw.c
@@ -416,13 +416,29 @@ static void can_can_gw_rcv(struct sk_buff *skb, void *data)
while (modidx < MAX_MODFUNCTIONS && gwj->mod.modfunc[modidx])
(*gwj->mod.modfunc[modidx++])(cf, &gwj->mod);
- /* check for checksum updates when the CAN frame has been modified */
+ /* Has the CAN frame been modified? */
if (modidx) {
- if (gwj->mod.csumfunc.crc8)
+ /* get available space for the processed CAN frame type */
+ int max_len = nskb->len - offsetof(struct can_frame, data);
+
+ /* dlc may have changed, make sure it fits to the CAN frame */
+ if (cf->can_dlc > max_len)
+ goto out_delete;
+
+ /* check for checksum updates in classic CAN length only */
+ if (gwj->mod.csumfunc.crc8) {
+ if (cf->can_dlc > 8)
+ goto out_delete;
+
(*gwj->mod.csumfunc.crc8)(cf, &gwj->mod.csum.crc8);
+ }
+
+ if (gwj->mod.csumfunc.xor) {
+ if (cf->can_dlc > 8)
+ goto out_delete;
- if (gwj->mod.csumfunc.xor)
(*gwj->mod.csumfunc.xor)(cf, &gwj->mod.csum.xor);
+ }
}
/* clear the skb timestamp if not configured the other way */
@@ -434,6 +450,14 @@ static void can_can_gw_rcv(struct sk_buff *skb, void *data)
gwj->dropped_frames++;
else
gwj->handled_frames++;
+
+ return;
+
+ out_delete:
+ /* delete frame due to misconfiguration */
+ gwj->deleted_frames++;
+ kfree_skb(nskb);
+ return;
}
static inline int cgw_register_filter(struct net *net, struct cgw_job *gwj)
--
2.20.1
Commit '3d035f580699 ("drivers/char/hpet.c: allow user controlled mmap for
user processes")' introduced a new kernel command line parameter hpet_mmap,
that is required to expose the memory map of the HPET registers to
user-space. Unfortunately the kernel command line parameter 'hpet_mmap' is
broken and never takes effect due to missing '=' character in the __setup()
code of hpet_mmap_enable.
Before this patch:
dmesg output with the kernel command line parameter hpet_mmap=1
[ 0.204152] HPET mmap disabled
dmesg output with the kernel command line parameter hpet_mmap=0
[ 0.204192] HPET mmap disabled
After this patch:
dmesg output with the kernel command line parameter hpet_mmap=1
[ 0.203945] HPET mmap enabled
dmesg output with the kernel command line parameter hpet_mmap=0
[ 0.204652] HPET mmap disabled
Fixes: 3d035f580699 ("drivers/char/hpet.c: allow user controlled mmap for user processes")
Signed-off-by: Buland Singh <bsingh(a)redhat.com>
---
drivers/char/hpet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c
index 4a22b4b41aef..9bffcd37cc7b 100644
--- a/drivers/char/hpet.c
+++ b/drivers/char/hpet.c
@@ -377,7 +377,7 @@ static __init int hpet_mmap_enable(char *str)
pr_info("HPET mmap %s\n", hpet_mmap_enabled ? "enabled" : "disabled");
return 1;
}
-__setup("hpet_mmap", hpet_mmap_enable);
+__setup("hpet_mmap=", hpet_mmap_enable);
static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
{
--
2.19.1
stable-rc/linux-4.9.y build: 193 builds: 109 failed, 84 passed, 233 errors, 231 warnings (v4.9.148-72-g1f2b850ae45e)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.148-72-…
Tree: stable-rc
Branch: linux-4.9.y
Git Describe: v4.9.148-72-g1f2b850ae45e
Git Commit: 1f2b850ae45ebdd8f3019fa1774e35accecd5734
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: 5 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: 5 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: 5 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: 5 errors, 1 warning
nlm_xlr_defconfig: 5 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'
5 fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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 (arm64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (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 (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]
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]
cc1: some warnings being treated as errors
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]
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]
--------------------------------------------------------------------------------
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:
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]
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]
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]
arch/arc/include/asm/cmpxchg.h:95:29: warning: value computed is not used [-Wunused-value]
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]
fs/posix_acl.c:34: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]
include/linux/sunrpc/svc_xprt.h:178: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, 5 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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, 5 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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, 5 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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
--------------------------------------------------------------------------------
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, 5 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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, 5 errors, 1 warning, 0 section mismatches
Errors:
fs/btrfs/extent-tree.c:9255:8: error: too few arguments to function 'btrfs_run_delayed_items'
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]
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]
--------------------------------------------------------------------------------
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
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]
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc) — PASS, 0 errors, 9 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
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 (x86_64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386) — 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]
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
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]
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]
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]
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]
--------------------------------------------------------------------------------
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
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
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]
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]
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]
lib/cpumask.c:211: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:
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]
--------------------------------------------------------------------------------
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>
Hi Greg,
Kindly review and consider following mm/OOM upstream fixes for stable 4.9.y.
88ed365ea227 ("mm: don't steal highatomic pageblock")
04c8716f7b00 ("mm: try to exhaust highatomic reserve before the OOM")
29fac03bef72 ("mm: make unreserve highatomic functions reliable")
The original 4 patch series is archived here
https://lkml.org/lkml/2016/10/12/77 for review.
One of the patch from this series:
4855e4a7f29d ("mm: prevent double decrease of nr_reserved_highatomic")
has already been picked up for 4.9.y and 4.4.y.
I ran into these fixes in one of the msm-4.9(android) trees.
Cherry-picked and build tested on Linux 4.9.148 for
ARCH=arm/arm64 defconfig.
Only the first patch from this series can be applied cleanly on
v4.4.y, while others fail to apply cleanly due to OOM rework done in
v4.7 release cycle, 0a0337e0d1d1 ("mm, oom: rework oom detection").
Plus I don't see this series backported to v4.4 in any of the
msm-4.4(android) trees either. So I'm skipping it for v4.4.y.
Regards,
Amit Pundir
Delay the drm_modeset_acquire_init() until after we check for an
allocation failure so that we can return immediately upon error without
having to unwind.
WARNING: lock held when returning to user space!
4.20.0+ #174 Not tainted
------------------------------------------------
syz-executor556/8153 is leaving the kernel with locks still held!
1 lock held by syz-executor556/8153:
#0: 000000005100c85c (crtc_ww_class_acquire){+.+.}, at:
set_property_atomic+0xb3/0x330 drivers/gpu/drm/drm_mode_object.c:462
Reported-by: syzbot+6ea337c427f5083ebdf2(a)syzkaller.appspotmail.com
Fixes: 144a7999d633 ("drm: Handle properties in the core for atomic drivers")
Signed-off-by: Chris Wilson <chris(a)chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter(a)ffwll.ch>
Cc: Maarten Lankhorst <maarten.lankhorst(a)linux.intel.com>
Cc: Sean Paul <sean(a)poorly.run>
Cc: David Airlie <airlied(a)linux.ie>
Cc: <stable(a)vger.kernel.org> # v4.14+
---
drivers/gpu/drm/drm_mode_object.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/drm_mode_object.c b/drivers/gpu/drm/drm_mode_object.c
index bb1dd46496cd..a9005c1c2384 100644
--- a/drivers/gpu/drm/drm_mode_object.c
+++ b/drivers/gpu/drm/drm_mode_object.c
@@ -459,12 +459,13 @@ static int set_property_atomic(struct drm_mode_object *obj,
struct drm_modeset_acquire_ctx ctx;
int ret;
- drm_modeset_acquire_init(&ctx, 0);
-
state = drm_atomic_state_alloc(dev);
if (!state)
return -ENOMEM;
+
+ drm_modeset_acquire_init(&ctx, 0);
state->acquire_ctx = &ctx;
+
retry:
if (prop == state->dev->mode_config.dpms_property) {
if (obj->type != DRM_MODE_OBJECT_CONNECTOR) {
--
2.20.1
The patch below does not apply to the 4.14-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable(a)vger.kernel.org>.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
>From 53290432145a8eb143fe29e06e9c1465d43dc723 Mon Sep 17 00:00:00 2001
From: Will Deacon <will.deacon(a)arm.com>
Date: Thu, 3 Jan 2019 18:00:39 +0000
Subject: [PATCH] arm64: compat: Don't pull syscall number from regs in
arm_compat_syscall
The syscall number may have been changed by a tracer, so we should pass
the actual number in from the caller instead of pulling it from the
saved r7 value directly.
Cc: <stable(a)vger.kernel.org>
Cc: Pi-Hsun Shih <pihsun(a)chromium.org>
Reviewed-by: Dave Martin <Dave.Martin(a)arm.com>
Signed-off-by: Will Deacon <will.deacon(a)arm.com>
diff --git a/arch/arm64/kernel/sys_compat.c b/arch/arm64/kernel/sys_compat.c
index a79db4e485a6..bc348ab3dd6b 100644
--- a/arch/arm64/kernel/sys_compat.c
+++ b/arch/arm64/kernel/sys_compat.c
@@ -66,12 +66,11 @@ do_compat_cache_op(unsigned long start, unsigned long end, int flags)
/*
* Handle all unrecognised system calls.
*/
-long compat_arm_syscall(struct pt_regs *regs)
+long compat_arm_syscall(struct pt_regs *regs, int scno)
{
- unsigned int no = regs->regs[7];
void __user *addr;
- switch (no) {
+ switch (scno) {
/*
* Flush a region from virtual address 'r0' to virtual address 'r1'
* _exclusive_. There is no alignment requirement on either address;
@@ -107,7 +106,7 @@ long compat_arm_syscall(struct pt_regs *regs)
* way the calling program can gracefully determine whether
* a feature is supported.
*/
- if (no < __ARM_NR_COMPAT_END)
+ if (scno < __ARM_NR_COMPAT_END)
return -ENOSYS;
break;
}
@@ -116,6 +115,6 @@ long compat_arm_syscall(struct pt_regs *regs)
(compat_thumb_mode(regs) ? 2 : 4);
arm64_notify_die("Oops - bad compat syscall(2)", regs,
- SIGILL, ILL_ILLTRP, addr, no);
+ SIGILL, ILL_ILLTRP, addr, scno);
return 0;
}
diff --git a/arch/arm64/kernel/syscall.c b/arch/arm64/kernel/syscall.c
index 032d22312881..5610ac01c1ec 100644
--- a/arch/arm64/kernel/syscall.c
+++ b/arch/arm64/kernel/syscall.c
@@ -13,16 +13,15 @@
#include <asm/thread_info.h>
#include <asm/unistd.h>
-long compat_arm_syscall(struct pt_regs *regs);
-
+long compat_arm_syscall(struct pt_regs *regs, int scno);
long sys_ni_syscall(void);
-asmlinkage long do_ni_syscall(struct pt_regs *regs)
+static long do_ni_syscall(struct pt_regs *regs, int scno)
{
#ifdef CONFIG_COMPAT
long ret;
if (is_compat_task()) {
- ret = compat_arm_syscall(regs);
+ ret = compat_arm_syscall(regs, scno);
if (ret != -ENOSYS)
return ret;
}
@@ -47,7 +46,7 @@ static void invoke_syscall(struct pt_regs *regs, unsigned int scno,
syscall_fn = syscall_table[array_index_nospec(scno, sc_nr)];
ret = __invoke_syscall(regs, syscall_fn);
} else {
- ret = do_ni_syscall(regs);
+ ret = do_ni_syscall(regs, scno);
}
regs->regs[0] = ret;