Calling ql_log() inside qla2x00_port_speed_show() is causing messages
to be output to the console for no particularly good reason. The sysfs
read routine should just return the information to userspace. The only
reason to log a message is when the port speed actually changes, and
this already occurs elsewhere.
Cc: <stable(a)vger.kernel.org> # v5.1+
Fixes: 4910b524ac9 ("scsi: qla2xxx: Add support for setting port speed")
Signed-off-by: Ewan D. Milne <emilne(a)redhat.com>
---
drivers/scsi/qla2xxx/qla_attr.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
index 3325596..2c9e5ac 100644
--- a/drivers/scsi/qla2xxx/qla_attr.c
+++ b/drivers/scsi/qla2xxx/qla_attr.c
@@ -1850,9 +1850,6 @@ qla2x00_port_speed_show(struct device *dev, struct device_attribute *attr,
return -EINVAL;
}
- ql_log(ql_log_info, vha, 0x70d6,
- "port speed:%d\n", ha->link_data_rate);
-
return scnprintf(buf, PAGE_SIZE, "%s\n", spd[ha->link_data_rate]);
}
--
2.1.0
When the controller is reconnecting, the host fails I/O and admin
commands as the host cannot reach the controller. ns scanning may
revalidate namespaces during that period and it is wrong to remove
namespaces due to these failures as we may hang (see 205da2434301).
One command that may fail is nvme_identify_ns_descs. Since we return
success due to having ns descriptor list optional, we continue to
validate ns identifiers in nvme_revalidate_disk, obviously fail and
return -ENODEV to nvme_validate_ns, which will remove the namespace.
Exactly what we don't want to happen.
Fixes: 22802bf742c2 ("nvme: Namepace identification descriptor list is optional")
Tested-by: Anton Eidelman <anton(a)lightbitslabs.com>
Signed-off-by: Sagi Grimberg <sagi(a)grimberg.me>
Signed-off-by: Sagi Grimberg <sagi(a)grimberg.me>
---
drivers/nvme/host/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 31b7dcd791c2..8ce9b4fbc821 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -1746,7 +1746,7 @@ static int nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid,
if (ret)
dev_warn(ctrl->device,
"Identify Descriptors failed (%d)\n", ret);
- if (ret > 0)
+ if (ret > 0 && !(ret & NVME_SC_DNR))
ret = 0;
}
return ret;
--
2.20.1
The patch titled
Subject: lib/lzo: fix ambiguous encoding bug in lzo-rle
has been added to the -mm tree. Its filename is
lib-lzo-fix-ambiguous-encoding-bug-in-lzo-rle.patch
This patch should soon appear at
http://ozlabs.org/~akpm/mmots/broken-out/lib-lzo-fix-ambiguous-encoding-bug…
and later at
http://ozlabs.org/~akpm/mmotm/broken-out/lib-lzo-fix-ambiguous-encoding-bug…
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Dave Rodgman <dave.rodgman(a)arm.com>
Subject: lib/lzo: fix ambiguous encoding bug in lzo-rle
In some rare cases, for input data over 32 KB, lzo-rle could encode two
different inputs to the same compressed representation, so that
decompression is then ambiguous (i.e. data may be corrupted - although
zram is not affected because it operates over 4 KB pages).
This modifies the compressor without changing the decompressor or the
bitstream format, such that:
- there is no change to how data produced by the old compressor is
decompressed
- an old decompressor will correctly decode data from the updated
compressor
- performance and compression ratio are not affected
- we avoid introducing a new bitstream format
In testing over 12.8M real-world files totalling 903 GB, three files were
affected by this bug. I also constructed 37M semi-random 64 KB files
totalling 2.27 TB, and saw no affected files. Finally I tested over files
constructed to contain each of the ~1024 possible bad input sequences; for
all of these cases, updated lzo-rle worked correctly.
There is no significant impact to performance or compression ratio.
Link: http://lkml.kernel.org/r/20200507100203.29785-1-dave.rodgman@arm.com
Signed-off-by: Dave Rodgman <dave.rodgman(a)arm.com>
Cc: Mark Rutland <mark.rutland(a)arm.com>
Cc: Dave Rodgman <dave.rodgman(a)arm.com>
Cc: Willy Tarreau <w(a)1wt.eu>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work(a)gmail.com>
Cc: Markus F.X.J. Oberhumer <markus(a)oberhumer.com>
Cc: Minchan Kim <minchan(a)kernel.org>
Cc: Nitin Gupta <ngupta(a)vflare.org>
Cc: Chao Yu <yuchao0(a)huawei.com>
Cc: <stable(a)vger.kernel.org>
Signed-off-by: Andrew Morton <akpm(a)linux-foundation.org>
---
Documentation/lzo.txt | 8 ++++++--
lib/lzo/lzo1x_compress.c | 13 +++++++++++++
2 files changed, 19 insertions(+), 2 deletions(-)
--- a/Documentation/lzo.txt~lib-lzo-fix-ambiguous-encoding-bug-in-lzo-rle
+++ a/Documentation/lzo.txt
@@ -159,11 +159,15 @@ Byte sequences
distance = 16384 + (H << 14) + D
state = S (copy S literals after this block)
End of stream is reached if distance == 16384
+ In version 1 only, to prevent ambiguity with the RLE case when
+ ((distance & 0x803f) == 0x803f) && (261 <= length <= 264), the
+ compressor must not emit block copies where distance and length
+ meet these conditions.
In version 1 only, this instruction is also used to encode a run of
- zeros if distance = 0xbfff, i.e. H = 1 and the D bits are all 1.
+ zeros if distance = 0xbfff, i.e. H = 1 and the D bits are all 1.
In this case, it is followed by a fourth byte, X.
- run length = ((X << 3) | (0 0 0 0 0 L L L)) + 4.
+ run length = ((X << 3) | (0 0 0 0 0 L L L)) + 4
0 0 1 L L L L L (32..63)
Copy of small block within 16kB distance (preferably less than 34B)
--- a/lib/lzo/lzo1x_compress.c~lib-lzo-fix-ambiguous-encoding-bug-in-lzo-rle
+++ a/lib/lzo/lzo1x_compress.c
@@ -268,6 +268,19 @@ m_len_done:
*op++ = (M4_MARKER | ((m_off >> 11) & 8)
| (m_len - 2));
else {
+ if (unlikely(((m_off & 0x403f) == 0x403f)
+ && (m_len >= 261)
+ && (m_len <= 264))
+ && likely(bitstream_version)) {
+ // Under lzo-rle, block copies
+ // for 261 <= length <= 264 and
+ // (distance & 0x80f3) == 0x80f3
+ // can result in ambiguous
+ // output. Adjust length
+ // to 260 to prevent ambiguity.
+ ip -= m_len - 260;
+ m_len = 260;
+ }
m_len -= M4_MAX_LEN;
*op++ = (M4_MARKER | ((m_off >> 11) & 8));
while (unlikely(m_len > 255)) {
_
Patches currently in -mm which might be from dave.rodgman(a)arm.com are
lib-lzo-fix-ambiguous-encoding-bug-in-lzo-rle.patch
stable-rc/linux-4.4.y build: 190 builds: 65 failed, 125 passed, 1778 errors, 12 warnings (v4.4.222-321-gb1cd678a0c39)
Full Build Summary: https://kernelci.org/build/stable-rc/branch/linux-4.4.y/kernel/v4.4.222-321…
Tree: stable-rc
Branch: linux-4.4.y
Git Describe: v4.4.222-321-gb1cd678a0c39
Git Commit: b1cd678a0c3999314bdefe2f279faaa2d2ef5c01
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Built: 6 unique architectures
Build Failures Detected:
arm:
cm_x300_defconfig: (gcc-8) FAIL
multi_v7_defconfig: (gcc-8) FAIL
mvebu_v7_defconfig: (gcc-8) FAIL
pxa3xx_defconfig: (gcc-8) FAIL
raumfeld_defconfig: (gcc-8) FAIL
mips:
allnoconfig: (gcc-8) FAIL
ar7_defconfig: (gcc-8) FAIL
ath79_defconfig: (gcc-8) FAIL
bcm47xx_defconfig: (gcc-8) FAIL
bcm63xx_defconfig: (gcc-8) FAIL
bigsur_defconfig: (gcc-8) FAIL
bmips_be_defconfig: (gcc-8) FAIL
bmips_stb_defconfig: (gcc-8) FAIL
capcella_defconfig: (gcc-8) FAIL
cavium_octeon_defconfig: (gcc-8) FAIL
ci20_defconfig: (gcc-8) FAIL
cobalt_defconfig: (gcc-8) FAIL
db1xxx_defconfig: (gcc-8) FAIL
decstation_defconfig: (gcc-8) FAIL
e55_defconfig: (gcc-8) FAIL
fuloong2e_defconfig: (gcc-8) FAIL
gpr_defconfig: (gcc-8) FAIL
ip22_defconfig: (gcc-8) FAIL
ip27_defconfig: (gcc-8) FAIL
ip28_defconfig: (gcc-8) FAIL
ip32_defconfig: (gcc-8) FAIL
jazz_defconfig: (gcc-8) FAIL
jmr3927_defconfig: (gcc-8) FAIL
lasat_defconfig: (gcc-8) FAIL
lemote2f_defconfig: (gcc-8) FAIL
loongson3_defconfig: (gcc-8) FAIL
ls1b_defconfig: (gcc-8) FAIL
malta_defconfig: (gcc-8) FAIL
malta_kvm_defconfig: (gcc-8) FAIL
malta_kvm_guest_defconfig: (gcc-8) FAIL
malta_qemu_32r6_defconfig: (gcc-8) FAIL
maltaaprp_defconfig: (gcc-8) FAIL
maltasmvp_defconfig: (gcc-8) FAIL
maltasmvp_eva_defconfig: (gcc-8) FAIL
maltaup_defconfig: (gcc-8) FAIL
maltaup_xpa_defconfig: (gcc-8) FAIL
markeins_defconfig: (gcc-8) FAIL
mips_paravirt_defconfig: (gcc-8) FAIL
mpc30x_defconfig: (gcc-8) FAIL
msp71xx_defconfig: (gcc-8) FAIL
mtx1_defconfig: (gcc-8) FAIL
nlm_xlp_defconfig: (gcc-8) FAIL
nlm_xlr_defconfig: (gcc-8) FAIL
pistachio_defconfig: (gcc-8) FAIL
pnx8335_stb225_defconfig: (gcc-8) FAIL
qi_lb60_defconfig: (gcc-8) FAIL
rb532_defconfig: (gcc-8) FAIL
rbtx49xx_defconfig: (gcc-8) FAIL
rm200_defconfig: (gcc-8) FAIL
rt305x_defconfig: (gcc-8) FAIL
sb1250_swarm_defconfig: (gcc-8) FAIL
sead3_defconfig: (gcc-8) FAIL
sead3micro_defconfig: (gcc-8) FAIL
tb0219_defconfig: (gcc-8) FAIL
tb0226_defconfig: (gcc-8) FAIL
tb0287_defconfig: (gcc-8) FAIL
tinyconfig: (gcc-8) FAIL
workpad_defconfig: (gcc-8) FAIL
xilfpga_defconfig: (gcc-8) FAIL
xway_defconfig: (gcc-8) FAIL
Errors and Warnings Detected:
arc:
allnoconfig (gcc-8): 3 warnings
tinyconfig (gcc-8): 4 warnings
arm64:
arm:
clps711x_defconfig (gcc-8): 1 warning
cm_x300_defconfig (gcc-8): 1 error
davinci_all_defconfig (gcc-8): 1 warning
lpc32xx_defconfig (gcc-8): 1 warning
multi_v7_defconfig (gcc-8): 2 errors, 1 warning
mvebu_v7_defconfig (gcc-8): 1 error
mxs_defconfig (gcc-8): 1 warning
pxa3xx_defconfig (gcc-8): 1 error
raumfeld_defconfig (gcc-8): 1 error
i386:
mips:
allnoconfig (gcc-8): 48 errors
ar7_defconfig (gcc-8): 48 errors
ath79_defconfig (gcc-8): 48 errors
bcm47xx_defconfig (gcc-8): 32 errors
bcm63xx_defconfig (gcc-8): 32 errors
bigsur_defconfig (gcc-8): 50 errors
bmips_be_defconfig (gcc-8): 50 errors
bmips_stb_defconfig (gcc-8): 32 errors
capcella_defconfig (gcc-8): 16 errors
cavium_octeon_defconfig (gcc-8): 34 errors
ci20_defconfig (gcc-8): 50 errors
cobalt_defconfig (gcc-8): 32 errors
db1xxx_defconfig (gcc-8): 32 errors
decstation_defconfig (gcc-8): 32 errors
e55_defconfig (gcc-8): 34 errors
fuloong2e_defconfig (gcc-8): 16 errors
gpr_defconfig (gcc-8): 32 errors
ip22_defconfig (gcc-8): 48 errors
ip27_defconfig (gcc-8): 16 errors
ip28_defconfig (gcc-8): 16 errors
ip32_defconfig (gcc-8): 16 errors
jazz_defconfig (gcc-8): 32 errors
jmr3927_defconfig (gcc-8): 48 errors
lasat_defconfig (gcc-8): 16 errors
lemote2f_defconfig (gcc-8): 16 errors
loongson3_defconfig (gcc-8): 16 errors
ls1b_defconfig (gcc-8): 48 errors
malta_defconfig (gcc-8): 16 errors
malta_kvm_defconfig (gcc-8): 16 errors
malta_kvm_guest_defconfig (gcc-8): 32 errors
malta_qemu_32r6_defconfig (gcc-8): 32 errors
maltaaprp_defconfig (gcc-8): 16 errors
maltasmvp_defconfig (gcc-8): 16 errors
maltasmvp_eva_defconfig (gcc-8): 34 errors
maltaup_defconfig (gcc-8): 16 errors
maltaup_xpa_defconfig (gcc-8): 16 errors
markeins_defconfig (gcc-8): 34 errors
mips_paravirt_defconfig (gcc-8): 16 errors
mpc30x_defconfig (gcc-8): 34 errors
msp71xx_defconfig (gcc-8): 16 errors
mtx1_defconfig (gcc-8): 32 errors
nlm_xlp_defconfig (gcc-8): 50 errors
nlm_xlr_defconfig (gcc-8): 16 errors
pistachio_defconfig (gcc-8): 48 errors
pnx8335_stb225_defconfig (gcc-8): 16 errors
qi_lb60_defconfig (gcc-8): 50 errors
rb532_defconfig (gcc-8): 50 errors
rbtx49xx_defconfig (gcc-8): 50 errors
rm200_defconfig (gcc-8): 16 errors
rt305x_defconfig (gcc-8): 16 errors
sb1250_swarm_defconfig (gcc-8): 16 errors
sead3_defconfig (gcc-8): 16 errors
sead3micro_defconfig (gcc-8): 16 errors
tb0219_defconfig (gcc-8): 50 errors
tb0226_defconfig (gcc-8): 16 errors
tb0287_defconfig (gcc-8): 32 errors
tinyconfig (gcc-8): 16 errors
workpad_defconfig (gcc-8): 50 errors
xilfpga_defconfig (gcc-8): 16 errors
xway_defconfig (gcc-8): 16 errors
x86_64:
Errors summary:
872 arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
872 arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
14 arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
13 arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
3 drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘nop’?
1 drivers/of/of_mdio.c:381:22: error: ‘struct phy_device’ has no member named ‘mdio’; did you mean ‘mdix’?
1 drivers/of/of_mdio.c:379:2: error: implicit declaration of function ‘fixed_phy_unregister’; did you mean ‘fixed_phy_register’? [-Werror=implicit-function-declaration]
1 drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘up’?
1 arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_DPH_MASK’?
Warnings summary:
7 warning: (ARC) selects HAVE_FUTEX_CMPXCHG which has unmet direct dependencies (FUTEX)
1 cc1: some warnings being treated as errors
1 arch/arm/mach-mxs/mach-mxs.c:285:26: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-lpc32xx/phy3250.c:215:36: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-davinci/da8xx-dt.c:23:34: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
1 arch/arm/mach-clps711x/board-autcpu12.c:163:26: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arc, gcc-8) — PASS, 0 errors, 3 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)
--------------------------------------------------------------------------------
allnoconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
bcm_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-8) — FAIL, 34 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
clps711x_defconfig (arm, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-clps711x/board-autcpu12.c:163:26: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-8) — FAIL, 1 error, 0 warnings, 0 section mismatches
Errors:
drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘nop’?
--------------------------------------------------------------------------------
cns3420vb_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-davinci/da8xx-dt.c:23:34: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
defconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-8) — FAIL, 34 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-lpc32xx/phy3250.c:215:36: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ls1b_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-8) — FAIL, 34 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-8) — FAIL, 34 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
moxart_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-8) — FAIL, 34 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-8) — FAIL, 2 errors, 1 warning, 0 section mismatches
Errors:
drivers/of/of_mdio.c:379:2: error: implicit declaration of function ‘fixed_phy_unregister’; did you mean ‘fixed_phy_register’? [-Werror=implicit-function-declaration]
drivers/of/of_mdio.c:381:22: error: ‘struct phy_device’ has no member named ‘mdio’; did you mean ‘mdix’?
Warnings:
cc1: some warnings being treated as errors
--------------------------------------------------------------------------------
mv78xx0_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-8) — FAIL, 1 error, 0 warnings, 0 section mismatches
Errors:
drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘up’?
--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-8) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
arch/arm/mach-mxs/mach-mxs.c:285:26: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pistachio_defconfig (mips, gcc-8) — FAIL, 48 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-8) — FAIL, 1 error, 0 warnings, 0 section mismatches
Errors:
drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘nop’?
--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_DPH_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
raumfeld_defconfig (arm, gcc-8) — FAIL, 1 error, 0 warnings, 0 section mismatches
Errors:
drivers/mtd/nand/pxa3xx_nand.c:1753:7: error: ‘np’ undeclared (first use in this function); did you mean ‘nop’?
--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
realview-smp_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
sead3_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
sead3micro_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-8) — FAIL, 32 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arm64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
tinyconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-8) — PASS, 0 errors, 4 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)
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-8) — FAIL, 50 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/mm/tlbex.c:2334:13: error: ‘MIPS_PWSIZE_PS_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWSIZE_PTW_MASK’?
arch/mips/mm/tlbex.c:2350:13: error: ‘MIPS_PWCTL_XU_MASK’ undeclared (first use in this function); did you mean ‘MIPS_PWCTL_PSN_MASK’?
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
xway_defconfig (mips, gcc-8) — FAIL, 16 errors, 0 warnings, 0 section mismatches
Errors:
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:204:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
arch/mips/include/asm/msa.h:219:2: error: expected ‘:’ or ‘)’ before ‘_ASM_INSN_IF_MIPS’
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-8) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info(a)kernelci.org>
We recorded the dependencies for WAIT_FOR_SUBMIT in order that we could
correctly perform priority inheritance from the parallel branches to the
common trunk. However, for the purpose of timeslicing and reset
handling, the dependency is weak -- as we the pair of requests are
allowed to run in parallel and not in strict succession. So for example
we do need to suspend one if the other hangs.
The real significance though is that this allows us to rearrange
groups of WAIT_FOR_SUBMIT linked requests along the single engine, and
so can resolve user level inter-batch scheduling dependencies from user
semaphores.
Fixes: c81471f5e95c ("drm/i915: Copy across scheduler behaviour flags across submit fences")
Testcase: igt/gem_exec_fence/submit
Signed-off-by: Chris Wilson <chris(a)chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin(a)intel.com>
Cc: <stable(a)vger.kernel.org> # v5.6+
---
drivers/gpu/drm/i915/gt/intel_lrc.c | 9 +++++++++
drivers/gpu/drm/i915/i915_request.c | 8 ++++++--
drivers/gpu/drm/i915/i915_scheduler.c | 6 +++---
drivers/gpu/drm/i915/i915_scheduler.h | 3 ++-
drivers/gpu/drm/i915/i915_scheduler_types.h | 1 +
5 files changed, 21 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
index dc3f2ee7136d..10109f661bcb 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.c
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
@@ -1880,6 +1880,9 @@ static void defer_request(struct i915_request *rq, struct list_head * const pl)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Leave semaphores spinning on the other engines */
if (w->engine != rq->engine)
continue;
@@ -2726,6 +2729,9 @@ static void __execlists_hold(struct i915_request *rq)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Leave semaphores spinning on the other engines */
if (w->engine != rq->engine)
continue;
@@ -2850,6 +2856,9 @@ static void __execlists_unhold(struct i915_request *rq)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Propagate any change in error status */
if (rq->fence.error)
i915_request_set_error_once(w, rq->fence.error);
diff --git a/drivers/gpu/drm/i915/i915_request.c b/drivers/gpu/drm/i915/i915_request.c
index 4d18f808fda2..3c38d61c90f8 100644
--- a/drivers/gpu/drm/i915/i915_request.c
+++ b/drivers/gpu/drm/i915/i915_request.c
@@ -1040,7 +1040,9 @@ i915_request_await_request(struct i915_request *to, struct i915_request *from)
}
if (to->engine->schedule) {
- ret = i915_sched_node_add_dependency(&to->sched, &from->sched);
+ ret = i915_sched_node_add_dependency(&to->sched,
+ &from->sched,
+ I915_DEPENDENCY_EXTERNAL);
if (ret < 0)
return ret;
}
@@ -1202,7 +1204,9 @@ __i915_request_await_execution(struct i915_request *to,
/* Couple the dependency tree for PI on this exposed to->fence */
if (to->engine->schedule) {
- err = i915_sched_node_add_dependency(&to->sched, &from->sched);
+ err = i915_sched_node_add_dependency(&to->sched,
+ &from->sched,
+ I915_DEPENDENCY_WEAK);
if (err < 0)
return err;
}
diff --git a/drivers/gpu/drm/i915/i915_scheduler.c b/drivers/gpu/drm/i915/i915_scheduler.c
index 37cfcf5b321b..6e2d4190099f 100644
--- a/drivers/gpu/drm/i915/i915_scheduler.c
+++ b/drivers/gpu/drm/i915/i915_scheduler.c
@@ -462,7 +462,8 @@ bool __i915_sched_node_add_dependency(struct i915_sched_node *node,
}
int i915_sched_node_add_dependency(struct i915_sched_node *node,
- struct i915_sched_node *signal)
+ struct i915_sched_node *signal,
+ unsigned long flags)
{
struct i915_dependency *dep;
@@ -473,8 +474,7 @@ int i915_sched_node_add_dependency(struct i915_sched_node *node,
local_bh_disable();
if (!__i915_sched_node_add_dependency(node, signal, dep,
- I915_DEPENDENCY_EXTERNAL |
- I915_DEPENDENCY_ALLOC))
+ flags | I915_DEPENDENCY_ALLOC))
i915_dependency_free(dep);
local_bh_enable(); /* kick submission tasklet */
diff --git a/drivers/gpu/drm/i915/i915_scheduler.h b/drivers/gpu/drm/i915/i915_scheduler.h
index d1dc4efef77b..6f0bf00fc569 100644
--- a/drivers/gpu/drm/i915/i915_scheduler.h
+++ b/drivers/gpu/drm/i915/i915_scheduler.h
@@ -34,7 +34,8 @@ bool __i915_sched_node_add_dependency(struct i915_sched_node *node,
unsigned long flags);
int i915_sched_node_add_dependency(struct i915_sched_node *node,
- struct i915_sched_node *signal);
+ struct i915_sched_node *signal,
+ unsigned long flags);
void i915_sched_node_fini(struct i915_sched_node *node);
diff --git a/drivers/gpu/drm/i915/i915_scheduler_types.h b/drivers/gpu/drm/i915/i915_scheduler_types.h
index d18e70550054..7186875088a0 100644
--- a/drivers/gpu/drm/i915/i915_scheduler_types.h
+++ b/drivers/gpu/drm/i915/i915_scheduler_types.h
@@ -78,6 +78,7 @@ struct i915_dependency {
unsigned long flags;
#define I915_DEPENDENCY_ALLOC BIT(0)
#define I915_DEPENDENCY_EXTERNAL BIT(1)
+#define I915_DEPENDENCY_WEAK BIT(2)
};
#endif /* _I915_SCHEDULER_TYPES_H_ */
--
2.20.1
We recorded the dependencies for WAIT_FOR_SUBMIT in order that we could
correctly perform priority inheritance from the parallel branches to the
common trunk. However, for the purpose of timeslicing and reset
handling, the dependency is weak -- as we the pair of requests are
allowed to run in parallel and not in strict succession. So for example
we do need to suspend one if the other hangs.
The real significance though is that this allows us to rearrange
groups of WAIT_FOR_SUBMIT linked requests along the single engine, and
so can resolve user level inter-batch scheduling dependencies from user
semaphores.
Fixes: c81471f5e95c ("drm/i915: Copy across scheduler behaviour flags across submit fences")
Testcase: igt/gem_exec_fence/submit
Signed-off-by: Chris Wilson <chris(a)chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin(a)intel.com>
Cc: <stable(a)vger.kernel.org> # v5.6+
---
drivers/gpu/drm/i915/gt/intel_lrc.c | 9 +++++++++
drivers/gpu/drm/i915/i915_request.c | 8 ++++++--
drivers/gpu/drm/i915/i915_scheduler.c | 6 +++---
drivers/gpu/drm/i915/i915_scheduler.h | 3 ++-
drivers/gpu/drm/i915/i915_scheduler_types.h | 1 +
5 files changed, 21 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
index bbdb0e2a4571..860ef97895c8 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.c
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
@@ -1880,6 +1880,9 @@ static void defer_request(struct i915_request *rq, struct list_head * const pl)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Leave semaphores spinning on the other engines */
if (w->engine != rq->engine)
continue;
@@ -2726,6 +2729,9 @@ static void __execlists_hold(struct i915_request *rq)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Leave semaphores spinning on the other engines */
if (w->engine != rq->engine)
continue;
@@ -2850,6 +2856,9 @@ static void __execlists_unhold(struct i915_request *rq)
struct i915_request *w =
container_of(p->waiter, typeof(*w), sched);
+ if (p->flags & I915_DEPENDENCY_WEAK)
+ continue;
+
/* Propagate any change in error status */
if (rq->fence.error)
i915_request_set_error_once(w, rq->fence.error);
diff --git a/drivers/gpu/drm/i915/i915_request.c b/drivers/gpu/drm/i915/i915_request.c
index 4d18f808fda2..3c38d61c90f8 100644
--- a/drivers/gpu/drm/i915/i915_request.c
+++ b/drivers/gpu/drm/i915/i915_request.c
@@ -1040,7 +1040,9 @@ i915_request_await_request(struct i915_request *to, struct i915_request *from)
}
if (to->engine->schedule) {
- ret = i915_sched_node_add_dependency(&to->sched, &from->sched);
+ ret = i915_sched_node_add_dependency(&to->sched,
+ &from->sched,
+ I915_DEPENDENCY_EXTERNAL);
if (ret < 0)
return ret;
}
@@ -1202,7 +1204,9 @@ __i915_request_await_execution(struct i915_request *to,
/* Couple the dependency tree for PI on this exposed to->fence */
if (to->engine->schedule) {
- err = i915_sched_node_add_dependency(&to->sched, &from->sched);
+ err = i915_sched_node_add_dependency(&to->sched,
+ &from->sched,
+ I915_DEPENDENCY_WEAK);
if (err < 0)
return err;
}
diff --git a/drivers/gpu/drm/i915/i915_scheduler.c b/drivers/gpu/drm/i915/i915_scheduler.c
index 37cfcf5b321b..6e2d4190099f 100644
--- a/drivers/gpu/drm/i915/i915_scheduler.c
+++ b/drivers/gpu/drm/i915/i915_scheduler.c
@@ -462,7 +462,8 @@ bool __i915_sched_node_add_dependency(struct i915_sched_node *node,
}
int i915_sched_node_add_dependency(struct i915_sched_node *node,
- struct i915_sched_node *signal)
+ struct i915_sched_node *signal,
+ unsigned long flags)
{
struct i915_dependency *dep;
@@ -473,8 +474,7 @@ int i915_sched_node_add_dependency(struct i915_sched_node *node,
local_bh_disable();
if (!__i915_sched_node_add_dependency(node, signal, dep,
- I915_DEPENDENCY_EXTERNAL |
- I915_DEPENDENCY_ALLOC))
+ flags | I915_DEPENDENCY_ALLOC))
i915_dependency_free(dep);
local_bh_enable(); /* kick submission tasklet */
diff --git a/drivers/gpu/drm/i915/i915_scheduler.h b/drivers/gpu/drm/i915/i915_scheduler.h
index d1dc4efef77b..6f0bf00fc569 100644
--- a/drivers/gpu/drm/i915/i915_scheduler.h
+++ b/drivers/gpu/drm/i915/i915_scheduler.h
@@ -34,7 +34,8 @@ bool __i915_sched_node_add_dependency(struct i915_sched_node *node,
unsigned long flags);
int i915_sched_node_add_dependency(struct i915_sched_node *node,
- struct i915_sched_node *signal);
+ struct i915_sched_node *signal,
+ unsigned long flags);
void i915_sched_node_fini(struct i915_sched_node *node);
diff --git a/drivers/gpu/drm/i915/i915_scheduler_types.h b/drivers/gpu/drm/i915/i915_scheduler_types.h
index d18e70550054..7186875088a0 100644
--- a/drivers/gpu/drm/i915/i915_scheduler_types.h
+++ b/drivers/gpu/drm/i915/i915_scheduler_types.h
@@ -78,6 +78,7 @@ struct i915_dependency {
unsigned long flags;
#define I915_DEPENDENCY_ALLOC BIT(0)
#define I915_DEPENDENCY_EXTERNAL BIT(1)
+#define I915_DEPENDENCY_WEAK BIT(2)
};
#endif /* _I915_SCHEDULER_TYPES_H_ */
--
2.20.1
From: "Steven Rostedt (VMware)" <rostedt(a)goodmis.org>
x86_64 lazily maps in the vmalloc pages, and the way this works with per_cpu
areas can be complex, to say the least. Mappings may happen at boot up, and
if nothing synchronizes the page tables, those page mappings may not be
synced till they are used. This causes issues for anything that might touch
one of those mappings in the path of the page fault handler. When one of
those unmapped mappings is touched in the page fault handler, it will cause
another page fault, which in turn will cause a page fault, and leave us in
a loop of page faults.
Commit 763802b53a42 ("x86/mm: split vmalloc_sync_all()") split
vmalloc_sync_all() into vmalloc_sync_unmappings() and
vmalloc_sync_mappings(), as on system exit, it did not need to do a full
sync on x86_64 (although it still needed to be done on x86_32). By chance,
the vmalloc_sync_all() would synchronize the page mappings done at boot up
and prevent the per cpu area from being a problem for tracing in the page
fault handler. But when that synchronization in the exit of a task became a
nop, it caused the problem to appear.
Link: https://lore.kernel.org/r/20200429054857.66e8e333@oasis.local.home
Cc: stable(a)vger.kernel.org
Fixes: 737223fbca3b1 ("tracing: Consolidate buffer allocation code")
Reported-by: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov(a)gmail.com>
Suggested-by: Joerg Roedel <jroedel(a)suse.de>
Signed-off-by: Steven Rostedt (VMware) <rostedt(a)goodmis.org>
---
kernel/trace/trace.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 8d2b98812625..9ed6d92768af 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -8525,6 +8525,19 @@ static int allocate_trace_buffers(struct trace_array *tr, int size)
*/
allocate_snapshot = false;
#endif
+
+ /*
+ * Because of some magic with the way alloc_percpu() works on
+ * x86_64, we need to synchronize the pgd of all the tables,
+ * otherwise the trace events that happen in x86_64 page fault
+ * handlers can't cope with accessing the chance that a
+ * alloc_percpu()'d memory might be touched in the page fault trace
+ * event. Oh, and we need to audit all other alloc_percpu() and vmalloc()
+ * calls in tracing, because something might get triggered within a
+ * page fault trace event!
+ */
+ vmalloc_sync_mappings();
+
return 0;
}
--
2.26.2